﻿:root { --primary: rgb(219,39,119); --primary-hover: rgb(190, 20, 90); --primary-light: rgba(219,39,119, 0.1); --text-main: #1f2937; --text-muted: #6b7280; --bg-body: #f4f6f9; --border-color: #e5e7eb; --radius: 12px; --container-width: 1000px; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; color: var(--text-main); background: var(--bg-body); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul, li { list-style: none; }
        .container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
        
        
        .header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 36px; 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: var(--text-main); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; align-items: center; }
        .desktop-nav a { font-size: 16px; font-weight: 500; position: relative; padding: 5px 0; }
        .desktop-nav a:hover { color: var(--primary); }
        .btn-download-sm { background: var(--primary); color: #fff !important; padding: 8px 20px; border-radius: 20px; font-weight: bold; }
        .menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
        .menu-toggle span { width: 24px; height: 2px; background: var(--text-main); transition: 0.3s; }
        
        .mobile-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; visibility: hidden; }
        .mobile-drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; z-index: 999; transition: 0.3s; display: flex; flex-direction: column; }
        .mobile-drawer.active { transform: translateX(300px); }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; }
        .drawer-close { font-size: 24px; cursor: pointer; color: var(--text-muted); }
        .drawer-body { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav li { margin-bottom: 15px; border-bottom: 1px dashed var(--border-color); padding-bottom: 10px; }

        
        .dl-main { background: #fff; border-radius: var(--radius); padding: 50px; margin: 40px auto; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; }
        .app-icon { width: 100px; height: 100px; background: linear-gradient(135deg, var(--primary), #861848); border-radius: 24px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 50px; color: #fff; box-shadow: 0 10px 20px var(--primary-light); }
        .dl-title { font-size: 32px; font-weight: bold; margin-bottom: 10px; }
        .dl-meta { color: var(--text-muted); font-size: 14px; margin-bottom: 30px; display: flex; justify-content: center; gap: 20px; }
        
        .dl-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
        .btn-dl-large { display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; background: var(--primary); color: #fff; font-size: 18px; font-weight: bold; border-radius: 30px; box-shadow: 0 4px 15px var(--primary-light); }
        .btn-dl-large:hover { background: var(--primary-hover); transform: translateY(-2px); }
        .btn-dl-large.ios { background: #111; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
        .btn-dl-large.ios:hover { background: #333; }
        
        .dl-steps { text-align: left; background: var(--bg-gray); border-radius: var(--radius); padding: 30px; margin-top: 30px; }
        .dl-steps h3 { font-size: 20px; margin-bottom: 20px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .step-row { display: flex; gap: 20px; margin-bottom: 15px; align-items: flex-start; }
        .step-icon { width: 28px; height: 28px; background: #fff; border: 2px solid var(--primary); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; }
        .step-text { font-size: 15px; color: #444; padding-top: 2px; }

        .trust-banner { display: flex; justify-content: center; gap: 40px; padding: 20px 0; border-top: 1px dashed var(--border-color); margin-top: 40px; }
        .trust-item { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 14px; }
        .trust-item svg { width: 20px; height: 20px; fill: #10b981; }

        
        .footer { background: #111827; color: #d1d5db; padding: 60px 0 20px; margin-top: 40px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-title { color: #fff; font-size: 18px; font-weight: bold; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
        .footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); }
        .footer-links li { margin-bottom: 12px; }
        .footer-bottom { border-top: 1px solid #374151; padding-top: 20px; text-align: center; font-size: 14px; color: #6b7280; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;}

        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .menu-toggle { display: flex; }
            .dl-main { padding: 30px 20px; }
            .dl-actions { flex-direction: column; width: 100%; }
            .btn-dl-large { width: 100%; justify-content: center; }
            .trust-banner { flex-direction: column; gap: 15px; align-items: center; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-title::after { left: 50%; transform: translateX(-50%); }
            .footer-bottom { flex-direction: column; justify-content: center; }
        }