﻿:root {
      --primary: #D4AF37;
      --accent: #FACC15;
      --bg-dark: #080807;
      --bg-card: #14100A;
      --text-light: #FFF7ED;
      --text-muted: #A3A3A3;
      --highlight: #FDE68A;
      --theme-teal: rgb(15,118,110);
      --font-family: 'Playfair Display', 'Noto Serif SC', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-dark);
      color: var(--text-light);
      font-family: var(--font-family);
      line-height: 1.6;
      overflow-x: hidden;
    }

    
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .logo img {
      display: block;
      height: 40px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .logo span {
      display: inline-block;
      font-size: 20px;
      font-weight: 800;
      line-height: 1;
      color: var(--primary);
      white-space: nowrap;
      letter-spacing: 1px;
    }

    
    .site-header {
      border-bottom: 1px solid rgba(212, 175, 55, 0.15);
      background: rgba(8, 8, 7, 0.95);
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
    }
    .header-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 15px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .desktop-nav {
      display: flex;
      gap: 32px;
    }
    .desktop-nav a {
      color: var(--text-light);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: color 0.3s ease;
      position: relative;
    }
    .desktop-nav a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 1px;
      bottom: -4px;
      left: 0;
      background-color: var(--primary);
      transition: width 0.3s ease;
    }
    .desktop-nav a:hover {
      color: var(--primary);
    }
    .desktop-nav a:hover::after {
      width: 100%;
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .btn-primary {
      background-color: var(--primary);
      color: var(--bg-dark);
    }
    .btn-primary:hover {
      background-color: var(--accent);
      box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
    }
    .btn-primary-outline {
      border: 1px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }
    .btn-primary-outline:hover {
      background: var(--primary);
      color: var(--bg-dark);
    }

    .drawer-trigger {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .drawer-trigger span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: var(--primary);
      transition: all 0.3s;
    }

    
    .mobile-drawer-mask {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      backdrop-filter: blur(5px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    .mobile-drawer-mask.active {
      opacity: 1;
      visibility: visible;
    }
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: -320px;
      width: 320px;
      height: 100%;
      background: var(--bg-card);
      border-right: 1px solid rgba(212, 175, 55, 0.2);
      z-index: 2001;
      display: flex;
      flex-direction: column;
      padding: 24px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-drawer.active {
      left: 0;
    }
    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    .drawer-close {
      background: none;
      border: none;
      color: var(--primary);
      font-size: 32px;
      cursor: pointer;
      line-height: 1;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .drawer-nav a {
      color: var(--text-light);
      text-decoration: none;
      font-size: 18px;
      font-weight: 500;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .drawer-nav a:hover {
      color: var(--primary);
    }
    .drawer-footer {
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid rgba(212, 175, 55, 0.1);
      font-size: 12px;
      color: var(--text-muted);
    }

    
    .hero-layout-05 {
      position: relative;
      min-height: 90vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 80px 24px;
      background: radial-gradient(circle at center, rgba(20, 16, 10, 0.8) 0%, rgba(8, 8, 7, 1) 100%);
      overflow: hidden;
      border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    }

    
    .hero-layout-05 .bg-grid {
      position: absolute;
      top: 5%;
      left: 5%;
      right: 5%;
      bottom: 5%;
      border: 1px solid rgba(212, 175, 55, 0.08);
      pointer-events: none;
    }
    .hero-layout-05 .bg-line-v {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 33.333%;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(212,175,55,0.05) 50%, transparent);
      pointer-events: none;
    }
    .hero-layout-05 .bg-line-v-2 {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 66.666%;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(212,175,55,0.05) 50%, transparent);
      pointer-events: none;
    }

    
    .floating-sticker {
      position: absolute;
      background: rgba(20, 16, 10, 0.8);
      border: 1px solid var(--primary);
      padding: 6px 12px;
      border-radius: 2px;
      font-size: 11px;
      color: var(--highlight);
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      opacity: 0.6;
      pointer-events: none;
    }
    .sticker-1 { top: 15%; left: 10%; transform: rotate(-5deg); }
    .sticker-2 { top: 25%; right: 12%; transform: rotate(8deg); }
    .sticker-3 { bottom: 20%; left: 15%; transform: rotate(3deg); }
    .sticker-4 { bottom: 28%; right: 8%; transform: rotate(-6deg); }

    
    .magazine-masthead {
      margin-bottom: 30px;
      text-align: center;
      z-index: 10;
    }
    .magazine-edition {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 6px;
      color: var(--primary);
      font-weight: 700;
      display: inline-block;
      border-bottom: 2px solid var(--primary);
      padding-bottom: 8px;
      margin-bottom: 12px;
    }
    .magazine-volume {
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 2px;
    }

    
    .magazine-title-wrap {
      max-width: 1200px;
      text-align: center;
      z-index: 10;
      margin-bottom: 40px;
    }
    .magazine-mega-title {
      font-size: clamp(40px, 6vw, 84px);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -1px;
      text-transform: uppercase;
      color: var(--text-light);
      margin: 0;
    }
    .magazine-mega-title span {
      background: linear-gradient(135deg, #FFF7ED 30%, #D4AF37 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: block;
      font-size: 1.05em;
      margin-top: 10px;
    }

    
    .magazine-meta-container {
      max-width: 800px;
      width: 100%;
      text-align: center;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .magazine-tagline {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 600px;
      line-height: 1.6;
      font-weight: 300;
    }
    .magazine-badge-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 8px;
    }
    .magazine-badge {
      font-size: 13px;
      background: rgba(212, 175, 55, 0.08);
      border: 1px dashed var(--primary);
      padding: 6px 16px;
      border-radius: 20px;
      color: var(--highlight);
    }
    .magazine-actions {
      display: flex;
      gap: 16px;
      margin-top: 12px;
    }

    
    .trust-indicator-strip {
      background: #100D08;
      border-bottom: 1px solid rgba(212, 175, 55, 0.1);
      padding: 30px 24px;
    }
    .trust-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
    }
    .trust-item {
      text-align: center;
    }
    .trust-val {
      font-size: 28px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 4px;
    }
    .trust-lbl {
      font-size: 13px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    
    .section-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 24px;
    }
    .section-title {
      font-size: 32px;
      font-weight: 800;
      text-align: center;
      margin-bottom: 48px;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
    }
    .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--primary);
      margin: 16px auto 0 auto;
    }

    
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }
    .benefit-card {
      background: var(--bg-card);
      border: 1px solid rgba(212, 175, 55, 0.1);
      padding: 40px 30px;
      border-radius: 4px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .benefit-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      opacity: 0;
      transition: opacity 0.3s;
    }
    .benefit-card:hover {
      transform: translateY(-5px);
      border-color: rgba(212, 175, 55, 0.4);
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .benefit-card:hover::before {
      opacity: 1;
    }
    .benefit-icon {
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 24px;
      line-height: 1;
    }
    .benefit-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--highlight);
    }
    .benefit-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    
    .comparison-section {
      background: #0C0A06;
      border-top: 1px solid rgba(212, 175, 55, 0.1);
      border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    .compare-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
    }
    .compare-block {
      background: var(--bg-card);
      border: 1px solid rgba(212,175,55,0.08);
      border-radius: 4px;
      padding: 40px;
    }
    .compare-block.highlighted {
      border: 1px solid var(--primary);
      position: relative;
    }
    .compare-tag {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--primary);
      color: var(--bg-dark);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 2px;
      text-transform: uppercase;
    }
    .compare-head {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 24px;
      color: var(--text-light);
    }
    .compare-block.highlighted .compare-head {
      color: var(--accent);
    }
    .compare-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
    }
    .compare-item-status {
      flex-shrink: 0;
      font-size: 16px;
      margin-top: 2px;
    }
    .compare-item-text h5 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 4px;
      color: var(--highlight);
    }
    .compare-item-text p {
      font-size: 13px;
      color: var(--text-muted);
    }

    
    .articles-section {
      background: var(--bg-dark);
    }
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }
    .article-card {
      background: var(--bg-card);
      border: 1px solid rgba(212, 175, 55, 0.1);
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s;
    }
    .article-card:hover {
      transform: translateY(-5px);
      border-color: rgba(212,175,55,0.3);
    }
    .article-image-wrap {
      position: relative;
      height: 200px;
      background: #1C1811;
      overflow: hidden;
    }
    .article-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .article-card:hover .article-image-wrap img {
      transform: scale(1.05);
    }
    .article-tag-badge {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(8, 8, 7, 0.9);
      border: 1px solid var(--primary);
      padding: 4px 10px;
      font-size: 11px;
      color: var(--primary);
      border-radius: 20px;
    }
    .article-info {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .article-meta {
      display: flex;
      gap: 16px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .article-meta span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .article-title-link {
      color: var(--text-light);
      text-decoration: none;
      transition: color 0.3s;
    }
    .article-title-link:hover {
      color: var(--primary);
    }
    .article-title {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 12px;
    }
    .article-summary {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-footer {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 15px;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .read-more-link {
      color: var(--primary);
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .read-more-link:hover {
      color: var(--accent);
    }

    
    .cta-banner {
      background: radial-gradient(circle at center, rgba(30, 24, 15, 0.9) 0%, rgba(8, 8, 7, 1) 100%);
      border-top: 1px solid rgba(212, 175, 55, 0.2);
      padding: 100px 24px;
      text-align: center;
      position: relative;
    }
    .cta-container {
      max-width: 800px;
      margin: 0 auto;
      z-index: 10;
      position: relative;
    }
    .cta-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      margin-bottom: 20px;
      color: var(--highlight);
    }
    .cta-desc {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 36px;
      line-height: 1.7;
    }

    
    .site-footer {
      background: #050504;
      border-top: 1px solid rgba(212, 175, 55, 0.15);
      color: var(--text-muted);
      font-size: 14px;
    }
    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 80px 24px 40px 24px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
    }
    .footer-brand .brand-desc {
      margin-top: 20px;
      line-height: 1.7;
      color: var(--text-muted);
      max-width: 320px;
    }
    .footer-col h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-col ul {
      list-style: none;
    }
    .footer-col ul li {
      margin-bottom: 12px;
    }
    .footer-col ul li a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-col ul li a:hover {
      color: var(--primary);
    }
    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding: 30px 24px;
      border-top: 1px solid rgba(212, 175, 55, 0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 13px;
    }

    
    @media (max-width: 991px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
      }
      .desktop-nav {
        display: none;
      }
      .drawer-trigger {
        display: flex;
      }
    }
    @media (max-width: 575px) {
      .footer-container {
        grid-template-columns: 1fr;
      }
      .trust-container {
        flex-direction: column;
        gap: 32px;
      }
      .magazine-actions {
        flex-direction: column;
        width: 100%;
      }
      .magazine-actions .btn {
        width: 100%;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }