﻿:root {
      --primary: #D4AF37;
      --primary-hover: #FFF4C2;
      --dark-bg: #050505;
      --card-bg: #161616;
      --text-main: #FFF4C2;
      --text-muted: #A1A1AA;
      --bronze: #B45309;
      --border-color: rgba(212, 175, 55, 0.2);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background-color: var(--dark-bg);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    img { max-width: 100%; height: auto; }
    ul { list-style: none; }
    
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .btn-gold {
      background: linear-gradient(135deg, var(--bronze) 0%, var(--primary) 100%);
      color: #050505;
      border: none;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    .btn-gold:hover {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
      box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
      transform: translateY(-2px);
    }
    .btn-outline-gold {
      background: transparent;
      color: var(--primary);
      border: 1px solid var(--primary);
    }
    .btn-outline-gold:hover {
      background: rgba(212, 175, 55, 0.1);
      color: var(--primary-hover);
      border-color: var(--primary-hover);
      transform: translateY(-2px);
    }
    .btn-sm { padding: 8px 16px; font-size: 14px; }
    .btn-block { display: flex; width: 100%; }

    
    .site-header {
      background-color: rgba(5, 5, 5, 0.95);
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
    }
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .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;
    }
    .desktop-nav {
      display: flex;
      gap: 30px;
    }
    .desktop-nav a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-muted);
    }
    .desktop-nav a:hover {
      color: var(--primary);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 6px;
      padding: 5px;
    }
    .mobile-menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: var(--primary);
      transition: all 0.3s ease;
    }

    
    .mobile-drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    .mobile-drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: -300px;
      width: 300px;
      height: 100%;
      background-color: var(--dark-bg);
      border-right: 1px solid var(--border-color);
      z-index: 2000;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
    }
    .mobile-drawer.active {
      left: 0;
    }
    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }
    .drawer-close {
      background: none;
      border: none;
      color: var(--primary);
      font-size: 28px;
      cursor: pointer;
    }
    .drawer-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .mobile-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .mobile-nav a {
      font-size: 18px;
      font-weight: 500;
      color: var(--text-muted);
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(212, 175, 55, 0.05);
    }
    .mobile-nav a:hover {
      color: var(--primary);
    }
    .drawer-actions {
      margin-top: auto;
    }

    
    .hero-layout-05 {
      position: relative;
      min-height: calc(100vh - 80px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      overflow: hidden;
      background-color: var(--dark-bg);
    }
    
    .hero-layout-05 .bg-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 1px 1px, rgba(214, 175, 55, 0.05) 1px, transparent 0);
      background-size: 40px 40px;
      z-index: 1;
    }
    .hero-layout-05 .gold-line {
      position: absolute;
      background: linear-gradient(90deg, transparent, var(--primary), transparent);
      height: 1px;
      width: 100%;
      opacity: 0.3;
      z-index: 1;
    }
    .hero-layout-05 .gold-line-v {
      position: absolute;
      background: linear-gradient(180deg, transparent, var(--primary), transparent);
      width: 1px;
      height: 100%;
      opacity: 0.15;
      z-index: 1;
    }
    .hero-layout-05 .line-top { top: 15%; left: 0; }
    .hero-layout-05 .line-bottom { bottom: 15%; left: 0; }
    .hero-layout-05 .line-left { left: 10%; top: 0; }
    .hero-layout-05 .line-right { right: 10%; top: 0; }
    
    .hero-layout-05 .huge-number {
      position: absolute;
      font-size: 28vw;
      font-weight: 900;
      color: rgba(212, 175, 55, 0.015);
      line-height: 1;
      user-select: none;
      z-index: 1;
      font-family: 'Georgia', serif;
    }
    .hero-layout-05 .num-left { left: -5%; bottom: -5%; }
    .hero-layout-05 .num-right { right: -5%; top: -5%; }

    .hero-layout-05 .hero-cover-content {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 1100px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero-layout-05 .brand-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background-color: rgba(180, 83, 9, 0.2);
      border: 1px solid var(--primary);
      color: var(--primary);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 30px;
      border-radius: 20px;
    }
    .hero-layout-05 .main-title {
      font-size: clamp(40px, 6vw, 84px);
      font-weight: 900;
      color: #FFFFFF;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: -1px;
      margin-bottom: 25px;
      font-family: 'Times New Roman', Times, serif;
    }
    .hero-layout-05 .main-title span {
      color: var(--primary);
      background: linear-gradient(135deg, var(--primary) 30%, var(--primary-hover) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-layout-05 .sub-title {
      font-size: clamp(16px, 2vw, 22px);
      color: var(--text-muted);
      max-width: 800px;
      margin-bottom: 40px;
      line-height: 1.8;
      font-weight: 300;
    }
    .hero-layout-05 .action-group {
      display: flex;
      gap: 20px;
      margin-bottom: 40px;
    }
    .hero-layout-05 .keyword-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      max-width: 900px;
    }
    .hero-layout-05 .keyword-tag {
      font-size: 13px;
      color: rgba(255, 244, 194, 0.7);
      background: rgba(22, 22, 22, 0.8);
      padding: 6px 15px;
      border: 1px solid rgba(212, 175, 55, 0.15);
      border-radius: 4px;
      letter-spacing: 1px;
    }

    
    .metrics-bar {
      background-color: var(--card-bg);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
      padding: 30px 0;
      position: relative;
      z-index: 20;
    }
    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }
    .metric-item {
      text-align: center;
    }
    .metric-val {
      font-size: 32px;
      font-weight: 800;
      color: var(--primary);
      font-family: 'Georgia', serif;
    }
    .metric-label {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 5px;
    }

    
    .section-padding {
      padding: 100px 0;
    }
    .sec-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }
    .sec-badge {
      font-size: 13px;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 3px;
      font-weight: 700;
      display: block;
      margin-bottom: 15px;
    }
    .sec-title {
      font-size: 36px;
      color: #FFF;
      font-weight: 800;
      margin-bottom: 20px;
    }
    .sec-desc {
      color: var(--text-muted);
      font-size: 16px;
    }
    
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .feature-card {
      background-color: var(--card-bg);
      border: 1px solid rgba(212, 175, 55, 0.1);
      padding: 40px;
      border-radius: 4px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--bronze), var(--primary));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      border-color: rgba(212, 175, 55, 0.3);
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .feature-card:hover::before {
      transform: scaleX(1);
    }
    .feature-icon {
      font-size: 40px;
      color: var(--primary);
      margin-bottom: 25px;
      display: block;
    }
    .feature-name {
      font-size: 20px;
      color: #FFF;
      margin-bottom: 15px;
      font-weight: 700;
    }
    .feature-desc {
      color: var(--text-muted);
      font-size: 15px;
    }

    
    .steps-section {
      background-color: rgba(22, 22, 22, 0.5);
    }
    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }
    .step-card {
      position: relative;
      padding: 30px;
      background: var(--card-bg);
      border-radius: 4px;
      border: 1px solid rgba(212, 175, 55, 0.05);
    }
    .step-num {
      font-size: 50px;
      font-weight: 900;
      color: rgba(212, 175, 55, 0.15);
      position: absolute;
      top: 15px;
      right: 25px;
      font-family: 'Georgia', serif;
    }
    .step-title {
      font-size: 18px;
      color: #FFF;
      margin-top: 20px;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .step-desc {
      color: var(--text-muted);
      font-size: 14px;
    }

    
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .article-card {
      background: var(--card-bg);
      border: 1px solid rgba(212, 175, 55, 0.05);
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }
    .article-card:hover {
      transform: translateY(-5px);
      border-color: rgba(212, 175, 55, 0.2);
    }
    .article-img-wrapper {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
    }
    .article-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .article-card:hover .article-img {
      transform: scale(1.05);
    }
    .article-category {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--primary);
      color: #050505;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 2px;
    }
    .article-content {
      padding: 25px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .article-meta {
      display: flex;
      justify-content: space-between;
      color: var(--text-muted);
      font-size: 12px;
      margin-bottom: 15px;
    }
    .article-title {
      font-size: 18px;
      color: #FFF;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .article-summary {
      color: var(--text-muted);
      font-size: 14px;
      margin-bottom: 20px;
      flex: 1;
    }
    .article-bottom {
      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-weight: 600;
      font-size: 14px;
    }
    .article-tags-span {
      font-size: 12px;
      color: var(--text-muted);
    }

    
    .cta-section {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #161616 0%, #050505 100%);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }
    .cta-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 80px 20px;
      position: relative;
      z-index: 10;
    }
    .cta-title {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800;
      color: #FFF;
      margin-bottom: 20px;
      font-family: 'Times New Roman', Times, serif;
    }
    .cta-title span { color: var(--primary); }
    .cta-desc {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 700px;
      margin-bottom: 35px;
    }
    .cta-buttons {
      display: flex;
      gap: 20px;
    }

    
    .site-footer {
      background-color: #050505;
      border-top: 1px solid var(--border-color);
      padding: 80px 0 30px;
    }
    .footer-container {
      display: grid;
      grid-template-columns: 2fr 1fr 1.5fr;
      gap: 60px;
      margin-bottom: 50px;
    }
    .footer-brand .brand-desc {
      color: var(--text-muted);
      font-size: 14px;
      margin-top: 20px;
      line-height: 1.8;
    }
    .footer-links h4, .footer-info h4 {
      color: var(--primary);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-links ul {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-links a {
      color: var(--text-muted);
      font-size: 14px;
    }
    .footer-links a:hover {
      color: var(--primary);
      padding-left: 5px;
    }
    .footer-info p {
      color: var(--text-muted);
      font-size: 14px;
      margin-bottom: 12px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(212, 175, 55, 0.1);
      padding-top: 30px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-warning {
      background-color: rgba(180, 83, 9, 0.05);
      border-left: 3px solid var(--bronze);
      padding: 15px;
      margin-bottom: 25px;
      line-height: 1.6;
    }

    
    @media (max-width: 1024px) {
      .grid-3 { grid-template-columns: repeat(2, 1fr); }
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
      .articles-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-brand { grid-column: span 2; }
    }
    @media (max-width: 768px) {
      .desktop-nav { display: none; }
      .mobile-menu-toggle { display: flex; }
      .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
      .grid-3 { grid-template-columns: 1fr; }
      .grid-4 { grid-template-columns: 1fr; }
      .articles-grid { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; }
      .footer-brand { grid-column: span 1; }
      .hero-layout-05 .action-group { flex-direction: column; width: 100%; max-width: 320px; }
      .hero-layout-05 .main-title { font-size: 36px; }
    }