﻿:root {
            --bg-dark: rgb(32,33,36);
            --bg-card: #2c2d32;
            --primary: #d4af37;
            --primary-hover: #f1c40f;
            --text-main: #ffffff;
            --text-desc: #a1a3a8;
            --border-color: rgba(255,255,255,0.08);
            --radius-md: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'PingFang SC', sans-serif; background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .header { position: sticky; top: 0; z-index: 100; background: rgba(32,33,36,0.95); border-bottom: 1px solid var(--border-color); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { height: 38px; width: auto; max-width: 160px; object-fit: contain; }
        .logo span { font-size: 20px; font-weight: 800; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a:hover { color: var(--primary); }
        .mobile-btn { display: none; font-size: 24px; cursor: pointer; }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden; z-index: 1000; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-card); z-index: 1001; transition: transform 0.3s; display: flex; flex-direction: column; }
        body.drawer-open .drawer-overlay { opacity: 1; visibility: visible; }
        body.drawer-open .drawer { transform: translateX(300px); }
        .drawer-header { padding: 20px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--border-color); }
        .drawer-menu a { display: block; padding: 15px 25px; border-bottom: 1px solid rgba(255,255,255,0.03); }

        .dl-hero { padding: 100px 0; background: radial-gradient(circle at right bottom, rgba(212,175,55,0.1) 0%, transparent 50%); }
        .dl-wrap { display: flex; align-items: center; gap: 60px; }
        .dl-text { flex: 1; }
        .dl-text h1 { font-size: 42px; margin-bottom: 20px; }
        .dl-text h1 span { color: var(--primary); }
        .dl-text p { font-size: 18px; color: var(--text-desc); margin-bottom: 40px; }
        .dl-btns { display: flex; gap: 20px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 15px 35px; border-radius: 30px; font-size: 18px; font-weight: 600; cursor: pointer; transition: 0.3s; }
        .btn-ios { background: var(--text-main); color: #000; }
        .btn-ios:hover { background: #e0e0e0; transform: translateY(-3px); }
        .btn-and { background: var(--primary); color: #111; }
        .btn-and:hover { background: var(--primary-hover); transform: translateY(-3px); }
        
        .dl-img { flex: 1; text-align: center; }
        .dl-img img { max-width: 300px; margin: 0 auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); }

        .step-sec { padding: 80px 0; background: var(--bg-card); border-top: 1px solid var(--border-color); }
        .sec-title { text-align: center; font-size: 32px; margin-bottom: 50px; }
        .step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
        .step-item { position: relative; }
        .step-icon { width: 80px; height: 80px; background: rgba(255,255,255,0.05); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--primary); font-weight: bold; border: 1px solid var(--border-color); }
        .step-item h3 { font-size: 18px; margin-bottom: 10px; }
        .step-item p { color: var(--text-desc); font-size: 14px; }

        .footer { background: #1a1a1c; border-top: 1px solid var(--border-color); padding: 60px 0 20px; }
        .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
        .foot-title { font-size: 16px; margin-bottom: 20px; }
        .foot-links li { margin-bottom: 12px; }
        .foot-links a { color: var(--text-desc); font-size: 14px; }
        .foot-links a:hover { color: var(--primary); }
        .foot-bottom { border-top: 1px solid var(--border-color); padding-top: 20px; text-align: center; color: var(--text-desc); font-size: 13px; display: flex; justify-content: space-between; }
        .foot-bottom-links a { color: var(--text-desc); margin-left: 15px; }

        @media (max-width: 992px) {
            .dl-wrap { flex-direction: column; text-align: center; }
            .dl-btns { justify-content: center; }
            .step-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-btn { display: block; }
            .step-grid, .foot-grid { grid-template-columns: 1fr; }
            .foot-bottom { flex-direction: column; gap: 15px; }
        }