:root {
    --primary: #0088cc;
    --primary-light: #00a3ff;
    --primary-glow: rgba(0, 163, 255, 0.4);
    --bg-black: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-white: #ffffff;
    --text-gray: #a1a1a1;
    --border-glow: rgba(0, 163, 255, 0.2);
    --transition-smooth: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, "SF Pro Display", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg-black);
    color: var(--text-white);
    overflow-x: hidden;
}

.ambient-glow {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 5% 5%, rgba(0, 136, 204, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 95% 95%, rgba(0, 163, 255, 0.1) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.4);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img { height: 32px; }
.logo span {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #0088cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 40px;
    text-align: center;
}

.badge-top {
    display: inline-flex;
    padding: 10px 20px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #40e0d0;
    margin-bottom: 28px;
    text-shadow: 0 0 10px rgba(0, 163, 255, 0.5);
}

.hero h1 {
    font-size: clamp(2.4rem, 9vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}
.hero h1 span {
    color: var(--primary-light);
    text-shadow: 0 0 40px var(--primary-glow);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-img {
    margin-top: 40px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.9);
}
.hero-img img { width: 100%; display: block; }

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
    background: linear-gradient(135deg, #0088cc 0%, #00a3ff 100%);
    color: white !important;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--primary-glow);
    transition: var(--transition-smooth);
}
.btn-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px var(--primary-glow);
}

/* Features */
.features-section { padding: 80px 0; }
.f-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.f-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 36px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}
.f-card:hover { border-color: var(--primary-light); transform: translateY(-8px); }
.f-icon { font-size: 2.8rem; margin-bottom: 20px; display: block; }
.f-card h3 { font-size: 1.5rem; margin-bottom: 12px; font-weight: 800; }
.f-card p { color: var(--text-gray); }

/* Payout Section */
.payout-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 80px 0;
    text-align: center;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    margin: 40px 12px;
}
.payout-text { font-size: 1.3rem; margin-bottom: 32px; font-weight: 700; }
.payout-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.p-card {
    background: #000;
    padding: 24px 34px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
}
.p-card .amount { font-size: 2.4rem; font-weight: 900; color: var(--primary-light); display: block; }
.p-card .label { font-size: 0.9rem; color: var(--text-gray); text-transform: uppercase; font-weight: 800; }

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    align-items: center;
    opacity: 0.7;
}
.payment-logos svg { height: 35px; width: auto; fill: white; }

/* Footer */
footer { padding: 100px 24px; text-align: center; }

@media (max-width: 768px) {
    .header-btn { display: none; }
    .hero { padding-top: 110px; }
    .hero h1 { font-size: 2.5rem; }
    .btn-cta { width: 100%; }
    .p-card { width: 100%; }
    .payment-logos { gap: 20px; flex-wrap: wrap; }
    .payment-logos svg { height: 28px; }
}
