﻿:root {
      --primary-color: rgb(251,188,5);
      --primary-dark: rgb(220,160,4);
      --bg-dark: #0b0f19;
      --bg-card: #151d30;
      --text-main: #f3f4f6;
      --text-muted: #9ca3af;
      --border-color: rgba(251,188,5, 0.15);
      --white: #ffffff;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    
    
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: rgba(11, 15, 25, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-color);
    }
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .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-color);
      white-space: nowrap;
      letter-spacing: 0.5px;
    }
    .nav-desktop {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .nav-desktop a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-main);
      padding: 6px 12px;
      border-radius: 4px;
    }
    .nav-desktop a:hover {
      color: var(--primary-color);
      background-color: rgba(251,188,5, 0.08);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn-cta-nav {
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      color: #111;
      font-weight: bold;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      box-shadow: 0 4px 15px rgba(251,188,5, 0.3);
    }
    .btn-cta-nav:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(251,188,5, 0.4);
    }
    .drawer-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 6px;
      width: 24px;
    }
    .drawer-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: var(--primary-color);
      transition: 0.3s;
    }

    
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.75);
      z-index: 1999;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s ease;
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-menu {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background-color: var(--bg-dark);
      border-right: 1px solid var(--border-color);
      z-index: 2000;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .drawer-menu.active {
      left: 0;
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .drawer-close {
      background: none;
      border: none;
      font-size: 28px;
      color: var(--primary-color);
      cursor: pointer;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .drawer-nav a {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-main);
      padding: 8px 12px;
      border-radius: 6px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .drawer-nav a:hover {
      color: var(--primary-color);
      background-color: rgba(251,188,5, 0.08);
    }
    .btn-cta-drawer {
      margin-top: 20px;
      text-align: center;
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      color: #111;
      font-weight: bold;
      padding: 12px;
      border-radius: 8px;
    }

    
    .hero {
      position: relative;
      padding: 100px 20px 80px;
      background: radial-gradient(circle at 80% 20%, rgba(251,188,5, 0.15) 0%, transparent 60%);
      border-bottom: 1px solid var(--border-color);
    }
    .hero-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
    }
    .hero-content h1 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      color: var(--white);
      margin-bottom: 20px;
    }
    .hero-content h1 span {
      color: var(--primary-color);
    }
    .hero-content p {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 35px;
    }
    .hero-btns {
      display: flex;
      gap: 16px;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      color: #111;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: 30px;
      font-size: 16px;
      box-shadow: 0 4px 20px rgba(251,188,5, 0.4);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(251,188,5, 0.5);
    }
    .btn-secondary {
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
      font-weight: 700;
      padding: 12px 30px;
      border-radius: 30px;
      font-size: 16px;
    }
    .btn-secondary:hover {
      background-color: rgba(251,188,5, 0.1);
    }
    .hero-visual {
      display: flex;
      justify-content: center;
      position: relative;
    }
    .hero-visual img {
      max-width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.5);
      border: 1px solid rgba(251,188,5, 0.2);
    }

    
    .ticker-bar {
      background-color: var(--bg-card);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
      padding: 15px 20px;
    }
    .ticker-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 20px;
      overflow: hidden;
      white-space: nowrap;
    }
    .ticker-title {
      color: var(--primary-color);
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      padding-right: 15px;
      border-right: 2px solid var(--border-color);
    }
    .ticker-content {
      display: inline-flex;
      gap: 40px;
      animation: ticker-slide 30s linear infinite;
    }
    .ticker-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--text-main);
    }
    .ticker-item span {
      color: var(--primary-color);
      font-weight: 700;
    }
    @keyframes ticker-slide {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    
    .trust-badges {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .badge-card {
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px;
      text-align: center;
    }
    .badge-icon {
      font-size: 32px;
      color: var(--primary-color);
      margin-bottom: 12px;
    }
    .badge-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
      color: var(--white);
    }
    .badge-card p {
      font-size: 13px;
      color: var(--text-muted);
    }

    
    .products-section {
      padding: 80px 20px;
      background-color: rgba(21, 29, 48, 0.3);
    }
    .section-title {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px;
    }
    .section-title h2 {
      font-size: 36px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 15px;
    }
    .section-title h2 span {
      color: var(--primary-color);
    }
    .section-title p {
      color: var(--text-muted);
      font-size: 16px;
    }
    .products-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .product-card {
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.3s;
    }
    .product-card:hover {
      transform: translateY(-8px);
    }
    .product-img {
      height: 200px;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .product-overlay {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(11, 15, 25, 0.85);
      padding: 4px 12px;
      border-radius: 12px;
      font-size: 12px;
      color: var(--primary-color);
      border: 1px solid var(--border-color);
    }
    .product-info {
      padding: 24px;
    }
    .product-info h3 {
      font-size: 20px;
      color: var(--white);
      margin-bottom: 10px;
    }
    .product-info p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 20px;
    }
    .product-btn {
      display: inline-block;
      width: 100%;
      text-align: center;
      background: rgba(251,188,5, 0.1);
      border: 1px solid var(--primary-color);
      color: var(--primary-color);
      padding: 10px;
      border-radius: 8px;
      font-weight: bold;
    }
    .product-btn:hover {
      background: var(--primary-color);
      color: #111;
    }

    
    .content-section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .article-layers {
      display: grid;
      grid-template-columns: 1.6fr 0.9fr;
      gap: 40px;
    }
    .articles-group h3 {
      font-size: 22px;
      color: var(--white);
      margin-bottom: 24px;
      border-left: 4px solid var(--primary-color);
      padding-left: 12px;
    }
    .latest-list, .hot-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .rich-article-card {
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      gap: 20px;
    }
    .rich-article-img {
      width: 160px;
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
    }
    .rich-article-details {
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .rich-article-details h4 {
      font-size: 16px;
      color: var(--white);
      margin-bottom: 8px;
    }
    .rich-article-details p {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .rich-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 11px;
      color: var(--text-muted);
    }
    .rich-meta span { display: inline-flex; align-items: center; gap: 4px; }
    .meta-tag {
      background-color: rgba(251,188,5, 0.15);
      color: var(--primary-color);
      padding: 2px 8px;
      border-radius: 4px;
    }
    
    
    .cta-conversion {
      background: linear-gradient(135deg, var(--bg-card), #0b0f19);
      padding: 60px 20px;
      text-align: center;
      border-top: 1px solid var(--border-color);
    }
    .cta-box {
      max-width: 800px;
      margin: 0 auto;
    }
    .cta-box h2 {
      font-size: 32px;
      color: var(--white);
      margin-bottom: 15px;
    }
    .cta-box p {
      color: var(--text-muted);
      margin-bottom: 30px;
    }

    
    .site-footer {
      background-color: #060911;
      border-top: 1px solid var(--border-color);
      padding: 60px 20px 20px;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand .logo { margin-bottom: 20px; }
    .footer-desc {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.6;
    }
    .site-footer h4 {
      color: var(--white);
      font-size: 16px;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(251,188,5, 0.2);
      padding-bottom: 8px;
    }
    .site-footer ul { list-style: none; }
    .site-footer ul li { margin-bottom: 12px; }
    .site-footer ul li a { color: var(--text-muted); font-size: 14px; }
    .site-footer ul li a:hover { color: var(--primary-color); }
    .footer-contact p { color: var(--text-muted); font-size: 14px; margin-bottom: 10px; }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.05);
      text-align: center;
      color: var(--text-muted);
      font-size: 12px;
    }

    
    @media (max-width: 1024px) {
      .footer-container { grid-template-columns: 1.5fr 1fr 1fr; }
      .footer-container > :last-child { grid-column: span 3; }
    }
    @media (max-width: 768px) {
      .nav-desktop { display: none; }
      .drawer-toggle { display: flex; }
      .hero-container { grid-template-columns: 1fr; text-align: center; }
      .hero-btns { justify-content: center; }
      .hero-visual { margin-top: 20px; }
      .trust-badges { grid-template-columns: repeat(2, 1fr); }
      .products-grid { grid-template-columns: 1fr; }
      .article-layers { grid-template-columns: 1fr; }
      .rich-article-card { flex-direction: column; }
      .rich-article-img { width: 100%; height: 180px; }
      .footer-container { grid-template-columns: 1fr; }
      .footer-container > * { grid-column: span 1 !important; }
    }