﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #0056C6;
      --primary-light: #E6F0FA;
      --accent: #00B4D8;
      --dark-bg: #0A1128;
      --dark-card: #001A3D;
      --silver: #F4F7FC;
      --text-dark: #0F172A;
      --text-muted: #475569;
      --text-light: #94A3B8;
      --border-color: #E2E8F0;
      --white: rgb(255,255,255);
      --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
      --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
      --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.15);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--white);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; transition: var(--transition); }
    img { max-width: 100%; height: auto; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    
    .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(--text-dark); white-space: nowrap; }

    
    .site-header { position: sticky; top: 0; z-index: 100; background-color: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); }
    .header-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-menu { display: flex; align-items: center; gap: 32px; }
    .nav-menu a { font-size: 15px; font-weight: 600; color: var(--text-muted); }
    .nav-menu a:hover { color: var(--primary); }
    .nav-actions { display: flex; align-items: center; gap: 16px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); border: 1px solid transparent; }
    .btn-primary { background-color: var(--primary); color: var(--white); }
    .btn-primary:hover { background-color: var(--primary-hover); box-shadow: 0 4px 12px rgba(29, 123, 255, 0.25); }
    .btn-outline { border-color: var(--border-color); color: var(--text-muted); }
    .btn-outline:hover { border-color: var(--primary); color: var(--primary); }
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .nav-toggle span { display: block; width: 24px; height: 2px; background-color: var(--text-dark); margin: 5px 0; }

    
    .mobile-drawer { position: fixed; top: 0; left: -320px; width: 300px; height: 100%; background-color: var(--white); z-index: 200; box-shadow: var(--shadow-lg); transition: var(--transition); padding: 24px; display: flex; flex-direction: column; gap: 32px; }
    .mobile-drawer.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-muted); }
    .mobile-nav { display: flex; flex-direction: column; gap: 20px; }
    .mobile-nav a { font-size: 16px; font-weight: 600; color: var(--text-muted); padding-bottom: 8px; border-bottom: 1px solid var(--silver); }
    .mobile-nav a:hover { color: var(--primary); }
    .drawer-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(10, 17, 40, 0.4); z-index: 150; opacity: 0; visibility: hidden; transition: var(--transition); }
    .drawer-backdrop.active { opacity: 1; visibility: visible; }

    
    .download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 80px 0; align-items: center; }
    .download-visual { position: relative; text-align: center; }
    .download-visual img { max-width: 80%; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15)); }
    .download-tag { display: inline-block; background-color: var(--primary-light); color: var(--primary); padding: 6px 16px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 24px; }
    .download-text h1 { font-size: 44px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: var(--text-dark); }
    .download-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; }
    
    
    .channels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 40px; }
    .channel-btn { border: 1px solid var(--border-color); border-radius: 12px; padding: 16px 24px; display: flex; align-items: center; gap: 16px; font-weight: 600; transition: var(--transition); }
    .channel-btn:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
    .channel-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background-color: var(--silver); border-radius: 8px; font-size: 18px; color: var(--primary); }
    .channel-info span { display: block; font-size: 11px; color: var(--text-light); font-weight: normal; }

    
    .section-padding { padding: 80px 0; }
    .qa-box { max-width: 800px; margin: 0 auto; }
    .qa-item { border-bottom: 1px solid var(--border-color); padding: 24px 0; }
    .qa-item:last-child { border-bottom: none; }
    .qa-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
    .qa-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

    
    .site-footer { background-color: var(--dark-bg); color: var(--text-light); padding: 80px 0 40px 0; border-top: 1px solid rgba(255, 255, 255, 0.05); }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
    .footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.6; }
    .footer-title { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 24px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { font-size: 14px; }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 13px; }

    @media (max-width: 992px) {
      .download-grid { grid-template-columns: 1fr; text-align: center; }
      .channels { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-menu, .nav-actions .btn:not(.nav-toggle-btn) { display: none; }
      .nav-toggle { display: block; }
      .footer-grid { grid-template-columns: 1fr; }
    }