<style>
    :root {
      --gold-primary: #D4AF37;
      --gold-secondary: #B8860B;
      --silver-primary: #C0C0C0;
      --silver-secondary: #A8A8A8;
      --bg-dark: #0a0a0a;
      --panel-dark: #151515;
      --panel-light: #1e1e1e;
      --text-light: #f8f8f8;
      --text-muted: #b0b0b0;
      --border-radius: 16px;
      --box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--bg-dark);
      color: var(--text-light);
      min-height: 100vh;
      padding: 20px;
      line-height: 1.6;
      overflow-x: hidden;
      transition: var(--transition);
    }

    /* Header Styles */
    header {
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    header::after {
      content: '';
      display: block;
      width: 150px;
      height: 4px;
      background: linear-gradient(90deg, var(--gold-primary), var(--silver-primary));
      margin: 20px auto;
      border-radius: 4px;
      opacity: 0.8;
    }

    h1 {
      font-family: 'Cinzel', serif;
      font-size: 2.8rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 15px;
      letter-spacing: 1.5px;
      text-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    }

    .subheading {
      color: var(--text-muted);
      font-size: 1.1rem;
      margin-bottom: 15px;
      font-weight: 300;
      letter-spacing: 1px;
    }

    /* Breadcrumb Navigation */
    .breadcrumb {
      padding: 15px 0;
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 1200px;
      margin: 0 auto 20px;
      border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .breadcrumb a {
      color: var(--gold-primary);
      text-decoration: none;
      transition: var(--transition);
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    .breadcrumb span {
      margin: 0 8px;
      color: var(--text-muted);
    }

    /* Blog Container */
    .blog-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
      padding: 20px;
    }

    /* Blog Card */
    .blog-card {
      background: rgba(21, 21, 21, 0.7);
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      overflow: hidden;
      transition: var(--transition);
      border: 1px solid rgba(212, 175, 55, 0.25);
      position: relative;
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

    .blog-card-header {
      padding: 20px;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(192, 192, 192, 0.1));
      border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }

    .blog-card-title {
      font-family: 'Cinzel', serif;
      font-size: 1.4rem;
      color: var(--gold-primary);
      margin-bottom: 10px;
      position: relative;
    }

    .blog-card-meta {
      color: var(--text-muted);
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .blog-card-meta i {
      color: var(--gold-primary);
      font-size: 0.9rem;
    }

    .blog-card-content {
      padding: 20px;
    }

    .blog-card-excerpt {
      color: var(--text-muted);
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .blog-card-full {
      display: none;
      color: var(--text-light);
      margin-bottom: 20px;
    }

    .blog-card-full.show {
      display: block;
    }

    .read-more-btn {
      background: rgba(212, 175, 55, 0.2);
      color: var(--gold-primary);
      border: none;
      padding: 8px 16px;
      border-radius: 50px;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .read-more-btn:hover {
      background: rgba(212, 175, 55, 0.3);
    }

    .read-more-btn i {
      transition: transform 0.3s ease;
    }

    .read-more-btn.expanded i {
      transform: rotate(180deg);
    }

    /* Language Switcher */
    .lang-switcher {
      position: fixed;
      top: 15px;
      right: 15px;
      z-index: 1100;
      display: flex;
      background: rgba(21, 21, 21, 0.85);
      border-radius: 50px;
      padding: 4px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(8px);
    }

    .lang-btn {
      border: none;
      background: transparent;
      color: var(--text-muted);
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.8rem;
    }

    .lang-btn.active {
      background: rgba(212, 175, 55, 0.2);
      color: var(--gold-primary);
    }

    /* Menu Wrapper */
    .menu-wrapper {
      position: fixed;
      top: 15px;
      left: 15px;
      z-index: 1100;
      background: rgba(21, 21, 21, 0.85);
      padding: 5px 8px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(8px);
    }

    .hamburger {
      font-size: 22px;
      color: var(--text-light);
      cursor: pointer;
      padding: 5px 8px;
      border-radius: 6px;
      transition: background 0.3s ease;
    }

    .hamburger:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu {
      list-style: none;
      margin-top: 8px;
      padding: 0;
      background: rgba(20, 20, 20, 0.95);
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: none;
      animation: fadeIn 0.3s ease;
      min-width: 140px;
      backdrop-filter: blur(8px);
    }

    .dropdown-menu li a {
      display: block;
      padding: 10px 16px;
      text-decoration: none;
      color: var(--text-light);
      font-size: 0.9rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: background 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .dropdown-menu li a:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Footer */
    .footer {
      text-align: center;
      margin-top: 60px;
      color: var(--text-muted);
      font-size: 0.9rem;
      padding-bottom: 40px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .footer-links {
      margin-top: 15px;
    }

    .privacy-link {
      color: var(--text-muted);
      text-decoration: none;
      transition: var(--transition);
      margin: 0 10px;
    }

    .privacy-link:hover {
      color: var(--gold-primary);
      text-decoration: underline;
    }

    .social-links {
      margin-top: 20px;
    }

    .social-links a {
      color: var(--text-muted);
      font-size: 1.2rem;
      margin: 0 10px;
      transition: var(--transition);
    }

    .social-links a:hover {
      color: var(--gold-primary);
    }

    /* RTL styles */
    body[dir="rtl"] {
      font-family: 'Segoe UI', Tahoma, sans-serif;
    }

    body[dir="rtl"] .blog-card-title,
    body[dir="rtl"] .blog-card-content {
      text-align: right;
    }

    body[dir="rtl"] .breadcrumb {
      direction: ltr;
      text-align: right;
    }

    body[dir="rtl"] .dropdown-menu {
      text-align: right;
    }

    /* Light Mode */
    .light-mode {
      --bg-dark: #f8f5ed;
      --panel-dark: #f0ede5;
      --panel-light: #ffffff;
      --text-light: #222;
      --text-muted: #555;
      --box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .light-mode .blog-card {
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .light-mode .blog-card-header {
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(192, 192, 192, 0.05));
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .light-mode .blog-card-title {
      color: var(--gold-primary);
    }

    .light-mode .blog-card-excerpt,
    .light-mode .blog-card-full {
      color: var(--text-light);
    }

    .light-mode .read-more-btn {
      background: rgba(212, 175, 55, 0.15);
    }

    .light-mode .lang-switcher,
    .light-mode .menu-wrapper {
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(0, 0, 0, 0.12);
    }

    .light-mode .hamburger {
      color: var(--text-light);
    }

    .light-mode .dropdown-menu {
      background: rgba(255, 255, 255, 0.98);
      border: 1px solid rgba(0, 0, 0, 0.12);
    }

    .light-mode .dropdown-menu li a {
      color: var(--text-light);
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .blog-container {
        grid-template-columns: 1fr;
        padding: 10px;
      }

      h1 {
        font-size: 2.2rem;
      }
      
      .breadcrumb {
        font-size: 0.8rem;
      }
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 1.8rem;
      }
      
      .subheading {
        font-size: 1rem;
      }
      
      .blog-card-header {
        padding: 15px;
      }
      
      .blog-card-content {
        padding: 15px;
      }
    }
    
    .lang-switcher {
      display: none !important;
    }
    
    /* Structured Data Visibility */
    .structured-data {
      display: none;
    }
  </style>