@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Syne:wght@600;700;800&display=swap');

.jambo-page {
    font-family: 'Space Grotesk', sans-serif;
    color: #0b1020;
    background: #f6f2ea;
}

.jambo-page h1,
.jambo-page h2,
.jambo-page h3 {
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.01em;
}

.jambo-hero {
    position: relative;
    padding: calc(7rem + var(--header-height, 80px)) 0 4rem;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 199, 0, 0.28), transparent 40%),
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.2), transparent 45%),
        linear-gradient(135deg, #0b1020 0%, #122b57 45%, #b2173c 100%);
    overflow: hidden;
}

.jambo-hero::after {
    content: '';
    position: absolute;
    inset: auto -20% -30% -20%;
    height: 280px;
    background: linear-gradient(120deg, rgba(255, 166, 0, 0.18), transparent 70%);
    transform: rotate(-4deg);
    pointer-events: none;
}

.jambo-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.jambo-eyebrow {
    display: inline-flex;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

.jambo-hero__copy h1 {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    margin: 1rem 0 1rem;
    color: #fff;
}

.jambo-hero__copy p {
    font-size: 1.1rem;
    max-width: 560px;
}

.jambo-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

.jambo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.jambo-btn--primary {
    background: #ff8a00;
    color: #141414;
    box-shadow: 0 15px 30px rgba(255, 138, 0, 0.35);
}

.jambo-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px rgba(255, 138, 0, 0.45);
}

.jambo-btn--ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.jambo-hero__meta {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.jambo-hero__meta-item {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.jambo-hero__meta-item span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

.jambo-hero__meta-item strong {
    display: block;
    font-size: 1.3rem;
    margin-top: 0.3rem;
}

.jambo-ticker {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 0.7rem 1rem;
    overflow: hidden;
}

.jambo-ticker__label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.jambo-ticker__track {
    position: relative;
    display: flex;
    gap: 2rem;
    overflow: hidden;
}

.jambo-ticker__row {
    display: inline-flex;
    gap: 2rem;
    white-space: nowrap;
    animation: jambo-ticker 18s linear infinite;
}

.jambo-hero__visual {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
}

.jambo-roulette {
    position: relative;
    width: clamp(240px, 38vw, 360px);
    aspect-ratio: 1;
}

.jambo-roulette__wheel {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        #ff8a00 0deg 40deg,
        #10b981 40deg 80deg,
        #103a86 80deg 120deg,
        #ffb703 120deg 160deg,
        #e8344a 160deg 200deg,
        #0ea5e9 200deg 240deg,
        #7c3aed 240deg 280deg,
        #ff8a00 280deg 360deg
    );
    animation: jambo-spin 7s linear infinite;
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.45);
    border: 12px solid rgba(255, 255, 255, 0.12);
}

.jambo-roulette__center {
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    background: #0b1020;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: 0.3em;
    font-size: 0.85rem;
    text-transform: uppercase;
    z-index: 2;
}

.jambo-roulette__pointer {
    position: absolute;
    top: -6px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 28px solid #fff;
    transform: translateX(-50%);
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
    z-index: 3;
}

.jambo-hero__panel {
    max-width: 320px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.jambo-hero__panel span {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.jambo-section {
    padding: 4.5rem 0;
}

.jambo-section__head {
    margin-bottom: 2.5rem;
    max-width: 680px;
}

.jambo-section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: #b45309;
    font-weight: 700;
}

.jambo-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 0.6rem;
}

.jambo-how {
    background: #fff7ed;
}

.jambo-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.jambo-step {
    background: #fff;
    border-radius: 20px;
    padding: 1.6rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.jambo-step__num {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #ff8a00;
    color: #0b1020;
    font-weight: 800;
    margin-bottom: 1rem;
}

.jambo-rewards__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

.jambo-reward-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.4rem;
    border: 2px solid var(--reward-color);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.jambo-reward-card::after {
    content: '';
    position: absolute;
    inset: auto -20% -50% -20%;
    height: 70px;
    background: var(--reward-color);
    opacity: 0.18;
    transform: rotate(-3deg);
}

.jambo-reward-card__meta {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.9rem;
    color: #334155;
}

.jambo-reward-card h3 {
    margin: 0.8rem 0 0.4rem;
}

.jambo-social {
    background: #0b1020;
    color: #fff;
}

.jambo-social__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.jambo-social__stats {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.jambo-social__stats div {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.9rem;
}

.jambo-social__stats span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.75;
}

.jambo-social__stats strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.jambo-winners {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.jambo-winner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: center;
}

.jambo-winner__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ff8a00;
    color: #0b1020;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.jambo-winner__time {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.2rem;
}

.jambo-legal {
    background: #fef3c7;
}

.jambo-legal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.jambo-legal__card {
    background: #fff;
    border-radius: 18px;
    padding: 1.4rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.jambo-legal__card a {
    color: #b45309;
    font-weight: 700;
}

.jambo-faq__list {
    display: grid;
    gap: 0.8rem;
}

.jambo-faq__list details {
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.jambo-faq__list summary {
    cursor: pointer;
    font-weight: 700;
}

.jambo-bymna {
    background: linear-gradient(120deg, #0b1020 0%, #1f2a44 55%, #ff8a00 100%);
    color: #fff;
}

.jambo-bymna__wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.jambo-bymna__cta {
    display: grid;
    gap: 0.7rem;
    justify-items: start;
}

.jambo-bymna__cta span {
    opacity: 0.85;
}

.jambo-sticky-cta {
    position: fixed;
    left: 50%;
    bottom: calc(18px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 999;
    display: none;
}

.jambo-sticky-cta .jambo-btn {
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.35);
}

@keyframes jambo-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes jambo-ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 1200px) {
    .jambo-rewards__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .jambo-hero__grid,
    .jambo-social__grid,
    .jambo-bymna__wrap {
        grid-template-columns: 1fr;
    }

    .jambo-hero__meta {
        grid-template-columns: 1fr;
    }

    .jambo-steps {
        grid-template-columns: 1fr;
    }

    .jambo-legal__grid {
        grid-template-columns: 1fr;
    }

    .jambo-rewards__grid {
        grid-template-columns: 1fr;
    }

    .jambo-sticky-cta {
        display: block;
    }
}

@media (max-width: 680px) {
    .jambo-hero {
        padding-top: calc(6rem + var(--header-height, 80px));
    }

    .jambo-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .jambo-ticker {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .jambo-roulette__wheel,
    .jambo-ticker__row {
        animation: none;
    }
}
