﻿:root {
      --primary: #D9A441;
      --primary-hover: #F2C15D;
      --bg-dark: #121212;
      --text-light: #F5F5F7;
      --text-muted: #A0A0A5;
      --text-dark: rgb(47,54,64);
      --bg-light: #FAFAFA;
      --border-color: rgba(217, 164, 65, 0.15);
      --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      --transition: all 0.3s ease;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font-stack); background: var(--bg-light); color: var(--text-dark); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: var(--transition); }

    .site-header { background: var(--bg-dark); color: var(--text-light); border-bottom: 1px solid var(--border-color); }
    .header-inner { max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
    .logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 700; color: var(--primary); }
    .logo img { height: 40px; }
    .desktop-nav { display: flex; gap: 2rem; }
    .desktop-nav a { color: var(--text-muted); font-weight: 500; }
    .desktop-nav a:hover { color: var(--primary); }

    .mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
    .mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--text-light); }
    .mobile-nav-mask { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 998; }
    .mobile-drawer { position: fixed; top: 0; right: -300px; width: 300px; height: 100%; background: var(--bg-dark); z-index: 999; transition: var(--transition); padding: 1.5rem; display: flex; flex-direction: column; color: var(--text-light); }
    .drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
    .drawer-close { background: none; border: none; color: var(--text-light); font-size: 2rem; cursor: pointer; }
    .drawer-body .drawer-nav { display: flex; flex-direction: column; gap: 1.5rem; }
    .drawer-body .drawer-nav a { color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 0.5rem; }

    
    .page-hero { background: linear-gradient(135deg, #121212 0%, #201b10 100%); color: var(--text-light); padding: 5rem 1.5rem; text-align: center; border-bottom: 3px solid var(--primary); }
    .page-hero h1 { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 1rem; }
    .page-hero p { max-width: 600px; margin: 0 auto; color: var(--text-muted); }

    
    .download-container { max-width: 1200px; margin: 4rem auto; padding: 0 1.5rem; }
    .download-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-bottom: 5rem; }
    .download-card { background: white; border: 1px solid rgba(0,0,0,0.05); padding: 2rem; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); display: flex; flex-direction: column; justify-content: space-between; transition: var(--transition); }
    .download-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(217,164,65,0.1); border-color: rgba(217,164,65,0.25); }
    
    .dl-badge { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
    .dl-title { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; }
    .dl-desc { font-size: 0.9rem; color: #666; margin-bottom: 1.5rem; }
    .dl-btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; background: var(--bg-dark); color: var(--text-light); font-weight: 600; border-radius: 4px; text-align: center; }
    .dl-btn:hover { background: var(--primary); color: var(--bg-dark); }

    
    .faq-section { background: #F1EFF2; padding: 4rem 1.5rem; border-radius: 8px; }
    .faq-title { text-align: center; margin-bottom: 3rem; font-size: 1.8rem; font-weight: 800; color: var(--text-dark); }
    .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
    .faq-item { background: white; padding: 1.5rem; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.01); }
    .faq-q { font-weight: 700; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.5rem; }
    .faq-a { font-size: 0.95rem; color: #555; line-height: 1.6; }

    
    .site-footer { background-color: var(--bg-dark); color: var(--text-light); border-top: 3px solid var(--primary); padding: 4rem 1.5rem 2rem 1.5rem; }
    .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand p { margin-top: 1rem; color: var(--text-muted); font-size: 0.95rem; }
    .footer-column h3 { font-size: 1.1rem; font-weight: 600; color: var(--primary); margin-bottom: 1.5rem; text-transform: uppercase; }
    .footer-column ul { list-style: none; }
    .footer-column ul li { margin-bottom: 0.75rem; }
    .footer-column ul li a { color: var(--text-muted); font-size: 0.95rem; }
    .footer-column ul li a:hover { color: var(--primary); padding-left: 5px; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.9rem; color: var(--text-muted); }

    @media (max-width: 768px) {
      .desktop-nav { display: none; }
      .mobile-menu-btn { display: flex; }
      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    }