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

/* BASE */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
}

/* LAYOUT */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 90px 0;
}

/* TOPBAR */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid #141414;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
}

.brand-name {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #cfcfcf;
    font-size: 14px;
}

.nav a:hover {
    color: #fff;
}

.nav-cta {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #1a1a1a;
    background: #0c0c0c;
}

/* HERO */
.hero {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top, #111 0%, #000 60%);
    padding: 30px 0 40px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 18px;
    color: #aaa;
    max-width: 640px;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.micro {
    font-size: 13px;
    color: #777;
}

.micro-center {
    text-align: center;
    margin-top: 16px;
}

.hero-card {
    background: #0c0c0c;
    border: 1px solid #1a1a1a;
    border-radius: 22px;
    padding: 14px;
}

.hero-card img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid #1a1a1a;
    background: #111;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00ffa3, #00c2ff);
    color: #000;
    font-weight: 700;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 12px;
    background: #0c0c0c;
    border: 1px solid #1a1a1a;
    color: #fff;
    font-weight: 700;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

/* TITLES */
.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 18px;
}

.section-desc {
    text-align: center;
    color: #aaa;
    max-width: 820px;
    margin: 0 auto 50px;
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.feature {
    background: #0c0c0c;
    border-radius: 16px;
    padding: 26px;
    border: 1px solid #1a1a1a;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 15px;
    color: #aaa;
}

/* FAQ */
.seo-faq {
    margin-top: 70px;
}

.faq-item {
    max-width: 820px;
    margin: 0 auto 18px;
    background: #0c0c0c;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 20px 22px;
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.faq-item p {
    color: #aaa;
    font-size: 14px;
}

/* SCREENS */
.screens {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.screens img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #1a1a1a;
    background: #111;
}

/* CTA */
.cta {
    text-align: center;
    background: radial-gradient(circle at bottom, #111 0%, #000 60%);
}

/* FOOTER */
.footer {
    border-top: 1px solid #141414;
    padding: 30px 0;
    color: #777;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
}

.footer-links a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }

    .hero h1 {
        font-size: 38px;
    }
}

@media (max-width: 520px) {
    .hero h1 {
        font-size: 32px;
    }

    .section {
        padding: 70px 0;
    }
}

/* =========================
   Referral / Open App page
   ========================= */

.wrap {
    min-height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: radial-gradient(circle at top,
            rgba(255, 255, 255, 0.05),
            #000 65%);
}

/* Card container inside .wrap */
.wrap>div {
    width: 100%;
    max-width: 360px;
    padding: 22px 18px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.wrap h1 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

#status {
    margin: 0 0 16px;
    font-size: 13px;
    opacity: 0.75;
}

.actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.actions .btn {
    width: 100%;
    max-width: 240px;

    padding: 11px 14px;
    border-radius: 14px;

    font-weight: 600;
    font-size: 14px;
    text-align: center;

    transition: transform 0.15s ease, opacity 0.15s ease;
}

.actions .btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.actions .btn.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

/* If you want to hide the helper text, set display:none */
.small {
    text-align: center;
    font-size: 11px;
    opacity: 0.55;
    margin-top: 10px;
    /* display: none; */
}

.footer-links {
    display: flex;
    gap: 14px;
    /* ← расстояние между ссылками */
    align-items: center;
}

.reward-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 14px 20px;
    border-radius: 999px;

    font-size: 18px;
    /* ⬅️ общий размер текста */
    font-weight: 700;
    letter-spacing: -0.02em;

    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.reward-badge span {
    display: flex;
    align-items: center;
}

.reward-badge span strong {
    font-size: 22px;
    /* ⬅️ акцент на цифрах */
    font-weight: 800;
}

.reward-badge img {
    width: 28px;
    /* ⬅️ больше иконка */
    height: 28px;
    display: block;
}

.coin-inline {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.coin-inline img {
    width: 18px;
    /* можно 16–20px */
    height: 18px;
    margin: 0 4px;
    /* расстояние до текста */
    transform: translateY(1px);
    /* оптическое выравнивание */
}