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

:root {
    --bg: #07111d;
    --card: rgba(15, 25, 40, 0.75);
    --border: rgba(255,255,255,0.08);
    --primary: #34d6ff;
    --secondary: #25f2a0;
    --text: #ffffff;
    --muted: #9ab0c4;
}

body {
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top, #0d4068 0%, #07111d 40%, #04080f 100%);
    min-height: 100vh;
}

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

.navbar {
    height: 92px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(4,10,20,.9);
    backdrop-filter: blur(10px);
}

.nav-left {
    justify-self: start;
}

.nav-center {
    display: flex;
    gap: 42px;
    justify-content: center;
    align-items: center;
}

.nav-center a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
    transition: .2s;
}

.nav-center a:hover {
    color: var(--primary);
}

.nav-right {
    justify-self: end;
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    transition: .2s;
}

.social-icon:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(52,214,255,.25);
}

.social-icon img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.logo-main {
    display: block;
    font-size: 28px;
    font-weight: 900;
}

.logo-sub {
    display: block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--muted);
    font-weight: 800;
}

.nav-links a:hover {
    color: var(--primary);
}

.hero,
.leaderboard-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 10px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(52, 214, 255, .12);
    border: 1px solid rgba(52, 214, 255, .28);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero h1,
.leaderboard-hero h1 {
    font-size: 88px;
    font-weight: 950;
    line-height: .95;
    margin-bottom: 22px;
    background: linear-gradient(180deg, #fff, var(--primary));
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    color: var(--muted);
    font-size: 22px;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.5;
}

.code-box {
    display: inline-block;
    margin-top: 34px;
    padding: 16px 24px;
    border-radius: 18px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--muted);
    font-weight: 800;
}

.code-box span {
    color: var(--secondary);
}

.hero-buttons {
    margin-top: 30px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 8px;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 900;
    transition: .2s;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #020812;
}

.secondary-btn {
    border: 1px solid var(--border);
    color: var(--primary);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 25px rgba(52,214,255,.4),
        0 0 60px rgba(37,242,160,.25);
}
.secondary-btn:hover {
    transform: translateY(-2px);
}

.stats {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.stat {
    width: 250px;
    padding: 24px;
    border-radius: 22px;
    background: var(--card);
    border: 1px solid var(--border);
}

.stat h2 {
    font-size: 30px;
    margin-bottom: 8px;
}

.stat p {
    color: var(--muted);
}

.cards-section,
.podium-preview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--muted);
    font-size: 18px;
}

.podium-cards {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 24px;
    align-items: end;
    margin-bottom: 36px;
}

.podium-card {
    min-height: 220px;
    padding: 30px;
    text-align: center;
    border-radius: 24px;
    background: var(--card);
    border: 1px solid var(--border);
}

.podium-card.first {
    transform: translateY(-28px);
    border-color: rgba(255, 210, 63, .7);
    box-shadow: 0 0 50px rgba(255, 210, 63, .12);
}

.place {
    font-size: 34px;
    font-weight: 950;
    color: var(--primary);
}

.name {
    margin-top: 22px;
    font-size: 22px;
    font-weight: 900;
}

.wager {
    margin-top: 10px;
    color: var(--secondary);
    font-weight: 900;
}

footer {
    padding: 60px 24px;
    text-align: center;
    color: var(--muted);
    border-top: 1px solid var(--border);
}

.section-header.left {
    text-align: left;
}

.section-kicker {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bonus-card {
    min-height: 360px;
    padding: 32px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(19, 32, 52, .95), rgba(8, 15, 27, .95));
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .25s;
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 80px rgba(0,0,0,.45);
}

.bonus-card::before {
    content: "";
    position: absolute;
    inset: -80px -80px auto auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: .35;
}

.bonus-card.green::before { background: #24ff72; }
.bonus-card.blue::before { background: #34d6ff; }
.bonus-card.purple::before { background: #a532ff; }

.bonus-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 70px;
}

.bonus-card h3 {
    font-size: 30px;
    margin-bottom: 16px;
}

.bonus-card p {
    color: var(--muted);
    line-height: 1.6;
    min-height: 75px;
}

.claim-btn {
    width: 100%;
    margin-top: 30px;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #020812;
    font-weight: 900;
    cursor: pointer;
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    width: min(720px, 100%);
    background: #121d2d;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 120px rgba(0,0,0,.65);
}

.modal-progress {
    height: 5px;
    background: linear-gradient(90deg, #34d6ff, #25f2a0);
    width: 25%;
    transition: .25s;
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 16px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.modal-header {
    padding: 22px 28px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.modal-header h2 {
    margin: 0;
}

.modal-header p {
    color: var(--muted);
    margin-top: 6px;
}

.modal-body {
    padding: 44px 42px;
    text-align: center;
}

.modal-icon {
    width: 86px;
    height: 86px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    margin: 0 auto 26px;
    font-size: 40px;
    background: rgba(52,214,255,.12);
    border: 1px solid rgba(52,214,255,.25);
}

.modal-body h3 {
    font-size: 28px;
    margin-bottom: 14px;
}

.modal-body p {
    color: #c9d4df;
    line-height: 1.6;
}

.modal-action {
    display: block;
    margin-top: 28px;
    padding: 16px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #020812;
    font-weight: 900;
}

.info-box {
    margin-top: 24px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 211, 64, .08);
    border: 1px solid rgba(255, 211, 64, .28);
    color: #ffe783;
    text-align: left;
    line-height: 1.6;
}

.modal-input {
    width: 100%;
    margin-top: 14px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: white;
    font-size: 16px;
}

.modal-footer {
    padding: 20px 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-back,
.modal-next {
    padding: 12px 22px;
    border-radius: 12px;
    border: none;
    font-weight: 900;
    cursor: pointer;
}

.modal-back {
    background: rgba(255,255,255,.09);
    color: white;
}

.modal-next {
    background: linear-gradient(135deg, #34d6ff, #25f2a0);
    color: #020812;
}

.modal-dots {
    display: flex;
    gap: 8px;
}

.modal-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
}

.modal-dot.active {
    background: var(--secondary);
}

@media(max-width:900px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

.leaderboard-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 90px;
}

.table-card {
    margin-top: 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

.table-header {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-header p {
    color: var(--muted);
    margin-top: 6px;
}

.code-pill {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(37,242,160,.12);
    color: var(--secondary);
    font-weight: 900;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    padding: 18px 24px;
    text-align: left;
    color: var(--primary);
    background: rgba(52,214,255,.06);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

td {
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,.06);
    color: white;
    font-weight: 700;
}

tr:hover td {
    background: rgba(52,214,255,.04);
}

@media(max-width:900px) {
    .table-header {
        display: block;
    }

    table {
        font-size: 14px;
    }

    th, td {
        padding: 14px 10px;
    }
}

.landing-hero {
    min-height: calc(100vh - 74px);

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

    justify-content: flex-start;

    padding-top: 40px;
    padding-bottom: 80px;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 50% 38%, rgba(52,214,255,.20), transparent 34%),
        radial-gradient(circle at 20% 20%, rgba(37,242,160,.08), transparent 28%),
        linear-gradient(180deg, #07111d 0%, #04080f 100%);
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(52,214,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52,214,255,.08) 1px, transparent 1px);
    background-size: 42px 42px;
}

.landing-hero::after {
    content: "";
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(circle,
        rgba(52,214,255,.12),
        transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%,100% {
        transform: scale(1);
        opacity: .3;
    }

    50% {
        transform: scale(1.15);
        opacity: .6;
    }
}

.hero-logo-mark,
.mega-logo,
.official-text,
.landing-hero .hero-buttons,
.scroll-hint {
    position: relative;
    z-index: 2;
}

.hero-logo-mark {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 68px;
    color: var(--primary);
    background: rgba(52,214,255,.08);
    border: 1px solid rgba(52,214,255,.45);
    box-shadow: 0 0 80px rgba(52,214,255,.38);
    margin-bottom: 34px;
}

.mega-logo {
    font-size: clamp(110px, 17vw, 260px) !important;
    line-height: .78 !important;
    letter-spacing: -10px;
    margin: 0 !important;
    text-shadow: 0 25px 70px rgba(0,0,0,.65);
}

.hero-logo {
    width: min(700px, 75vw);
    height: auto;
    display: block;
    margin-bottom: 0px;

    filter:
        drop-shadow(0 0 25px rgba(52,214,255,.35))
        drop-shadow(0 0 60px rgba(52,214,255,.18));
}

.official-text {
    margin-top: 0px;
	margin-bottom: 0px;
    font-size: clamp(22px, 3.2vw, 46px);
    font-weight: 950;
    letter-spacing: 10px;
    color: rgba(255,255,255,.86);
}

.landing-hero .hero-buttons {
    margin-top: 24px;
}

.landing-hero .primary-btn,
.landing-hero .secondary-btn {
    min-width: 245px;
    height: 66px;
    font-size: 15px;
    letter-spacing: 1.5px;
}

html {
    scroll-behavior: smooth;
}

.scroll-hint {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    color: rgba(255,255,255,.78);
    font-weight: 900;
    letter-spacing: 2px;
    text-align: center;
    cursor: pointer;
    transition: .2s;
    z-index: 10;
}

.scroll-hint:hover {
    color: var(--primary);
    transform: translateX(-50%) scale(1.05);
}

.down-arrow {
    display: block;
    margin-top: 10px;
    font-size: 34px;
    color: var(--primary);
    animation: arrowFloat 1.4s ease-in-out infinite;
}

@keyframes arrowFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.65;
    }

    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

.info-box ul {
    margin: 10px 0 0;
    padding-left: 18px;
}

.info-box li {
    margin-bottom: 8px;
}

.claim-confirm {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0;
    padding: 12px;
    border: 1px solid rgba(160, 80, 255, 0.5);
    border-radius: 10px;
    background: rgba(120, 40, 180, 0.18);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.claim-confirm input {
    width: 16px;
    height: 16px;
}

.modal-action:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.monthly-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 30px auto;
}

.timer-line {
    width: 260px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
}

.timer-values {
    display: flex;
    gap: 24px;
    text-align: center;
}

.timer-values strong {
    display: block;
    font-size: 34px;
    color: #fff;
    letter-spacing: 2px;
}

.timer-values span {
    font-size: 13px;
    color: #9fb3c8;
    letter-spacing: 1px;
}

/* MOBILE FIX */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .navbar,
    header,
    .site-header {
        width: 100%;
        max-width: 100%;
        padding: 14px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .logo,
    .brand {
        font-size: 28px;
        flex-shrink: 0;
    }

    .nav-links {
        display: none;
    }

    .social-links,
    .header-actions {
        display: flex;
        gap: 8px;
        flex-shrink: 0;
    }

    .hero {
        width: 100%;
        min-height: calc(100vh - 80px);
        padding: 80px 20px 40px;
        text-align: center;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-logo {
        width: 85%;
        max-width: 360px;
        margin: 0 auto 28px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.1;
    }

    .hero-subtitle,
    .official-hub {
        font-size: 22px;
        letter-spacing: 10px;
        text-align: center;
    }

    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn,
    .modal-action {
        width: 100%;
        max-width: 380px;
        text-align: center;
    }

    .bonuses,
    .podium-preview,
    .leaderboard-section {
        width: 100%;
        padding: 60px 20px;
        overflow: hidden;
    }

    .bonus-grid,
    .podium-cards {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 24px;
    }

    .bonus-card,
    .podium-card {
        width: 100%;
        max-width: 100%;
    }

    .section-header h2 {
        font-size: 38px;
        line-height: 1.1;
    }

    .section-header p {
        font-size: 18px;
    }

    .modal {
        width: calc(100% - 24px);
        max-width: 420px;
        margin: 0 auto;
    }

    .modal-content {
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
    }
}