﻿:root { --theme-color: rgb(241,250,140); --theme-hover: #e0e872; --text-on-theme: #0f172a; --bg-dark: #0f172a; --bg-darker: #020617; --bg-card: #1e293b; --text-main: #f8fafc; --text-muted: #94a3b8; --border-color: #334155; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background: var(--bg-darker); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-color); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
        .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: 22px; font-weight: 800; line-height: 1; color: var(--theme-color); white-space: nowrap; }
        .nav-desktop { display: flex; gap: 30px; }
        .nav-desktop a { font-size: 16px; font-weight: 500; padding: 8px 0; }
        .nav-desktop a:hover { color: var(--theme-color); }
        .header-actions { display: flex; gap: 15px; align-items: center; }
        .btn-outline { background: transparent; border: 1px solid var(--theme-color); padding: 8px 20px; border-radius: 6px; }
        .menu-toggle { display: none; font-size: 24px; color: var(--theme-color); cursor: pointer; background: none; border: none; }
        @media(max-width: 992px) { .nav-desktop, .header-actions .btn-outline { display: none; } .menu-toggle { display: block; } }

        
        .drawer-mask { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 999; opacity: 0; visibility: hidden; }
        .drawer-mask.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--bg-dark); z-index: 1000; transition: left 0.3s ease; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; }
        .drawer-close { font-size: 24px; color: var(--text-muted); cursor: pointer; background: none; border: none; }
        .drawer-nav a { display: block; padding: 15px 25px; border-bottom: 1px solid rgba(255,255,255,0.05); }

        
        .download-wrap { padding: 100px 0; background: radial-gradient(circle at top right, #1e1b4b, var(--bg-darker)); }
        .dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        @media(max-width: 992px) { .dl-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; } }
        
        .dl-text h1 { font-size: 48px; margin-bottom: 20px; font-weight: 800; line-height: 1.2; }
        .dl-text h1 span { color: var(--theme-color); }
        .dl-text p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }
        
        .dl-buttons { display: flex; gap: 20px; margin-bottom: 40px; }
        @media(max-width: 992px) { .dl-buttons { justify-content: center; flex-wrap: wrap; } }
        .btn-dl { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 30px; font-size: 18px; font-weight: bold; border-radius: 8px; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
        .btn-ios { background: #fff; color: #000; }
        .btn-ios:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,255,255,0.2); }
        .btn-android { background: #3ddc84; color: #000; }
        .btn-android:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(61,220,132,0.2); }
        
        .dl-features { margin-top: 50px; border-top: 1px solid var(--border-color); padding-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left; }
        .dl-feature-item { display: flex; align-items: flex-start; gap: 15px; }
        .dl-icon { font-size: 24px; color: var(--theme-color); }
        .dl-feature-item h4 { font-size: 16px; margin-bottom: 5px; }
        .dl-feature-item p { font-size: 13px; color: var(--text-muted); }

        .dl-img-container { position: relative; text-align: center; }
        .dl-img-container img { max-width: 80%; margin: 0 auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); }
        .qr-box { position: absolute; bottom: 20px; right: 20px; background: #fff; padding: 15px; border-radius: 12px; display: flex; flex-direction: column; align-items: center; box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
        @media(max-width: 992px) { .qr-box { position: static; display: inline-flex; margin-top: 30px; } }
        .qr-box img { width: 120px; height: 120px; margin-bottom: 10px; border: 1px solid #eee; }
        .qr-box span { color: #000; font-size: 14px; font-weight: bold; }

        
        .footer { background: #020617; padding: 60px 0 20px; border-top: 1px solid var(--border-color); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { font-size: 16px; color: #fff; margin-bottom: 20px; }
        .footer-col p, .footer-links a { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; }
        .footer-links a:hover { color: var(--theme-color); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; display: flex; justify-content: space-between; font-size: 14px; color: var(--text-muted); }
        @media(max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; gap: 10px; } }