/* assets/style.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #050816;
    color: #f5f5f5;
    line-height: 1.6;
}

a { color: #48b5ff; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Topbar */
.topbar {
    background: rgba(3, 5, 24, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
}

.logo-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(135deg,#ff2a55,#2af5ff);
    box-shadow: 0 0 12px rgba(255,42,85,0.7);
}

.brand-text span {
    color: #ff2a55;
}

.nav-small a {
    margin-left: 16px;
    font-size: 14px;
    opacity: 0.8;
}
.nav-small a:hover {
    opacity: 1;
}

/* Hero */
.hero {
    padding: 32px 0 24px;
    text-align: center;
}

.hero h1 {
    font-size: 26px;
    margin-bottom: 10px;
}

.hero .subtitle {
    font-size: 14px;
    max-width: 520px;
    margin: 0 auto 20px;
    color: #c9d2ff;
}

/* Form */
.download-form {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
    background: rgba(15, 23, 42, 0.9);
    padding: 18px 16px 16px;
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 18px 40px rgba(15,23,42,0.8);
}

.download-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #e5e7eb;
}

.download-form input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid rgba(148,163,184,0.7);
    background: rgba(15,23,42,0.95);
    color: #f9fafb;
    outline: none;
}

.download-form input::placeholder {
    color: #6b7280;
    font-size: 13px;
}

.download-form input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 1px rgba(56,189,248,0.4);
}

.download-form button {
    margin-top: 12px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg,#22c55e,#16a3ff);
    color: #0b1120;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.download-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(34,197,94,0.45);
}

.note {
    margin-top: 12px;
    font-size: 11px;
    color: #9ca3af;
}

/* Info blocks */
.info-block {
    margin-top: 28px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 14px;
    padding: 16px 14px;
    border: 1px solid rgba(30,64,175,0.6);
}

.info-block h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-block h3 {
    margin-top: 10px;
    font-size: 15px;
}

.info-block ol,
.info-block ul {
    padding-left: 18px;
    font-size: 14px;
}

.info-block li {
    margin-bottom: 6px;
}

/* Ads blocks */
.ad-top, .ad-middle {
    margin: 16px 0;
    text-align: center;
    min-height: 40px;
}

/* Footer */
.footer {
    margin-top: 28px;
    padding: 16px 0 24px;
    border-top: 1px solid rgba(148,163,184,0.3);
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
}

/* Responsive */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    .hero .subtitle {
        font-size: 15px;
    }
}