﻿:root { --primary-color: rgb(40,42,54); --primary-dark: #1f212a; --accent-color: #f39c12; --bg-color: #f4f6f9; --text-main: #333333; --text-muted: #666666; --border-color: #e5e7eb; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, sans-serif; background: #fff; color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        .header { background: var(--primary-color); position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .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: #ffffff; white-space: nowrap; }
        .desktop-nav { display: flex; gap: 28px; align-items: center; }
        .desktop-nav a { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.85); }
        .desktop-nav a:hover { color: var(--accent-color); }
        .mobile-menu-btn { display: none; background: none; border: none; color: #fff; cursor: pointer; }

        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 998; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -320px; width: 280px; height: 100vh; background: #fff; z-index: 999; transition: all 0.3s; 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; align-items: center; }
        .drawer .logo span { color: var(--primary-color); font-size: 18px; }
        .drawer .close-btn { background: none; border: none; cursor: pointer; }
        .drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
        .drawer-nav a { display: block; font-size: 16px; font-weight: 500; padding-bottom: 12px; border-bottom: 1px solid #f0f0f0; }

        
        .dl-hero { padding: 100px 0; background: linear-gradient(135deg, var(--bg-color) 0%, #fff 100%); }
        .dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .dl-text h1 { font-size: 48px; color: var(--primary-color); margin-bottom: 20px; line-height: 1.2; }
        .dl-text h1 span { color: var(--accent-color); }
        .dl-text p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }
        .dl-actions { display: flex; gap: 20px; flex-wrap: wrap; }
        .dl-btn { display: inline-flex; align-items: center; gap: 12px; padding: 0 30px; height: 60px; border-radius: 30px; background: var(--primary-color); color: #fff; font-size: 18px; font-weight: 600; box-shadow: 0 10px 20px rgba(0,0,0,0.1); transition: transform 0.3s; }
        .dl-btn:hover { transform: translateY(-3px); background: var(--primary-dark); }
        .dl-btn.android { background: #3ddc84; color: #fff; }
        .dl-btn.android:hover { background: #35c777; }
        .dl-btn svg { width: 24px; height: 24px; }
        
        .dl-qr { margin-top: 40px; display: flex; align-items: center; gap: 20px; background: #fff; padding: 20px; border-radius: 12px; border: 1px solid var(--border-color); width: fit-content; }
        .dl-qr-box { width: 100px; height: 100px; background: #f0f0f0; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 12px; color: #999; text-align: center; border: 2px dashed #ddd; }
        .dl-qr-text h4 { font-size: 16px; margin-bottom: 4px; }
        .dl-qr-text p { font-size: 13px; color: var(--text-muted); }

        .dl-img { position: relative; text-align: center; }
        .dl-img img { max-width: 80%; margin: 0 auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.15)); }

        .dl-steps { padding: 80px 0; background: var(--bg-color); text-align: center; }
        .dl-steps h2 { font-size: 32px; margin-bottom: 50px; color: var(--primary-color); }
        .step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .step-card { background: #fff; padding: 40px 30px; border-radius: 12px; }
        .step-icon { width: 60px; height: 60px; background: rgba(243,156,18,0.1); color: var(--accent-color); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 24px; font-weight: bold; margin-bottom: 20px; }
        .step-card h3 { font-size: 18px; margin-bottom: 12px; }
        .step-card p { font-size: 14px; color: var(--text-muted); }

        
        .footer { background: var(--primary-dark); color: rgba(255,255,255,0.7); padding-top: 60px; }
        .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .footer-brand .logo span { color: #fff; }
        .footer h3 { color: #fff; font-size: 16px; margin-bottom: 20px; }
        .footer ul li { margin-bottom: 12px; }
        .footer ul li a:hover { color: var(--accent-color); }
        .footer-bottom { padding: 24px 0; text-align: center; font-size: 13px; }

        @media (max-width: 992px) { .dl-grid { grid-template-columns: 1fr; text-align: center; } .dl-qr { margin: 40px auto 0; } .dl-actions { justify-content: center; } .step-grid { grid-template-columns: 1fr; } .footer-inner { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) { .desktop-nav { display: none; } .mobile-menu-btn { display: block; } .dl-text h1 { font-size: 36px; } .footer-inner { grid-template-columns: 1fr; } }