﻿:root { --primary: rgb(234,179,8); --primary-hover: #ca8a04; --text-main: #18181b; --text-muted: #52525b; --bg-body: #f8fafc; --bg-card: #ffffff; --dark-bg: #0f172a; --border-color: #e2e8f0; --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'PingFang SC', sans-serif; }
        body { background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul, li { list-style: none; }
        img { max-width: 100%; display: block; }
        
        
        .header { background: var(--dark-bg); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow); }
        .header-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 72px; }
        .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: #ffffff; white-space: nowrap; }
        .nav-desktop { display: none; }
        .nav-desktop ul { display: flex; gap: 30px; align-items: center; }
        .nav-desktop a { color: #cbd5e1; font-weight: 500; font-size: 15px; }
        .nav-desktop a:hover { color: var(--primary); }
        .menu-btn { display: block; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 999; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; box-shadow: var(--shadow); transition: 0.3s; z-index: 1000; }
        .drawer-active .drawer-overlay { opacity: 1; visibility: visible; }
        .drawer-active .mobile-drawer { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-header .logo span { color: var(--text-main); }
        .close-drawer { background: none; border: none; font-size: 24px; color: var(--text-muted); cursor: pointer; }
        .drawer-nav { padding: 20px; }
        .drawer-nav li { margin-bottom: 15px; }
        .drawer-nav a { display: block; font-size: 16px; font-weight: 500; }
        @media(min-width: 768px) { .nav-desktop { display: block; } .menu-btn { display: none; } }

        
        .dl-hero { background: linear-gradient(135deg, #0f172a, #1e293b); padding: 80px 20px; position: relative; overflow: hidden; }
        .dl-hero::after { content: ''; position: absolute; right: 0; bottom: 0; width: 100%; height: 50%; background: linear-gradient(to top, rgba(234,179,8,0.05), transparent); pointer-events: none; }
        .dl-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 50px; position: relative; z-index: 1; }
        @media(min-width: 992px) { .dl-container { flex-direction: row; justify-content: space-between; } }
        
        .dl-text { flex: 1; color: #fff; text-align: center; }
        @media(min-width: 992px) { .dl-text { text-align: left; } }
        .dl-text h1 { font-size: 42px; margin-bottom: 20px; }
        .dl-text h1 span { color: var(--primary); }
        .dl-text p { font-size: 18px; color: #94a3b8; margin-bottom: 40px; }
        
        .dl-actions { display: flex; flex-direction: column; gap: 20px; align-items: center; }
        @media(min-width: 992px) { .dl-actions { flex-direction: row; align-items: flex-start; } }
        .dl-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 220px; height: 60px; background: #fff; color: var(--dark-bg); border-radius: 8px; font-size: 18px; font-weight: bold; box-shadow: 0 10px 20px rgba(0,0,0,0.2); transition: 0.3s; }
        .dl-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(0,0,0,0.3); color: var(--primary); }
        .dl-btn.android { background: var(--primary); color: #fff; }
        .dl-btn.android:hover { background: var(--primary-hover); color: #fff; }
        
        .dl-mockup { flex: 1; max-width: 400px; }
        .dl-mockup img { border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); border: 4px solid #334155; }

        
        .steps-section { padding: 80px 20px; background: #fff; }
        .steps-container { max-width: 1000px; margin: 0 auto; }
        .steps-header { text-align: center; margin-bottom: 50px; }
        .steps-header h2 { font-size: 32px; color: var(--text-main); margin-bottom: 10px; }
        .steps-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
        @media(min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
        .step-card { text-align: center; padding: 30px; background: var(--bg-body); border-radius: 12px; }
        .step-icon { width: 60px; height: 60px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: bold; margin: 0 auto 20px; }
        .step-card h3 { font-size: 18px; margin-bottom: 10px; }
        .step-card p { color: var(--text-muted); font-size: 14px; }

        
        .footer { background: var(--dark-bg); color: #cbd5e1; padding: 60px 20px 20px; }
        .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-links h4 { color: #fff; margin-bottom: 20px; font-size: 16px; }
        .footer-links ul li { margin-bottom: 10px; }
        .footer-links a:hover { color: var(--primary); }
        .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 13px; color: #64748b; }
        .footer-bottom a { color: #64748b; margin: 0 10px; }
        @media(min-width: 768px) { .footer-container { grid-template-columns: 2fr 1fr 1fr; } }