﻿:root {
      --primary: #1D7BFF;
      --accent: rgb(80,250,123);
      --bg-dark: #070c19;
      --bg-card: #111827;
      --text-main: #f3f4f6;
      --text-muted: #9ca3af;
      --border-color: rgba(255, 255, 255, 0.08);
      --text-light-silver: #e2e8f0;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background-color: var(--bg-dark);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; transition: color 0.3s; }
    
    
    header {
      background: rgba(7, 12, 25, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 1000;
      height: 70px;
    }
    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      height: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
    }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { display: block; height: 38px; }
    .logo span { font-size: 18px; font-weight: 800; color: var(--text-light-silver); }
    .nav-menu { display: flex; align-items: center; gap: 24px; }
    .nav-menu a { color: var(--text-muted); font-size: 15px; }
    .nav-menu a:hover { color: var(--accent); }
    .menu-toggle-btn { display: none; background: none; border: none; color: var(--text-main); font-size: 24px; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 1001; }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .mobile-drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background: var(--bg-card); transition: 0.3s; z-index: 1002; padding: 24px; }
    .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(--text-muted); font-size: 24px; }
    .drawer-menu { display: flex; flex-direction: column; gap: 20px; }

    
    .dl-hero {
      background: linear-gradient(135deg, rgba(29,123,255,0.1) 0%, rgba(7,12,25,0.9) 100%);
      padding: 80px 20px;
      text-align: center;
    }
    .dl-hero h1 { font-size: 38px; color: var(--text-light-silver); margin-bottom: 16px; }
    .dl-hero p { max-width: 650px; margin: 0 auto; color: var(--text-muted); font-size: 16px; }

    .dl-grid { max-width: 1200px; margin: 60px auto 100px; padding: 0 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .dl-section { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 40px; }
    .dl-section h2 { color: var(--text-light-silver); font-size: 24px; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
    
    .dl-buttons { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
    .dl-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 16px;
      border-radius: 8px;
      font-weight: bold;
      font-size: 16px;
      transition: all 0.3s;
    }
    .dl-btn-apk { background: linear-gradient(135deg, #1D7BFF, var(--accent)); color: #050811; }
    .dl-btn-apk:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(29,123,255,0.4); }
    .dl-btn-ios { background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); color: var(--text-light-silver); }
    .dl-btn-ios:hover { background: rgba(255,255,255,0.1); }

    .step-list { display: flex; flex-direction: column; gap: 20px; }
    .step-item { display: flex; gap: 16px; }
    .step-num { width: 32px; height: 32px; background: rgba(29, 123, 255, 0.15); border: 1px solid var(--primary); color: var(--primary); font-weight: bold; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .step-detail h3 { color: var(--text-light-silver); font-size: 16px; margin-bottom: 4px; }
    .step-detail p { color: var(--text-muted); font-size: 14px; }

    
    footer {
      background: #050811;
      border-top: 1px solid var(--border-color);
      padding: 80px 20px 40px;
      color: var(--text-muted);
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 60px;
    }
    .footer-brand p { margin-top: 15px; font-size: 14px; }
    .footer-group h4 { color: var(--text-light-silver); font-size: 16px; margin-bottom: 20px; }
    .footer-group ul { list-style: none; }
    .footer-group ul li { margin-bottom: 10px; }
    .footer-group ul li a { font-size: 14px; }
    .footer-group ul li a:hover { color: var(--accent); }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 30px;
      border-top: 1px solid var(--border-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }

    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .menu-toggle-btn { display: block; }
      .dl-grid { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; gap: 30px; }
    }