
/* ========================================
   MYFLEXPESA
   PREMIUM DARK BLUE HEADER
   Blue + Green + Golden Yellow
======================================== */


/* ========================================
   GOOGLE FONT
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');


/* ========================================
   COLOR SYSTEM
======================================== */

:root {

    --navy: #07142F;
    --navy-light: #0B1F46;

    --blue: #1457C5;
    --blue-light: #3B82F6;

    --yellow: #FFD447;
    --yellow-light: #FFE47A;

    --green: #39D98A;
    --green-dark: #16A765;

    --white: #FFFFFF;

    --font-main: "Montserrat", "Arial Black", Arial, sans-serif;

}


/* ========================================
   GLOBAL RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {

    font-family: var(--font-main);

    background: var(--navy);

    color: var(--white);

}


a {
    text-decoration: none;
}


/* ========================================
   PREMIUM HEADER
======================================== */

.site-header {

    width: 100%;

    background: var(--navy);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    position: relative;

    z-index: 100;

}


/* ========================================
   HEADER CONTAINER
======================================== */

.header-container {

    width: min(1180px, calc(100% - 40px));

    min-height: 86px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 24px;

}


/* ========================================
   MYFLEXPESA LOGO
   SAME FONT, SIZE & WEIGHT
======================================== */

.brand-logo {

    display: inline-flex;

    align-items: center;

    font-family: var(--font-main);

    font-size: 29px;

    font-weight: 900;

    letter-spacing: -1.8px;

    line-height: 1;

    white-space: nowrap;

}


/* Force identical typography */

.brand-logo span {

    font-family: inherit;

    font-size: inherit;

    font-weight: inherit;

    letter-spacing: inherit;

    line-height: inherit;

}


/* ========================================
   LOGO COLORS
======================================== */

.logo-my {

    color: var(--white);

}


.logo-flex {

    color: var(--yellow);

}


.logo-pesa {

    color: var(--green);

}


/* ========================================
   GET OUR APP BUTTON
======================================== */


/* ========================================
   GET OUR APP BUTTON
   PREMIUM YELLOW → BLUE GRADIENT
======================================== */

.app-button {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 25px;
    min-height: 48px;

    background: linear-gradient(
        100deg,
        #FFD447 0%,
        #F6D66A 25%,
        #D9D5B5 48%,
        #A8C5DF 72%,
        #6FA5E8 100%
    );

    color: #07142F;

    border: 1px solid rgba(255, 212, 71, 0.75);
    border-radius: 14px;

    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.4px;
    line-height: 1;

    /* OUTWARD SHAKING / PULSE */
    animation: appButtonPulse 2.2s ease-in-out infinite;

    transition: all 0.25s ease;

}


/* ========================================
   OUTWARD PULSE ANIMATION
======================================== */

@keyframes appButtonPulse {

    0% {
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(255, 212, 71, 0.45);
    }

    50% {
        transform: scale(1.035);
        box-shadow:
            0 0 0 10px rgba(255, 212, 71, 0.08);
    }

    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(255, 212, 71, 0);
    }

}


/* ========================================
   HOVER
======================================== */

.app-button:hover {

    animation-play-state: paused;

    transform: translateY(-2px);

    background: linear-gradient(
        100deg,
        #FFE47A 0%,
        #F8DD7A 25%,
        #E2DFC4 48%,
        #B8D0E5 72%,
        #82B5EE 100%
    );

}


/* ========================================
   ACTIVE
======================================== */

.app-button:active {
    transform: translateY(0);
}


/* ========================================
   ACCESSIBILITY
======================================== */

@media (prefers-reduced-motion: reduce) {

    .app-button {
        animation: none;
    }

}


/* ========================================
   MOBILE RESPONSIVE
======================================== */

@media (max-width: 600px) {

    .header-container {

        width: calc(100% - 28px);

        min-height: 74px;

    }


    .brand-logo {

        font-size: 23px;

        font-weight: 900;

        letter-spacing: -1.3px;

    }


    .app-button {

        padding: 12px 15px;

        min-height: 42px;

        font-size: 10px;

        font-weight: 900;

        letter-spacing: 0.3px;

        border-radius: 11px;

    }

}



/* ========================================
   CENTERED ONLINE MEMBERS INDICATOR
   Premium Blue + Green + Golden Yellow
======================================== */


/* ========================================
   CENTERING
======================================== */

.online-members-wrapper {

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 24px 20px;

}


/* ========================================
   PREMIUM GREEN OUTLINED PILL
======================================== */

.online-members {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding: 14px 28px;

    min-height: 58px;

    background: rgba(7, 20, 47, 0.65);

    border: 1px solid rgba(57, 217, 138, 0.45);

    border-radius: 999px;

    font-family: var(--font-main);

    white-space: nowrap;

    z-index: 1;

}


/* ========================================
   GREEN OUTWARD BORDER WAVES
======================================== */

.online-members::before,
.online-members::after {

    content: "";

    position: absolute;

    inset: -2px;

    border: 1px solid #39D98A;

    border-radius: inherit;

    pointer-events: none;

    animation: membersBorderWave 2.4s ease-out infinite;

    z-index: -1;

}


/* Second wave */

.online-members::after {

    animation-delay: 1.2s;

}


/* ========================================
   BORDER WAVE ANIMATION
======================================== */

@keyframes membersBorderWave {

    0% {

        inset: -2px;

        opacity: 0.7;

    }

    100% {

        inset: -14px;

        opacity: 0;

    }

}


/* ========================================
   ONLINE DOT
======================================== */

.online-dot {

    position: relative;

    display: inline-block;

    width: 12px;

    height: 12px;

    background: #39D98A;

    border-radius: 50%;

    flex-shrink: 0;

    box-shadow: 0 0 10px rgba(57, 217, 138, 0.5);

}


/* Dot waves */

.online-dot::before,
.online-dot::after {

    content: "";

    position: absolute;

    top: 50%;

    left: 50%;

    width: 100%;

    height: 100%;

    border: 1px solid #39D98A;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    animation: onlineDotWave 2s ease-out infinite;

}


.online-dot::after {

    animation-delay: 1s;

}


/* ========================================
   DOT WAVE ANIMATION
======================================== */

@keyframes onlineDotWave {

    0% {

        width: 100%;

        height: 100%;

        opacity: 0.8;

    }

    100% {

        width: 300%;

        height: 300%;

        opacity: 0;

    }

}


/* ========================================
   ONLINE COUNT
======================================== */

.online-count {

    color: #FFFFFF;

    font-size: 22px;

    font-weight: 900;

    letter-spacing: -0.5px;

    min-width: 45px;

    text-align: center;

}


/* ========================================
   ONLINE TEXT
======================================== */

.online-text {

    color: #B8C5DD;

    font-size: 14px;

    font-weight: 500;

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    .online-members-wrapper {

        padding: 20px 14px;

    }

    .online-members {

        gap: 10px;

        padding: 12px 18px;

        min-height: 52px;

    }

    .online-count {

        font-size: 18px;

    }

    .online-text {

        font-size: 11px;

    }

    .online-dot {

        width: 10px;

        height: 10px;

    }

}

/* Get Paid To Section */
.paid-activities {
    text-align: center;
    padding: 24px 20px 36px;
}

.paid-activities h2 {
    margin: 0 0 14px;
    color: #FFD447;
    font-family: var(--font-main);
    font-size: 44px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
}

.activity-slider {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#paidActivity {
    display: inline-block;
    color: #39D98A;
    font-family: var(--font-main);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    animation: activityFade 3s ease-in-out infinite;
}

@keyframes activityFade {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    15% {
        opacity: 1;
        transform: translateY(0);
    }

    75% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-12px);
    }
}

@media (max-width: 480px) {
    .paid-activities {
        padding: 20px 15px 30px;
    }

    .paid-activities h2 {
        font-size: 42px;
        letter-spacing: -0.7px;
    }

    #paidActivity {
        font-size: 25px;
        letter-spacing: -0.7px;
    }

    .activity-slider {
        min-height: 38px;
    }
}

/* Compact Premium Green Explanation Section */
.website-explanation {
    max-width: 850px;
    margin: 20px auto 30px;
    padding: 24px 28px 26px;
    background: linear-gradient(
        135deg,
        #063B2B 0%,
        #075D3C 50%,
        #06452F 100%
    );
    border: 1px solid #168052;
    border-radius: 20px;
    text-align: left;
    overflow: hidden;
}

.website-explanation p {
    max-width: 100%;
    margin: 0 auto 14px;
    color: #FFFFFF;
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.3px;
}

.website-explanation strong {
    color: #FFD447;
    font-weight: 700;
}

.website-explanation .explanation-highlight {
    margin-bottom: 0;
    color: #FFD447;
    font-weight: 400;
    line-height: 1.45;
}

/* Mobile */
@media (max-width: 480px) {
    .website-explanation {
        max-width: none;
        margin: 18px 15px 28px;
        padding: 20px 18px 22px;
        border-radius: 16px;
    }

    .website-explanation p {
        font-size: 16px;
        line-height: 1.55;
        letter-spacing: -0.2px;
        margin-bottom: 12px;
    }

    .website-explanation .explanation-highlight {
        font-size: 17px;
        line-height: 1.5;
    }
}

/* =========================
   PREMIUM ACTION BUTTONS
========================= */

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
    padding: 24px 15px 40px;
}

/* Shared button styling */
.start-earning-button,
.see-methods-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    padding: 0 24px;
    border-radius: 32px;
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 800;
    white-space: nowrap;
    flex: 0 1 auto;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

/* =========================
   START EARNING NOW BUTTON
========================= */

.start-earning-button {
    color: #FFFFFF;
    background: linear-gradient(
        135deg,
        #00D95F 0%,
        #00C853 50%,
        #00B84A 100%
    );
    border: 1px solid #00E66A;
    box-shadow: 0 0 0 0 rgba(0, 217, 95, 0.5);
    animation: buttonShake 4s ease-in-out infinite;
}

/* Green outward waves */
.start-earning-button::before,
.start-earning-button::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(0, 217, 95, 0.65);
    border-radius: inherit;
    pointer-events: none;
    animation: buttonWaves 2.8s ease-out infinite;
}

.start-earning-button::after {
    animation-delay: 1.4s;
}

/* =========================
   SEE ALL METHODS BUTTON
========================= */

.see-methods-button {
    color: #FFFFFF;
    background: transparent;
    border: 2px solid #59616C;
    animation: buttonShake 4s ease-in-out infinite;
    animation-delay: 1.2s;
}

/* Outward waves around outlined button */
.see-methods-button::before,
.see-methods-button::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(89, 97, 108, 0.7);
    border-radius: inherit;
    pointer-events: none;
    animation: buttonWaves 2.8s ease-out infinite;
    animation-delay: 0.7s;
}

.see-methods-button::after {
    animation-delay: 2.1s;
}

/* =========================
   BUTTON ICONS
========================= */

.rocket-icon {
    font-size: 25px;
    line-height: 1;
}

.down-arrow {
    font-size: 36px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    line-height: 0.5;
    transform: translateY(-3px);
}

/* =========================
   GENTLE SHAKING
========================= */

@keyframes buttonShake {
    0%, 85%, 100% {
        transform: translateX(0) rotate(0deg);
    }

    87% {
        transform: translateX(-2px) rotate(-0.6deg);
    }

    89% {
        transform: translateX(2px) rotate(0.6deg);
    }

    91% {
        transform: translateX(-2px) rotate(-0.4deg);
    }

    93% {
        transform: translateX(0) rotate(0deg);
    }
}

/* =========================
   OUTWARD WAVES
========================= */

@keyframes buttonWaves {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.16);
    }
}

/* =========================
   HOVER EFFECTS
========================= */

.start-earning-button:hover,
.see-methods-button:hover {
    transform: translateY(-3px);
}

.start-earning-button:hover {
    box-shadow: 0 8px 25px rgba(0, 217, 95, 0.25);
}

.see-methods-button:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.04);
}

/* =========================
   MOBILE — SAME ROW
========================= */

@media (max-width: 600px) {
    .hero-actions {
        gap: 8px;
        padding: 20px 10px 32px;
        flex-wrap: nowrap;
    }

    .start-earning-button,
    .see-methods-button {
        min-height: 50px;
        padding: 0 12px;
        gap: 5px;
        font-size: 12px;
        border-radius: 28px;
        flex: 1 1 0;
        min-width: 0;
    }

    .rocket-icon {
        font-size: 17px;
    }

    .down-arrow {
        font-size: 26px;
    }
}

/* =========================
   VERY SMALL PHONES
========================= */

@media (max-width: 360px) {
    .start-earning-button,
    .see-methods-button {
        padding: 0 8px;
        font-size: 10px;
    }

    .rocket-icon {
        font-size: 15px;
    }

    .down-arrow {
        font-size: 23px;
    }
}

/* =========================
   COMPACT JOINED EARNERS
========================= */

.joined-earners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    max-width: 900px;
    margin: 8px auto 30px;
    padding: 12px 15px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

/* Avatar circles */
.earner-avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-left: 5px;
}

.earner-avatar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-left: -10px;
    border: 3px solid #07142F;
    border-radius: 50%;
    color: #FFFFFF;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 12px rgba(142, 72, 255, 0.15);
    animation: avatarFloat 3.5s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.earner-avatar:first-child {
    margin-left: 0;
}

/* Maintain original circle colors */
.avatar-purple {
    background: linear-gradient(135deg, #7B3FF2, #9B5CFF);
    animation-delay: 0s;
}

.avatar-coral {
    background: linear-gradient(135deg, #FF5B73, #FF8A68);
    animation-delay: 0.2s;
}

.avatar-blue {
    background: linear-gradient(135deg, #2678E8, #4C9BFF);
    animation-delay: 0.4s;
}

.avatar-green {
    background: linear-gradient(135deg, #10C98A, #32E5A0);
    animation-delay: 0.6s;
}

.avatar-plus {
    background: linear-gradient(135deg, #7B3FF2, #B15CFF);
    animation-delay: 0.8s;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0;
}

/* Animated glowing rings */
.earner-avatar::before,
.earner-avatar::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(142, 72, 255, 0.45);
    border-radius: 50%;
    pointer-events: none;
    animation: avatarWaves 3s ease-out infinite;
}

.earner-avatar::after {
    animation-delay: 1.5s;
}

/* Text */
.joined-text {
    margin: 0;
    color: #FFFFFF;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.4px;
    white-space: nowrap;
}

.joined-text strong {
    color: #FFD447;
    font-weight: 700;
}

/* Gentle floating animation */
@keyframes avatarFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Outward waves */
@keyframes avatarWaves {
    0% {
        opacity: 0.65;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Hover */
.earner-avatar:hover {
    z-index: 5;
    transform: translateY(-6px) scale(1.08);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.18),
        0 0 22px rgba(142, 72, 255, 0.45);
}

/* =========================
   MOBILE — SAME ROW
========================= */

@media (max-width: 600px) {
    .joined-earners {
        gap: 10px;
        margin: 6px auto 24px;
        padding: 10px 8px;
        flex-wrap: nowrap;
    }

    .earner-avatars {
        padding-left: 3px;
    }

    .earner-avatar {
        width: 35px;
        height: 35px;
        margin-left: -8px;
        border-width: 2px;
        font-size: 11px;
    }

    .avatar-plus {
        font-size: 21px;
    }

    .joined-text {
        font-size: 13px;
        letter-spacing: -0.3px;
        white-space: nowrap;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .joined-earners {
        gap: 7px;
        padding: 8px 5px;
    }

    .earner-avatar {
        width: 30px;
        height: 30px;
        margin-left: -7px;
        font-size: 9px;
    }

    .avatar-plus {
        font-size: 18px;
    }

    .joined-text {
        font-size: 11px;
    }
}

/* =========================================
   CHAT WITH FOREIGNERS CARD
========================================= */

.chat-card {
    width: calc(100% - 30px);
    max-width: 920px;
    margin: 30px auto 24px;
    background: #0B1022;
    border: 1px solid rgba(57, 217, 138, 0.35);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

/* ---------- Card Header ---------- */

.chat-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 36px 34px;
    background: linear-gradient(
        135deg,
        #075D3C 0%,
        #08784A 50%,
        #06452F 100%
    );
    border-bottom: 1px solid rgba(57, 217, 138, 0.4);
}

.chat-title-area {
    display: flex;
    align-items: center;
    gap: 22px;
}

.chat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 36px;
}

.chat-eyebrow {
    display: block;
    margin-bottom: 6px;
    color: #FFD447;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.chat-card-header h2 {
    margin: 0;
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.chat-card-header p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-weight: 400;
}

/* ---------- Live Badge ---------- */

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    padding: 10px 18px;
    border: 1px solid rgba(255, 212, 71, 0.65);
    border-radius: 25px;
    color: #FFD447;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.live-dot,
.status-pulse,
.paid-pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #39D98A;
    box-shadow: 0 0 12px rgba(57, 217, 138, 0.9);
    animation: livePulse 1.8s ease-in-out infinite;
}

/* ---------- Card Body ---------- */

.chat-card-body {
    padding: 26px 34px 24px;
    background: #0B1022;
}

/* ---------- People Count ---------- */

.chat-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.chat-people-count {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #A9B6C9;
    font-size: 16px;
}

.chat-people-count strong {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}

.chat-status-badges {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-now-badge,
.popular-badge {
    padding: 10px 16px;
    border-radius: 22px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.live-now-badge {
    border: 1px solid rgba(57, 217, 138, 0.6);
    color: #39D98A;
}

.popular-badge {
    border: 1px solid rgba(168, 102, 255, 0.55);
    color: #C99BFF;
}

/* ---------- People Row ---------- */

.chat-people-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 28px;
}

.chat-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #A9B6C9;
    font-size: 14px;
    font-weight: 700;
}

.country-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border: 2px solid #8B4DFF;
    border-radius: 50%;
    background: #10152A;
    font-size: 34px;
    box-shadow: 0 0 0 4px rgba(139, 77, 255, 0.05);
    animation: avatarFloat 4s ease-in-out infinite;
}

.chat-person:nth-child(2) .country-avatar {
    border-color: #C05CFF;
    animation-delay: 0.3s;
}

.chat-person:nth-child(3) .country-avatar {
    border-color: #FF4F9A;
    animation-delay: 0.6s;
}

.chat-person:nth-child(4) .country-avatar {
    border-color: #6D4DFF;
    animation-delay: 0.9s;
}

.chat-person:nth-child(5) .country-avatar {
    border-color: #FF4F9A;
    animation-delay: 1.2s;
}

.chat-person:nth-child(6) .country-avatar {
    border-color: #C05CFF;
    animation-delay: 1.5s;
}

/* ---------- Chat Messages ---------- */

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
}

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.message-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border: 1px solid #8B4DFF;
    border-radius: 50%;
    background: #10152A;
    font-size: 24px;
}

.message-content {
    flex: 1;
    min-width: 0;
}

.message-name {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 800;
}

.message-name span {
    color: #7C8497;
    font-size: 12px;
    font-weight: 400;
}

.message-bubble {
    display: inline-block;
    max-width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(139, 77, 255, 0.35);
    border-radius: 16px;
    background: #15142A;
    color: #C2C7D3;
    font-size: 15px;
    line-height: 1.5;
}

.message-reward {
    flex-shrink: 0;
    padding: 10px 13px;
    border: 1px solid rgba(210, 255, 71, 0.45);
    border-radius: 20px;
    color: #D2FF47;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: opacity 0.4s ease;
}

/* ---------- Card Footer ---------- */

.chat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.just-paid {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #A9B6C9;
    font-size: 15px;
}

.just-paid strong {
    color: #D2FF47;
    font-weight: 900;
    transition: opacity 0.4s ease;
}

/* ---------- Chat Now Button ---------- */

.chat-now-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 0 28px;
    border: 1px solid #39D98A;
    border-radius: 30px;
    background: linear-gradient(
        100deg,
        #39D98A 0%,
        #27D87A 100%
    );
    color: #07142F;
    font-size: 17px;
    font-weight: 900;
    white-space: nowrap;
    text-decoration: none;
    animation: chatNowBounce 3.5s ease-in-out infinite;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.chat-now-button::before,
.chat-now-button::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(57, 217, 138, 0.65);
    border-radius: inherit;
    pointer-events: none;
    animation: chatButtonWaves 2.8s ease-out infinite;
}

.chat-now-button::after {
    animation-delay: 1.4s;
}

.chat-now-button span {
    font-size: 24px;
    line-height: 1;
}

.chat-now-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(57, 217, 138, 0.3);
}

/* ---------- Bottom Features ---------- */

.chat-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    color: #7C8497;
    font-size: 12px;
    font-weight: 500;
    flex-wrap: wrap;
}

/* =========================
   SMALLER REGISTER BUTTON
========================= */

.register-chat-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 8px auto 35px;
    padding: 0 15px;
}

.register-chat-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: auto;
    max-width: 100%;
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid #FFD447;
    border-radius: 30px;
    background: linear-gradient(
        100deg,
        #39D98A 0%,
        #8FE36B 45%,
        #FFD447 100%
    );
    color: #07142F;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.4px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow:
        0 0 0 3px rgba(57, 217, 138, 0.08),
        0 6px 18px rgba(57, 217, 138, 0.12);
    animation: registerBounce 4s ease-in-out infinite;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.register-chat-button::before,
.register-chat-button::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(255, 212, 71, 0.6);
    border-radius: inherit;
    pointer-events: none;
    animation: registerWaves 3.2s ease-out infinite;
}

.register-chat-button::after {
    animation-delay: 1.6s;
}

.register-chat-button span {
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
}

.register-chat-button:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 0 4px rgba(255, 212, 71, 0.1),
        0 10px 24px rgba(57, 217, 138, 0.25);
}

/* Keep the animation */
@keyframes registerBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes registerWaves {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.16);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .register-chat-wrapper {
        margin: 8px auto 28px;
        padding: 0 15px;
    }

    .register-chat-button {
        width: auto;
        min-height: 48px;
        gap: 10px;
        padding: 0 20px;
        border-radius: 26px;
        font-size: 15px;
    }

    .register-chat-button span {
        font-size: 22px;
    }
}

@media (max-width: 360px) {
    .register-chat-button {
        min-height: 45px;
        gap: 8px;
        padding: 0 16px;
        font-size: 14px;
    }

    .register-chat-button span {
        font-size: 20px;
    }
}
/* =========================================
   ANIMATIONS
========================================= */

@keyframes livePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.55;
    }
}

@keyframes avatarFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes chatNowBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes chatButtonWaves {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.18);
    }
}

@keyframes registerBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes registerWaves {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.16);
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 600px) {

    .chat-card {
        width: calc(100% - 20px);
        margin: 24px auto 20px;
        border-radius: 20px;
    }

    .chat-card-header {
        padding: 22px 18px;
        gap: 12px;
    }

    .chat-title-area {
        gap: 12px;
    }

    .chat-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 25px;
    }

    .chat-eyebrow {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .chat-card-header h2 {
        font-size: 21px;
        letter-spacing: -0.7px;
    }

    .chat-card-header p {
        margin-top: 5px;
        font-size: 11px;
    }

    .live-badge {
        padding: 7px 10px;
        gap: 5px;
        font-size: 10px;
        letter-spacing: 0.8px;
    }

    .chat-card-body {
        padding: 20px 16px;
    }

    .chat-status-row {
        gap: 10px;
        margin-bottom: 20px;
    }

    .chat-people-count {
        gap: 7px;
        font-size: 11px;
    }

    .chat-people-count strong {
        font-size: 21px;
    }

    .chat-status-badges {
        gap: 5px;
    }

    .live-now-badge,
    .popular-badge {
        padding: 7px 8px;
        font-size: 9px;
        letter-spacing: 0.3px;
    }

    .chat-people-list {
        gap: 6px;
        margin-bottom: 22px;
    }

    .chat-person {
        gap: 5px;
        font-size: 10px;
    }

    .country-avatar {
        width: 43px;
        height: 43px;
        font-size: 22px;
    }

    .chat-messages {
        gap: 14px;
        padding-top: 18px;
    }

    .chat-message {
        gap: 8px;
    }

    .message-avatar {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .message-name {
        gap: 7px;
        margin-bottom: 5px;
        font-size: 12px;
    }

    .message-name span {
        font-size: 9px;
    }

    .message-bubble {
        padding: 10px 12px;
        border-radius: 12px;
        font-size: 11px;
    }

    .message-reward {
        padding: 7px 8px;
        font-size: 9px;
        border-radius: 15px;
    }

    .chat-card-footer {
        gap: 10px;
        margin-top: 20px;
        padding-top: 18px;
    }

    .just-paid {
        gap: 6px;
        font-size: 11px;
    }

    .just-paid strong {
        font-size: 11px;
    }

    .chat-now-button {
        min-height: 44px;
        padding: 0 15px;
        gap: 8px;
        border-radius: 25px;
        font-size: 13px;
    }

    .chat-now-button span {
        font-size: 18px;
    }

    .chat-features {
        gap: 10px;
        margin-top: 18px;
        font-size: 9px;
    }

    .register-chat-wrapper {
        margin: 8px auto 32px;
        padding: 0 15px;
    }

    .register-chat-button {
        min-height: 58px;
        gap: 14px;
        padding: 0 22px;
        border-radius: 30px;
        font-size: 19px;
    }

    .register-chat-button span {
        font-size: 28px;
    }
}

/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 360px) {

    .chat-card-header h2 {
        font-size: 18px;
    }

    .chat-card-header p {
        font-size: 10px;
    }

    .live-badge {
        padding: 6px 8px;
        font-size: 9px;
    }

    .country-avatar {
        width: 37px;
        height: 37px;
        font-size: 19px;
    }

    .chat-person {
        font-size: 9px;
    }

    .message-reward {
        font-size: 8px;
        padding: 6px;
    }

    .chat-now-button {
        padding: 0 11px;
        font-size: 11px;
    }

    .register-chat-button {
        min-height: 52px;
        gap: 10px;
        padding: 0 16px;
        font-size: 16px;
    }

    .register-chat-button span {
        font-size: 24px;
    }
}

/* ================================
   COMPACT CHAT CARD
================================ */

.chat-card {
    border-radius: 20px;
    margin: 18px auto 12px;
}

.chat-card-header {
    padding: 16px 20px;
    min-height: auto;
}

.chat-title-area {
    gap: 10px;
}

.chat-icon {
    width: 38px;
    height: 38px;
    font-size: 20px;
}

.chat-eyebrow {
    font-size: 9px;
    letter-spacing: 1px;
}

.chat-card-header h2 {
    font-size: 22px;
    line-height: 1.15;
    margin: 2px 0;
}

.chat-card-header p {
    font-size: 11px;
    line-height: 1.2;
    margin: 0;
}

.live-badge {
    padding: 5px 8px;
    font-size: 9px;
}

/* Card body */
.chat-card-body {
    padding: 22px 18px;
}

/* People count row */
.chat-status-row {
    gap: 8px;
    margin-bottom: 12px;
}

.chat-people-count {
    gap: 5px;
    font-size: 10px;
}

.chat-people-count strong {
    font-size: 17px;
}

.chat-status-badges {
    gap: 5px;
}

.live-now-badge,
.popular-badge {
    padding: 4px 6px;
    font-size: 8px;
}

/* Smaller people avatars */
.chat-people-list {
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 2px;
}

.chat-person {
    gap: 3px;
    font-size: 9px;
}

.country-avatar {
    width: 30px;
    height: 30px;
    font-size: 17px;
}

/* Reduce message section height */
.chat-messages {
    gap: 8px;
    max-height: 270px;
    overflow: hidden;
    margin-bottom: 12px;
}

.chat-message {
    gap: 7px;
    align-items: flex-start;
}

.message-avatar {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 15px;
}

.message-content {
    gap: 3px;
    min-width: 0;
}

.message-name {
    font-size: 10px;
    line-height: 1.1;
}

.message-name span {
    font-size: 8px;
}

.message-bubble {
    padding: 7px 9px;
    border-radius: 10px;
    font-size: 10px;
    line-height: 1.25;
}

.message-reward {
    font-size: 9px;
    white-space: nowrap;
}

/* Footer */
.chat-card-footer {
    gap: 10px;
    padding-top: 10px;
    margin-top: 4px;
}

.just-paid {
    gap: 4px;
    font-size: 9px;
}

.just-paid strong {
    font-size: 10px;
}

.chat-now-button {
    min-height: 38px;
    padding: 0 15px;
    border-radius: 20px;
    font-size: 11px;
    gap: 7px;
}

.chat-now-button span {
    font-size: 17px;
}

/* Bottom features */
.chat-features {
    gap: 8px;
    margin-top: 10px;
    padding-top: 9px;
    font-size: 8px;
    line-height: 1.2;
}

/* Mobile compact version */
@media (max-width: 600px) {
    .chat-card-header {
        padding: 13px 14px;
    }

    .chat-card-body {
        padding: 12px 14px;
    }

    .chat-card-header h2 {
        font-size: 18px;
    }

    .chat-card-header p {
        font-size: 10px;
    }

    .chat-eyebrow {
        font-size: 8px;
    }

    .chat-messages {
    max-height: 235px;
}

    .message-bubble {
        font-size: 9px;
        padding: 6px 8px;
    }

    .message-reward {
        font-size: 8px;
    }

    .chat-features {
        font-size: 7px;
        gap: 5px;
    }
}

/* ================================
   INCOME STREAMS SECTION
================================ */

.income-streams-section {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 35px auto 0;
    padding: 70px 25px 75px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 35%,
            rgba(35, 73, 145, 0.22) 0%,
            rgba(7, 20, 47, 0.05) 42%,
            transparent 75%),
        linear-gradient(135deg, #07142F 0%, #0B1B3D 52%, #07142F 100%);
    border-top: 1px solid rgba(57, 217, 138, 0.16);
    border-bottom: 1px solid rgba(57, 217, 138, 0.12);
}

/* Soft decorative glow */
.income-streams-section::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    width: 260px;
    height: 260px;
    transform: translateX(-50%);
    background: rgba(57, 217, 138, 0.06);
    border-radius: 50%;
    filter: blur(55px);
    pointer-events: none;
}

.income-streams-label {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 42px;
    color: #39D98A;
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 7px;
    line-height: 1;
}

.income-streams-dot {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #39D98A;
    box-shadow:
        0 0 12px rgba(57, 217, 138, 0.8),
        0 0 28px rgba(57, 217, 138, 0.45);
    animation: incomeDotPulse 2.5s ease-in-out infinite;
}

.income-streams-dot::before,
.income-streams-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(57, 217, 138, 0.55);
    border-radius: 50%;
    animation: incomeDotWave 2.8s ease-out infinite;
}

.income-streams-dot::after {
    animation-delay: 1.4s;
}

.income-streams-section h2 {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    color: #FFFFFF;
    font-family: var(--font-main);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 1.03;
}

.income-streams-section h2 span {
    display: block;
    margin-top: 8px;
    background: linear-gradient(
        100deg,
        #8B4DFF 0%,
        #B84DFF 45%,
        #F04FA8 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.income-streams-section p {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 55px auto 0;
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--font-main);
    font-size: clamp(20px, 2.4vw, 34px);
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.55;
}

/* Animations */
@keyframes incomeDotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 12px rgba(57, 217, 138, 0.8),
            0 0 28px rgba(57, 217, 138, 0.45);
    }

    50% {
        transform: scale(1.08);
        box-shadow:
            0 0 18px rgba(57, 217, 138, 0.95),
            0 0 38px rgba(57, 217, 138, 0.55);
    }
}

@keyframes incomeDotWave {
    0% {
        opacity: 0.65;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .income-streams-section {
        margin-top: 25px;
        padding: 52px 20px 58px;
    }

    .income-streams-label {
        margin-bottom: 30px;
        font-size: 15px;
        letter-spacing: 4px;
        gap: 10px;
    }

    .income-streams-dot {
        width: 23px;
        height: 23px;
    }

    .income-streams-section h2 {
        font-size: clamp(38px, 8vw, 62px);
        letter-spacing: -2.5px;
    }

    .income-streams-section p {
        margin-top: 35px;
        font-size: 20px;
        letter-spacing: -0.5px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .income-streams-section {
        margin-top: 20px;
        padding: 42px 15px 48px;
    }

    .income-streams-label {
        margin-bottom: 27px;
        font-size: 12px;
        letter-spacing: 3px;
        gap: 8px;
    }

    .income-streams-dot {
        width: 18px;
        height: 18px;
    }

    .income-streams-section h2 {
        font-size: 42px;
        letter-spacing: -2px;
        line-height: 1.05;
    }

    .income-streams-section h2 span {
        margin-top: 5px;
    }

    .income-streams-section p {
        margin-top: 30px;
        font-size: 17px;
        letter-spacing: -0.4px;
        line-height: 1.55;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .income-streams-section {
        padding: 36px 12px 42px;
    }

    .income-streams-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .income-streams-dot {
        width: 15px;
        height: 15px;
    }

    .income-streams-section h2 {
        font-size: 35px;
        letter-spacing: -1.5px;
    }

    .income-streams-section p {
        font-size: 15px;
    }
}

/* ================================
   REDUCED INCOME STREAMS SPACING
================================ */

.income-streams-section {
    margin-top: 18px;
    padding: 38px 20px 42px;
}

.income-streams-label {
    margin-bottom: 22px;
}

.income-streams-section h2 {
    line-height: 1;
}

.income-streams-section h2 span {
    margin-top: 4px;
}

.income-streams-section p {
    margin-top: 24px;
    line-height: 1.35;
}

/* Tablet */
@media (max-width: 768px) {
    .income-streams-section {
        margin-top: 15px;
        padding: 32px 18px 36px;
    }

    .income-streams-label {
        margin-bottom: 20px;
    }

    .income-streams-section p {
        margin-top: 22px;
        line-height: 1.4;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .income-streams-section {
        margin-top: 12px;
        padding: 28px 14px 32px;
    }

    .income-streams-label {
        margin-bottom: 18px;
    }

    .income-streams-section p {
        margin-top: 20px;
        line-height: 1.35;
    }
}

/* ==========================================
   EARNING CARDS SECTION
========================================== */

.earning-section {
    width: 100%;
    max-width: 920px;
    margin: 35px auto 0;
    padding: 0 15px;
}


/* ==========================================
   WELCOME BONUS CARD
========================================== */

.earning-card {
    position: relative;
    width: 100%;
    padding: 26px 30px 24px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(57, 217, 138, 0.10),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #07142F 0%,
            #0A1C3F 55%,
            #07142F 100%
        );

    border: 1px solid rgba(57, 217, 138, 0.45);
    border-radius: 24px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.25),
        inset 0 0 35px rgba(57, 217, 138, 0.025);
}


/* Subtle animated glow */

.earning-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: -100px;
    right: -80px;

    background: rgba(57, 217, 138, 0.08);

    border-radius: 50%;
    filter: blur(55px);

    pointer-events: none;
}


/* ==========================================
   TOP ROW
========================================== */

.earning-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
    margin-bottom: 15px;
}


.live-bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    border: 1px solid rgba(57, 217, 138, 0.7);
    border-radius: 30px;

    background: rgba(57, 217, 138, 0.12);

    color: #FFFFFF;

    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;

    box-shadow:
        0 0 15px rgba(57, 217, 138, 0.12);

    animation: liveBonusGlow 2.5s ease-in-out infinite;
}


.live-bonus-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 8px rgba(57, 217, 138, 0.9);

    animation: liveDotPulse 1.5s ease-in-out infinite;
}


.new-users-badge {
    padding: 8px 13px;

    border: 1px solid rgba(255, 212, 71, 0.7);
    border-radius: 30px;

    background: rgba(255, 212, 71, 0.08);

    color: #FFD447;

    font-family: var(--font-main);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;

    white-space: nowrap;
}


/* ==========================================
   BONUS VISUAL
========================================== */

.bonus-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 125px;

    margin: 0 auto 8px;
}


.bonus-gift {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 105px;
    height: 105px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #FFD447,
            #FFB300,
            #F57C00
        );

    font-size: 62px;

    box-shadow:
        0 0 25px rgba(255, 212, 71, 0.5),
        0 0 55px rgba(255, 180, 0, 0.2);

    animation: giftFloat 3s ease-in-out infinite;
}


/* Amount */

.bonus-amount {
    position: absolute;

    left: 50%;
    bottom: 2px;

    transform: translateX(-50%);

    padding: 8px 22px;

    border: 2px solid #FFD447;
    border-radius: 12px;

    background: #07142F;

    color: #FFD447;

    font-family: var(--font-main);
    font-size: 27px;
    font-weight: 900;

    white-space: nowrap;

    box-shadow:
        0 0 18px rgba(255, 212, 71, 0.25);
}


/* Floating coins */

.floating-coin {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #FFD447;

    color: #8A5A00;

    font-size: 12px;
    font-weight: 900;

    box-shadow:
        0 0 15px rgba(255, 212, 71, 0.5);

    animation: coinFloat 3s ease-in-out infinite;
}


.coin-one {
    left: 28%;
    top: 18px;
}

.coin-two {
    right: 27%;
    top: 5px;
    animation-delay: .8s;
}

.coin-three {
    right: 31%;
    bottom: 25px;
    animation-delay: 1.5s;
}


/* ==========================================
   CARD CONTENT
========================================== */

.earning-card-content {
    position: relative;
    z-index: 2;

    text-align: center;
}


.earning-card-content h2 {
    margin: 0;

    color: #FFFFFF;

    font-family: var(--font-main);
    font-size: 38px;
    font-weight: 900;

    letter-spacing: -1.5px;
    line-height: 1.05;
}


.earning-card-content h2 span {
    color: #FFD447;
}


.earning-card-content p {
    max-width: 600px;

    margin: 10px auto 0;

    color: rgba(255, 255, 255, 0.72);

    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 400;

    line-height: 1.4;
}


.earning-card-content p strong {
    color: #39D98A;
    font-weight: 900;
}


/* ==========================================
   BENEFITS
========================================== */

.bonus-benefits {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 8px;

    margin: 18px 0;
}


.bonus-benefit {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 58px;
    padding: 7px;

    border: 1px solid rgba(57, 217, 138, 0.18);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.025);

    color: rgba(255, 255, 255, 0.85);

    font-family: var(--font-main);
    font-size: 9px;
    font-weight: 700;

    line-height: 1.2;
}


.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(57, 217, 138, 0.1);

    color: #39D98A;

    font-size: 16px;
}


/* ==========================================
   REGISTER BUTTON
========================================== */

.earning-register-button {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    width: min(100%, 400px);
    min-height: 52px;

    margin: 0 auto;

    padding: 0 22px;

    border: 2px solid #FFD447;
    border-radius: 30px;

    background:
        linear-gradient(
            100deg,
            #39D98A 0%,
            #8FE36B 48%,
            #FFD447 100%
        );

    color: #07142F;

    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 900;

    text-decoration: none;

    box-shadow:
        0 0 0 3px rgba(57, 217, 138, 0.08),
        0 7px 22px rgba(57, 217, 138, 0.2);

    animation: earningButtonFloat 3s ease-in-out infinite;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.earning-register-button:hover {
    transform: translateY(-4px) scale(1.01);

    box-shadow:
        0 0 0 5px rgba(255, 212, 71, 0.08),
        0 12px 30px rgba(57, 217, 138, 0.3);
}


.earning-register-button::before,
.earning-register-button::after {
    content: "";

    position: absolute;
    inset: -6px;

    border: 1px solid rgba(255, 212, 71, 0.55);

    border-radius: inherit;

    pointer-events: none;

    animation: earningButtonWave 3s ease-out infinite;
}


.earning-register-button::after {
    animation-delay: 1.5s;
}


.register-user-icon {
    font-size: 20px;
}


.register-arrow {
    font-size: 25px;
    font-weight: 500;
}


/* ==========================================
   TRUST TEXT
========================================== */

.earning-trust {
    position: relative;
    z-index: 2;

    margin-top: 12px;

    text-align: center;

    color: rgba(255, 255, 255, 0.55);

    font-family: var(--font-main);
    font-size: 10px;
    font-weight: 500;
}


/* ==========================================
   STAR SEPARATOR
========================================== */

.earning-separator {
    display: flex;
    align-items: center;

    width: 100%;

    margin: 25px auto;

    gap: 14px;
}


.separator-line {
    height: 1px;
    flex: 1;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(57, 217, 138, 0.7),
        rgba(255, 212, 71, 0.35)
    );
}


.separator-line.right {
    background: linear-gradient(
        90deg,
        rgba(255, 212, 71, 0.35),
        rgba(57, 217, 138, 0.7),
        transparent
    );
}


.separator-star {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    color: #FFD447;

    font-size: 22px;

    text-shadow:
        0 0 8px rgba(255, 212, 71, 0.8),
        0 0 20px rgba(255, 212, 71, 0.5);

    animation: separatorStarPulse 2s ease-in-out infinite;
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes liveBonusGlow {
    0%, 100% {
        box-shadow: 0 0 12px rgba(57, 217, 138, 0.1);
    }

    50% {
        box-shadow: 0 0 25px rgba(57, 217, 138, 0.35);
    }
}


@keyframes liveDotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: .7;
    }
}


@keyframes giftFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-7px) rotate(-2deg);
    }
}


@keyframes coinFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(15deg);
    }
}


@keyframes earningButtonFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


@keyframes earningButtonWave {
    0% {
        opacity: .7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}


@keyframes separatorStarPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: .85;
    }

    50% {
        transform: scale(1.25) rotate(8deg);
        opacity: 1;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .earning-section {
        margin-top: 25px;
        padding: 0 12px;
    }

    .earning-card {
        padding: 18px 15px 18px;
        border-radius: 20px;
    }

    .earning-card-top {
        margin-bottom: 10px;
    }

    .live-bonus-badge {
        padding: 6px 10px;
        font-size: 9px;
        letter-spacing: 1px;
    }

    .live-bonus-dot {
        width: 8px;
        height: 8px;
    }

    .new-users-badge {
        padding: 6px 9px;
        font-size: 8px;
    }

    .bonus-visual {
        height: 105px;
    }

    .bonus-gift {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        font-size: 46px;
    }

    .bonus-amount {
        bottom: 0;
        padding: 6px 16px;
        font-size: 21px;
        border-radius: 10px;
    }

    .floating-coin {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }

    .earning-card-content h2 {
        font-size: 29px;
    }

    .earning-card-content p {
        margin-top: 7px;
        font-size: 12px;
    }

    .bonus-benefits {
        gap: 5px;
        margin: 13px 0;
    }

    .bonus-benefit {
        flex-direction: column;
        gap: 4px;
        min-height: 60px;
        padding: 5px 3px;
        font-size: 7px;
        text-align: center;
    }

    .benefit-icon {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .earning-register-button {
    width: min(100%, 300px);
    min-height: 47px;
    padding: 0 18px;
    font-size: 14px;
    gap: 8px;
}

    .register-user-icon {
        font-size: 17px;
    }

    .register-arrow {
        font-size: 21px;
    }

    .earning-trust {
        margin-top: 9px;
        font-size: 8px;
    }

    .earning-separator {
        margin: 20px auto;
        gap: 10px;
    }

    .separator-star {
        width: 25px;
        height: 25px;
        font-size: 18px;
    }
}


/* ==========================================
   VERY SMALL PHONES
========================================== */

@media (max-width: 360px) {

    .earning-card {
        padding: 16px 11px;
    }

    .new-users-badge {
        font-size: 7px;
        padding: 5px 7px;
    }

    .earning-card-content h2 {
        font-size: 26px;
    }

    .earning-card-content p {
        font-size: 11px;
    }

    .bonus-benefit {
        font-size: 6.5px;
    }

    .earning-register-button {
        min-height: 44px;
        font-size: 13px;
    }
}

/* Extra button attention animation */

.register-attention {
    animation:
        earningButtonShake .7s ease-in-out,
        earningButtonFloat 3s ease-in-out infinite;
}

.bonus-flash {
    transform: scale(1.04);
}

@keyframes earningButtonShake {

    0%, 100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-3px);
    }

    40% {
        transform: translateX(3px);
    }

    60% {
        transform: translateX(-2px);
    }

    80% {
        transform: translateX(2px);
    }
}

/* ==========================================
   INCOME STREAM 02
   WATCH VIDEOS & EARN
========================================== */

.video-earning-section {
    margin-top: 0;
}


/* ==========================================
   VIDEO CARD
========================================== */

.video-earning-card {
    padding: 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 55, 130, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #07142F 0%,
            #160B29 55%,
            #07142F 100%
        );

    border-color: rgba(255, 67, 140, 0.45);
}


/* ==========================================
   HEADER
========================================== */

.video-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 25px 30px;

    background:
        linear-gradient(
            135deg,
            #65163F 0%,
            #9A1455 50%,
            #5A123E 100%
        );

    border-bottom: 1px solid rgba(255, 65, 135, 0.45);
}


.video-title-area {
    display: flex;
    align-items: center;
    gap: 20px;
}


.video-main-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 68px;
    height: 68px;

    flex-shrink: 0;

    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #FF176D,
        #FF3D91
    );

    color: #FFFFFF;

    font-size: 30px;

    box-shadow:
        0 0 22px rgba(255, 30, 110, 0.35);

    animation: videoIconPulse 3s ease-in-out infinite;
}


.video-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #FF8FB9;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
}


.video-card-header h2 {
    margin: 0;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 32px;
    font-weight: 900;

    line-height: 1.1;

    letter-spacing: -1px;
}


.video-card-header p {
    margin: 6px 0 0;

    color: rgba(255, 255, 255, 0.7);

    font-family: var(--font-main);

    font-size: 14px;

    line-height: 1.3;
}


/* ==========================================
   LIVE BADGE
========================================== */

.video-live-badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border: 1px solid rgba(255, 80, 145, 0.7);

    border-radius: 30px;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    white-space: nowrap;

    background: rgba(255, 50, 125, 0.08);
}


.video-live-badge span {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #FF3D78;

    box-shadow:
        0 0 10px rgba(255, 61, 120, 0.9);

    animation: videoLivePulse 1.5s infinite;
}


/* ==========================================
   CARD BODY
========================================== */

.video-card-body {
    padding: 24px 30px 26px;
}


/* ==========================================
   PLATFORMS
========================================== */

.video-platforms {
    display: flex;
    gap: 10px;

    margin-bottom: 22px;
}


.video-platforms span {
    padding: 7px 16px;

    border-radius: 25px;

    font-family: var(--font-main);

    font-size: 12px;
    font-weight: 900;
}


.platform-tiktok {
    color: #FF7BAC;

    border: 1px solid rgba(255, 65, 135, 0.5);

    background: rgba(255, 65, 135, 0.07);
}


.platform-youtube {
    color: #FF8C8C;

    border: 1px solid rgba(255, 70, 70, 0.5);

    background: rgba(255, 70, 70, 0.07);
}


/* ==========================================
   VIEWERS
========================================== */

.video-viewers-row {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: rgba(255, 255, 255, 0.58);

    font-family: var(--font-main);

    font-size: 15px;
}


.video-viewers-row strong {
    color: #FFFFFF;

    font-size: 28px;
    font-weight: 900;

    letter-spacing: -1px;
}


.watching-dot {
    width: 13px;
    height: 13px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 12px rgba(57, 217, 138, 0.8);

    animation: watchingPulse 1.5s infinite;
}


/* ==========================================
   CURRENT VIDEO
========================================== */

.current-video-card {
    display: grid;

    grid-template-columns: 210px 1fr auto;

    align-items: center;

    gap: 22px;

    padding: 18px;

    border: 1px solid rgba(255, 70, 140, 0.2);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 50, 130, 0.08),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow:
        inset 0 0 25px rgba(255, 40, 120, 0.025);
}


/* Video preview */

.video-preview {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 125px;

    overflow: hidden;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #9A1455,
            #E63283,
            #431337
        );

    box-shadow:
        0 0 20px rgba(255, 45, 130, 0.18);
}


.video-preview::after {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            120deg,
            transparent 30%,
            rgba(255,255,255,.12) 50%,
            transparent 70%
        );

    transform: translateX(-100%);

    animation: videoShimmer 3s infinite;
}


.video-live-label {
    position: absolute;

    top: 10px;
    left: 10px;

    z-index: 2;

    padding: 6px 9px;

    border-radius: 7px;

    background: #FF337C;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .5px;
}


.video-play-circle {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: rgba(255,255,255,.18);

    color: #FFFFFF;

    font-size: 22px;

    backdrop-filter: blur(5px);

    animation: playPulse 2s infinite;
}


/* ==========================================
   VIDEO INFORMATION
========================================== */

.video-info {
    min-width: 0;
}


.video-platform-name {
    margin-bottom: 5px;

    color: #FF70A5;

    font-family: var(--font-main);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;
}


.video-info h3 {
    margin: 0 0 13px;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 20px;
    font-weight: 800;

    line-height: 1.2;
}


.video-progress {
    width: 100%;
    height: 7px;

    overflow: hidden;

    border-radius: 10px;

    background: rgba(255,255,255,.1);
}


.video-progress-bar {
    width: 35%;
    height: 100%;

    border-radius: inherit;

    background: linear-gradient(
        90deg,
        #FF3D87,
        #FF75AA
    );

    box-shadow:
        0 0 10px rgba(255, 61, 135, 0.45);

    transition: width 1s linear;
}


.video-progress-info {
    display: flex;
    justify-content: space-between;

    margin-top: 7px;

    color: rgba(255,255,255,.38);

    font-family: var(--font-main);

    font-size: 10px;
}


/* ==========================================
   EARNED AMOUNT
========================================== */

.video-earned {
    text-align: right;

    min-width: 135px;
}


.video-earned span {
    display: block;

    margin-bottom: 6px;

    color: rgba(255,255,255,.4);

    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}


.video-earned strong {
    color: #D2FF47;

    font-family: var(--font-main);

    font-size: 23px;
    font-weight: 900;

    white-space: nowrap;

    text-shadow:
        0 0 12px rgba(210,255,71,.25);
}


/* ==========================================
   RECENT EARNING
========================================== */

.video-recent-earning {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 20px;

    padding: 13px 17px;

    border: 1px solid rgba(130, 190, 70, 0.3);

    border-radius: 15px;

    background: rgba(120, 180, 50, 0.035);

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 13px;
}


.recent-earning-left {
    display: flex;
    align-items: center;
    gap: 10px;
}


.recent-pulse {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 10px rgba(57,217,138,.8);

    animation: watchingPulse 1.5s infinite;
}


.video-recent-earning strong {
    color: #D2FF47;

    font-size: 16px;
    font-weight: 900;
}


/* ==========================================
   BOTTOM ROW
========================================== */

.video-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 22px;
}


.video-task-count {
    color: rgba(255,255,255,.48);

    font-family: var(--font-main);

    font-size: 13px;
}


.video-task-count strong {
    margin-left: 8px;

    color: #FFFFFF;

    font-size: 22px;
    font-weight: 900;
}


/* ==========================================
   WATCH NOW BUTTON
========================================== */

.watch-now-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 170px;
    min-height: 48px;

    padding: 0 20px;

    border: 0;

    border-radius: 30px;

    background:
        linear-gradient(
            100deg,
            #FF3D7F,
            #F32B91
        );

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 15px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 8px 22px rgba(255, 45, 125, .22);

    animation: watchButtonFloat 3s ease-in-out infinite;

    transition: transform .25s ease;
}


.watch-now-button:hover {
    transform: translateY(-4px) scale(1.02);
}


.watch-now-button::before,
.watch-now-button::after {
    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid rgba(255, 70, 140, .5);

    border-radius: inherit;

    pointer-events: none;

    animation: watchButtonWave 3s ease-out infinite;
}


.watch-now-button::after {
    animation-delay: 1.5s;
}


/* ==========================================
   REGISTER BUTTON
========================================== */

.video-register-button {
    background:
        linear-gradient(
            100deg,
            #FF347E 0%,
            #FF4D9B 50%,
            #D82B87 100%
        );

    border-color: #FF78B6;

    color: #FFFFFF;

    box-shadow:
        0 0 0 3px rgba(255, 70, 145, .08),
        0 8px 24px rgba(255, 45, 130, .22);
}


.video-register-button::before,
.video-register-button::after {
    border-color: rgba(255, 100, 170, .55);
}


.earning-register-wrapper {
    text-align: center;

    margin-top: 18px;
}


.earning-register-note {
    margin: 8px 0 0;

    color: rgba(255,255,255,.45);

    font-family: var(--font-main);

    font-size: 10px;
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes videoIconPulse {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}


@keyframes videoLivePulse {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .55;
    }
}


@keyframes watchingPulse {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .6;
    }
}


@keyframes videoShimmer {
    0% {
        transform: translateX(-100%);
    }

    45%,100% {
        transform: translateX(100%);
    }
}


@keyframes playPulse {
    0%,100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,255,255,.2);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 10px rgba(255,255,255,.04);
    }
}


@keyframes watchButtonFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


@keyframes watchButtonWave {
    0% {
        opacity: .7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .video-card-header {
        padding: 18px 15px;
        gap: 10px;
    }

    .video-title-area {
        gap: 11px;
    }

    .video-main-icon {
        width: 46px;
        height: 46px;
        border-radius: 13px;
        font-size: 21px;
    }

    .video-eyebrow {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .video-card-header h2 {
        font-size: 19px;
        letter-spacing: -.5px;
    }

    .video-card-header p {
        margin-top: 4px;
        font-size: 9px;
    }

    .video-live-badge {
        padding: 6px 8px;
        font-size: 8px;
        letter-spacing: 1px;
    }

    .video-live-badge span {
        width: 7px;
        height: 7px;
    }


    .video-card-body {
        padding: 15px 14px 18px;
    }


    .video-platforms {
        gap: 7px;
        margin-bottom: 14px;
    }

    .video-platforms span {
        padding: 5px 11px;
        font-size: 9px;
    }


    .video-viewers-row {
        gap: 7px;
        margin-bottom: 14px;
        font-size: 10px;
    }

    .video-viewers-row strong {
        font-size: 21px;
    }

    .watching-dot {
        width: 9px;
        height: 9px;
    }


    .current-video-card {
        grid-template-columns: 105px 1fr;
        gap: 10px;
        padding: 10px;
    }


    .video-preview {
        height: 85px;
    }


    .video-live-label {
        top: 6px;
        left: 6px;
        padding: 4px 6px;
        font-size: 6px;
    }


    .video-play-circle {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }


    .video-info h3 {
        margin-bottom: 8px;
        font-size: 13px;
    }


    .video-platform-name {
        font-size: 7px;
    }


    .video-progress {
        height: 5px;
    }


    .video-progress-info {
        margin-top: 5px;
        font-size: 7px;
    }


    .video-earned {
        grid-column: 1 / -1;

        display: flex;
        align-items: center;
        justify-content: space-between;

        min-width: 0;

        padding-top: 7px;

        border-top: 1px solid rgba(255,255,255,.06);
    }


    .video-earned span {
        margin: 0;
        font-size: 7px;
    }


    .video-earned strong {
        font-size: 18px;
    }


    .video-recent-earning {
        margin-top: 12px;
        padding: 10px 12px;
        font-size: 9px;
    }


    .video-recent-earning strong {
        font-size: 12px;
    }


    .video-bottom-row {
        margin-top: 14px;
        gap: 10px;
    }


    .video-task-count {
        font-size: 8px;
    }


    .video-task-count strong {
        margin-left: 5px;
        font-size: 17px;
    }


    .watch-now-button {
        min-width: 120px;
        min-height: 40px;
        padding: 0 13px;
        gap: 7px;
        font-size: 11px;
    }


    .earning-register-wrapper {
        margin-top: 14px;
    }


    .video-register-button {
        width: min(100%, 300px);
        min-height: 47px;
        font-size: 14px;
    }


    .earning-register-note {
        font-size: 8px;
    }

}


/* ==========================================
   VERY SMALL PHONES
========================================== */

@media (max-width: 360px) {

    .video-card-header {
        padding: 15px 11px;
    }

    .video-main-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .video-card-header h2 {
        font-size: 17px;
    }

    .video-card-header p {
        font-size: 8px;
    }

    .video-live-badge {
        padding: 5px 6px;
        font-size: 7px;
    }

    .video-card-body {
        padding: 13px 10px 15px;
    }

    .current-video-card {
        grid-template-columns: 90px 1fr;
    }

    .video-preview {
        height: 78px;
    }

    .video-earned strong {
        font-size: 16px;
    }

    .watch-now-button {
        min-width: 105px;
        min-height: 37px;
        font-size: 10px;
    }

    .video-register-button {
        width: min(100%, 280px);
        min-height: 44px;
        font-size: 13px;
    }

}

.watch-clicked {
    transform: scale(.96) !important;
}

/* ==========================================
   COMPACT INCOME STREAM 02
========================================== */

.video-card-header {
    padding: 18px 25px;
}

.video-main-icon {
    width: 58px;
    height: 58px;
    font-size: 26px;
}

.video-title-area {
    gap: 15px;
}

.video-card-header h2 {
    font-size: 29px;
}

.video-card-header p {
    margin-top: 4px;
    font-size: 13px;
}

.video-card-body {
    padding: 17px 25px 20px;
}

.video-platforms {
    margin-bottom: 13px;
}

.video-viewers-row {
    margin-bottom: 13px;
}

.video-viewers-row strong {
    font-size: 25px;
}

/* Current video becomes shorter */
.current-video-card {
    grid-template-columns: 175px 1fr auto;
    gap: 16px;
    padding: 12px;
}

.video-preview {
    height: 95px;
}

.video-info h3 {
    margin-bottom: 9px;
    font-size: 17px;
}

.video-progress {
    height: 6px;
}

.video-recent-earning {
    margin-top: 12px;
    padding: 9px 13px;
}

.video-bottom-row {
    margin-top: 14px;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .video-card-header {
        padding: 15px 13px;
    }

    .video-main-icon {
        width: 43px;
        height: 43px;
        font-size: 19px;
    }

    .video-title-area {
        gap: 9px;
    }

    .video-card-header h2 {
        font-size: 18px;
    }

    .video-card-header p {
        font-size: 8px;
        margin-top: 3px;
    }

    .video-card-body {
        padding: 12px 12px 15px;
    }

    .video-platforms {
        margin-bottom: 10px;
    }

    .video-viewers-row {
        margin-bottom: 10px;
    }

    .video-viewers-row strong {
        font-size: 20px;
    }

    .current-video-card {
        grid-template-columns: 95px 1fr;
        gap: 8px;
        padding: 8px;
    }

    .video-preview {
        height: 72px;
    }

    .video-info h3 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .video-recent-earning {
        margin-top: 9px;
        padding: 8px 10px;
    }

    .video-bottom-row {
        margin-top: 10px;
    }

    .watch-now-button {
        min-width: 112px;
        min-height: 38px;
        font-size: 10px;
    }

    .earning-register-wrapper {
        margin-top: 11px;
    }
}

/* ==========================================
   VIDEO SWITCH ANIMATION
========================================== */

.current-video-card {
    transition:
        opacity .3s ease,
        transform .3s ease;
}

.current-video-card.video-changing {
    opacity: .35;
    transform: scale(.985);
}

.video-platform-name {
    transition:
        color .3s ease,
        opacity .3s ease;
}

.video-play-circle {
    transition:
        transform .3s ease,
        background .3s ease;
}

/* ==========================================
   INCOME STREAM 03
   CLICK PAID ADS & EARN
========================================== */

.ads-earning-section {
    margin-top: 0;
}


/* ==========================================
   CARD
========================================== */

.ads-earning-card {
    padding: 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 190, 40, 0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #07142F 0%,
            #191506 55%,
            #07142F 100%
        );

    border-color: rgba(255, 205, 55, 0.45);
}


/* ==========================================
   HEADER
========================================== */

.ads-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 25px;

    background:
        linear-gradient(
            135deg,
            #654800 0%,
            #8D6200 50%,
            #543900 100%
        );

    border-bottom: 1px solid rgba(255, 210, 60, 0.45);
}


.ads-title-area {
    display: flex;
    align-items: center;

    gap: 15px;
}


/* AD ICON */

.ads-main-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border: 2px solid rgba(255, 255, 255, 0.25);

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #FFD447,
            #FFA900
        );

    color: #251800;

    font-family: var(--font-main);

    font-size: 22px;
    font-weight: 900;

    box-shadow:
        0 0 20px rgba(255, 193, 35, 0.35);

    animation: adsIconPulse 3s ease-in-out infinite;
}


/* EYEBROW */

.ads-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #FFE28A;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
}


.ads-card-header h2 {
    margin: 0;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 29px;
    font-weight: 900;

    line-height: 1.1;

    letter-spacing: -1px;
}


.ads-card-header p {
    margin: 4px 0 0;

    color: rgba(255,255,255,.7);

    font-family: var(--font-main);

    font-size: 13px;

    line-height: 1.3;
}


/* ==========================================
   LIVE
========================================== */

.ads-live-badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border: 1px solid rgba(255,212,71,.7);

    border-radius: 30px;

    background: rgba(255,212,71,.07);

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    white-space: nowrap;
}


.ads-live-badge span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #FFD447;

    box-shadow:
        0 0 10px rgba(255,212,71,.9);

    animation: adsLivePulse 1.5s infinite;
}


/* ==========================================
   BODY
========================================== */

.ads-card-body {
    padding: 17px 25px 20px;
}


/* ==========================================
   CLICKERS
========================================== */

.ads-viewers-row {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 15px;
}


.ads-viewers-row strong {
    color: #FFFFFF;

    font-size: 25px;
    font-weight: 900;

    letter-spacing: -1px;
}


.ads-watching-dot {
    width: 13px;
    height: 13px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 12px rgba(57,217,138,.8);

    animation: adsWatchingPulse 1.5s infinite;
}


/* ==========================================
   CURRENT AD
========================================== */

.current-ad-card {
    display: grid;

    grid-template-columns: 125px 1fr auto;

    align-items: center;

    gap: 16px;

    padding: 12px;

    border: 1px solid rgba(255,205,55,.2);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255,195,40,.08),
            rgba(255,255,255,.02)
        );
}


/* BRAND ICON */

.ad-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 82px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #FFD447,
            #FFA900
        );

    color: #251800;

    font-family: var(--font-main);

    font-size: 30px;
    font-weight: 900;

    box-shadow:
        0 0 18px rgba(255,190,30,.25);

    animation: adBrandPulse 3s ease-in-out infinite;
}


/* AD INFORMATION */

.ad-information {
    min-width: 0;
}


.sponsored-label {
    margin-bottom: 5px;

    color: #FFD447;

    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}


.ad-information h3 {
    margin: 0 0 10px;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 17px;
    font-weight: 800;

    line-height: 1.2;
}


/* PROGRESS */

.ad-progress {
    width: 100%;
    height: 7px;

    overflow: hidden;

    border-radius: 10px;

    background: rgba(255,255,255,.09);
}


.ad-progress-bar {
    width: 38%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #FFA900,
            #FFD447
        );

    box-shadow:
        0 0 10px rgba(255,190,40,.45);

    transition: width 1s linear;
}


/* ==========================================
   REWARD
========================================== */

.ad-reward {
    min-width: 125px;

    text-align: right;
}


.ad-reward span {
    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,.4);

    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}


.ad-reward strong {
    color: #D2FF47;

    font-family: var(--font-main);

    font-size: 21px;
    font-weight: 900;

    white-space: nowrap;

    text-shadow:
        0 0 12px rgba(210,255,71,.25);
}


/* ==========================================
   RECENT EARNING
========================================== */

.ads-recent-earning {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 12px;

    padding: 9px 13px;

    border: 1px solid rgba(140,190,60,.3);

    border-radius: 15px;

    background: rgba(120,180,50,.035);

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 13px;
}


.ads-recent-left {
    display: flex;
    align-items: center;

    gap: 10px;
}


.ads-recent-pulse {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 10px rgba(57,217,138,.8);

    animation: adsWatchingPulse 1.5s infinite;
}


.ads-recent-earning strong {
    color: #D2FF47;

    font-size: 16px;
    font-weight: 900;
}


/* ==========================================
   BOTTOM
========================================== */

.ads-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 14px;
}


.ads-available {
    color: rgba(255,255,255,.48);

    font-family: var(--font-main);

    font-size: 13px;
}


.ads-available strong {
    margin-left: 8px;

    color: #FFFFFF;

    font-size: 22px;
    font-weight: 900;
}


/* ==========================================
   CLICK AD BUTTON
========================================== */

.click-ad-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 155px;
    min-height: 46px;

    padding: 0 18px;

    border: 0;

    border-radius: 28px;

    background:
        linear-gradient(
            100deg,
            #FFD447,
            #FFA900
        );

    color: #251800;

    font-family: var(--font-main);

    font-size: 14px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(255,170,0,.2);

    animation: clickAdFloat 3s ease-in-out infinite;

    transition: transform .25s ease;
}


.click-ad-button:hover {
    transform: translateY(-4px) scale(1.02);
}


.click-ad-button::before,
.click-ad-button::after {
    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid rgba(255,212,71,.55);

    border-radius: inherit;

    pointer-events: none;

    animation: clickAdWave 3s ease-out infinite;
}


.click-ad-button::after {
    animation-delay: 1.5s;
}


/* ==========================================
   REGISTER BUTTON
========================================== */

.ads-register-wrapper {
    margin-top: 14px;
}


.ads-register-button {
    width: min(100%, 300px);

    background:
        linear-gradient(
            100deg,
            #FFD447 0%,
            #FFBD32 50%,
            #FF9F1C 100%
        );

    border-color: #FFE28A;

    color: #251800;

    box-shadow:
        0 0 0 3px rgba(255,200,50,.08),
        0 8px 24px rgba(255,170,0,.22);
}


.ads-register-button::before,
.ads-register-button::after {
    border-color: rgba(255,215,80,.55);
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes adsIconPulse {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}


@keyframes adsLivePulse {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .55;
    }
}


@keyframes adsWatchingPulse {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .6;
    }
}


@keyframes adBrandPulse {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}


@keyframes clickAdFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


@keyframes clickAdWave {
    0% {
        opacity: .7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .ads-card-header {
        padding: 15px 13px;
        gap: 10px;
    }

    .ads-title-area {
        gap: 9px;
    }

    .ads-main-icon {
        width: 43px;
        height: 43px;
        border-radius: 13px;
        font-size: 16px;
    }

    .ads-eyebrow {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .ads-card-header h2 {
        font-size: 18px;
    }

    .ads-card-header p {
        font-size: 8px;
        margin-top: 3px;
    }

    .ads-live-badge {
        padding: 5px 7px;
        font-size: 7px;
        letter-spacing: 1px;
    }

    .ads-live-badge span {
        width: 7px;
        height: 7px;
    }


    .ads-card-body {
        padding: 12px 12px 15px;
    }


    .ads-viewers-row {
        gap: 7px;
        margin-bottom: 10px;
        font-size: 10px;
    }

    .ads-viewers-row strong {
        font-size: 20px;
    }

    .ads-watching-dot {
        width: 9px;
        height: 9px;
    }


    .current-ad-card {
        grid-template-columns: 75px 1fr;
        gap: 9px;
        padding: 8px;
    }


    .ad-brand-icon {
        height: 68px;
        font-size: 23px;
    }


    .sponsored-label {
        font-size: 7px;
        letter-spacing: 1.3px;
    }


    .ad-information h3 {
        font-size: 12px;
        margin-bottom: 7px;
    }


    .ad-progress {
        height: 5px;
    }


    .ad-reward {
        grid-column: 1 / -1;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding-top: 6px;

        border-top: 1px solid rgba(255,255,255,.06);

        min-width: 0;
    }


    .ad-reward span {
        margin: 0;
        font-size: 7px;
    }


    .ad-reward strong {
        font-size: 17px;
    }


    .ads-recent-earning {
        margin-top: 9px;
        padding: 8px 10px;
        font-size: 9px;
    }


    .ads-recent-earning strong {
        font-size: 12px;
    }


    .ads-bottom-row {
        margin-top: 10px;
        gap: 10px;
    }


    .ads-available {
        font-size: 8px;
    }


    .ads-available strong {
        margin-left: 5px;
        font-size: 17px;
    }


    .click-ad-button {
        min-width: 112px;
        min-height: 38px;
        padding: 0 13px;
        gap: 7px;
        font-size: 10px;
    }


    .ads-register-wrapper {
        margin-top: 11px;
    }


    .ads-register-button {
        width: min(100%, 280px);
        min-height: 44px;
        font-size: 13px;
    }

}


/* ==========================================
   VERY SMALL PHONES
========================================== */

@media (max-width: 360px) {

    .ads-card-header {
        padding: 14px 10px;
    }

    .ads-main-icon {
        width: 39px;
        height: 39px;
        font-size: 15px;
    }

    .ads-card-header h2 {
        font-size: 16px;
    }

    .ads-card-header p {
        font-size: 7px;
    }

    .ads-live-badge {
        padding: 4px 6px;
        font-size: 6px;
    }

    .ads-card-body {
        padding: 11px 9px 14px;
    }

    .current-ad-card {
        grid-template-columns: 65px 1fr;
    }

    .ad-brand-icon {
        height: 62px;
    }

    .click-ad-button {
        min-width: 102px;
        min-height: 36px;
        font-size: 9px;
    }

    .ads-register-button {
        width: min(100%, 270px);
        min-height: 42px;
        font-size: 12px;
    }

}

.ad-clicked {
    transform: scale(.94) !important;
}

/* ==========================================
   AD SWITCH ANIMATION
========================================== */

.current-ad-card {
    transition:
        opacity .3s ease,
        transform .3s ease;
}

.current-ad-card.ad-changing {
    opacity: .35;
    transform: scale(.985);
}

.ad-brand-icon,
.ad-information h3,
.ad-reward strong {
    transition:
        opacity .25s ease,
        transform .25s ease;
}

/* ==========================================
   INCOME STREAM 04
   PAID TRIVIA QUIZ
========================================== */

.trivia-earning-section {
    margin-top: 0;
}


/* ==========================================
   CARD
========================================== */

.trivia-earning-card {
    padding: 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(34, 211, 238, 0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #07142F 0%,
            #061C2A 55%,
            #07142F 100%
        );

    border-color: rgba(34, 211, 238, 0.45);
}


/* ==========================================
   HEADER
========================================== */

.trivia-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 25px;

    background:
        linear-gradient(
            135deg,
            #075A6D 0%,
            #087D91 50%,
            #064D61 100%
        );

    border-bottom: 1px solid rgba(34, 211, 238, 0.45);
}


.trivia-title-area {
    display: flex;
    align-items: center;

    gap: 15px;
}


/* ICON */

.trivia-main-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border: 2px solid rgba(255,255,255,.3);

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #50E3F2,
            #16BBD3
        );

    color: #062333;

    font-family: var(--font-main);

    font-size: 30px;
    font-weight: 900;

    box-shadow:
        0 0 22px rgba(34,211,238,.35);

    animation: triviaIconPulse 3s ease-in-out infinite;
}


/* EYEBROW */

.trivia-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #82F1FF;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
}


.trivia-card-header h2 {
    margin: 0;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 29px;
    font-weight: 900;

    line-height: 1.1;

    letter-spacing: -1px;
}


.trivia-card-header p {
    margin: 4px 0 0;

    color: rgba(255,255,255,.7);

    font-family: var(--font-main);

    font-size: 13px;

    line-height: 1.3;
}


/* ==========================================
   LIVE BADGE
========================================== */

.trivia-live-badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border: 1px solid rgba(90,235,255,.7);

    border-radius: 30px;

    background: rgba(34,211,238,.07);

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    white-space: nowrap;
}


.trivia-live-badge span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 10px rgba(57,217,138,.9);

    animation: triviaLivePulse 1.5s infinite;
}


/* ==========================================
   BODY
========================================== */

.trivia-card-body {
    padding: 17px 25px 20px;
}


/* ==========================================
   PLAYERS
========================================== */

.trivia-players-row {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 15px;
}


.trivia-players-row strong {
    color: #FFFFFF;

    font-size: 25px;
    font-weight: 900;
}


.trivia-live-dot {
    width: 13px;
    height: 13px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 12px rgba(57,217,138,.8);

    animation: triviaPlayerPulse 1.5s infinite;
}


/* ==========================================
   QUESTION CARD
========================================== */

.trivia-question-card {
    padding: 15px;

    border: 1px solid rgba(34,211,238,.22);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(34,211,238,.06),
            rgba(255,255,255,.015)
        );
}


.trivia-question-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 11px;
}


.trivia-question-label {
    color: #36E5FF;

    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}


#triviaQuestionNumber {
    color: rgba(255,255,255,.42);

    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.trivia-question-card h3 {
    margin: 0 0 13px;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 19px;
    font-weight: 800;

    line-height: 1.25;
}


/* ==========================================
   OPTIONS
========================================== */

.trivia-options {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 8px;
}


.trivia-option {
    display: flex;
    align-items: center;

    gap: 7px;

    min-height: 42px;

    padding: 8px 12px;

    border: 1px solid rgba(50,210,235,.2);

    border-radius: 13px;

    background: rgba(255,255,255,.025);

    color: rgba(255,255,255,.65);

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 600;

    text-align: left;

    cursor: default;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}


.trivia-option span:first-child {
    color: #6CEEFF;

    font-weight: 900;
}


.trivia-option.correct-answer {
    border-color: #39D98A;

    background: rgba(57,217,138,.13);

    color: #FFFFFF;

    box-shadow:
        0 0 14px rgba(57,217,138,.12);

    transform: scale(1.015);
}


.trivia-option.correct-answer span:first-child {
    color: #39D98A;
}


/* ==========================================
   CORRECT STATUS
========================================== */

.trivia-correct-status {
    display: none;

    margin-top: 10px;

    padding: 7px 10px;

    border: 1px solid rgba(57,217,138,.3);

    border-radius: 10px;

    background: rgba(57,217,138,.07);

    color: #39D98A;

    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 800;

    text-align: center;

    animation: correctStatusPop .4s ease;
}


.trivia-correct-status.show {
    display: block;
}


/* ==========================================
   RECENT EARNING
========================================== */

.trivia-recent-earning {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 12px;

    padding: 9px 13px;

    border: 1px solid rgba(120,190,70,.3);

    border-radius: 15px;

    background: rgba(120,180,50,.035);

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 13px;
}


.trivia-recent-left {
    display: flex;
    align-items: center;

    gap: 10px;
}


.trivia-reward-pulse {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 10px rgba(57,217,138,.8);

    animation: triviaPlayerPulse 1.5s infinite;
}


.trivia-recent-earning strong {
    color: #D2FF47;

    font-size: 16px;
    font-weight: 900;
}


/* ==========================================
   BOTTOM
========================================== */

.trivia-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 14px;
}


.trivia-available {
    color: rgba(255,255,255,.48);

    font-family: var(--font-main);

    font-size: 13px;
}


.trivia-available strong {
    margin-left: 8px;

    color: #FFFFFF;

    font-size: 22px;
    font-weight: 900;
}


/* ==========================================
   PLAY TRIVIA BUTTON
========================================== */

.play-trivia-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 155px;
    min-height: 46px;

    padding: 0 18px;

    border: 0;

    border-radius: 28px;

    background:
        linear-gradient(
            100deg,
            #45E0F5,
            #18BBD4
        );

    color: #062333;

    font-family: var(--font-main);

    font-size: 14px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(25,195,220,.2);

    animation: triviaButtonFloat 3s ease-in-out infinite;

    transition: transform .25s ease;
}


.play-trivia-button:hover {
    transform: translateY(-4px) scale(1.02);
}


.play-trivia-button::before,
.play-trivia-button::after {
    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid rgba(55,225,245,.55);

    border-radius: inherit;

    pointer-events: none;

    animation: triviaButtonWave 3s ease-out infinite;
}


.play-trivia-button::after {
    animation-delay: 1.5s;
}


/* ==========================================
   REGISTER
========================================== */

.trivia-register-wrapper {
    margin-top: 14px;
}


.trivia-register-button {
    width: min(100%, 300px);

    background:
        linear-gradient(
            100deg,
            #45E0F5 0%,
            #28C8DE 50%,
            #12AFC9 100%
        );

    border-color: #8AF4FF;

    color: #062333;

    box-shadow:
        0 0 0 3px rgba(45,220,240,.08),
        0 8px 24px rgba(20,190,215,.22);
}


.trivia-register-button::before,
.trivia-register-button::after {
    border-color: rgba(100,235,250,.55);
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes triviaIconPulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}


@keyframes triviaLivePulse {

    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .55;
    }
}


@keyframes triviaPlayerPulse {

    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .6;
    }
}


@keyframes correctStatusPop {

    0% {
        opacity: 0;
        transform: scale(.96);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes triviaButtonFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


@keyframes triviaButtonWave {

    0% {
        opacity: .7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .trivia-card-header {
        padding: 15px 13px;
        gap: 10px;
    }

    .trivia-title-area {
        gap: 9px;
    }

    .trivia-main-icon {
        width: 43px;
        height: 43px;
        border-radius: 13px;
        font-size: 21px;
    }

    .trivia-eyebrow {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .trivia-card-header h2 {
        font-size: 18px;
    }

    .trivia-card-header p {
        font-size: 8px;
        margin-top: 3px;
    }

    .trivia-live-badge {
        padding: 5px 7px;
        font-size: 7px;
        letter-spacing: 1px;
    }

    .trivia-live-badge span {
        width: 7px;
        height: 7px;
    }


    .trivia-card-body {
        padding: 12px 12px 15px;
    }


    .trivia-players-row {
        gap: 7px;
        margin-bottom: 10px;
        font-size: 10px;
    }

    .trivia-players-row strong {
        font-size: 20px;
    }

    .trivia-live-dot {
        width: 9px;
        height: 9px;
    }


    .trivia-question-card {
        padding: 10px;
    }


    .trivia-question-top {
        margin-bottom: 8px;
    }


    .trivia-question-label,
    #triviaQuestionNumber {
        font-size: 7px;
    }


    .trivia-question-card h3 {
        margin-bottom: 9px;
        font-size: 13px;
    }


    .trivia-options {
        gap: 6px;
    }


    .trivia-option {
        min-height: 34px;
        padding: 6px 8px;
        border-radius: 9px;
        font-size: 8px;
    }


    .trivia-correct-status {
        margin-top: 7px;
        padding: 5px 7px;
        font-size: 7px;
    }


    .trivia-recent-earning {
        margin-top: 9px;
        padding: 8px 10px;
        font-size: 9px;
    }


    .trivia-recent-earning strong {
        font-size: 12px;
    }


    .trivia-bottom-row {
        margin-top: 10px;
        gap: 10px;
    }


    .trivia-available {
        font-size: 8px;
    }


    .trivia-available strong {
        margin-left: 5px;
        font-size: 17px;
    }


    .play-trivia-button {
        min-width: 112px;
        min-height: 38px;
        padding: 0 13px;
        gap: 7px;
        font-size: 10px;
    }


    .trivia-register-wrapper {
        margin-top: 11px;
    }


    .trivia-register-button {
        width: min(100%, 280px);
        min-height: 44px;
        font-size: 13px;
    }

}


/* ==========================================
   VERY SMALL PHONES
========================================== */

@media (max-width: 360px) {

    .trivia-card-header {
        padding: 14px 10px;
    }

    .trivia-main-icon {
        width: 39px;
        height: 39px;
        font-size: 18px;
    }

    .trivia-card-header h2 {
        font-size: 16px;
    }

    .trivia-card-header p {
        font-size: 7px;
    }

    .trivia-live-badge {
        padding: 4px 6px;
        font-size: 6px;
    }

    .trivia-card-body {
        padding: 11px 9px 14px;
    }

    .trivia-question-card h3 {
        font-size: 12px;
    }

    .trivia-option {
        font-size: 7px;
        min-height: 32px;
    }

    .play-trivia-button {
        min-width: 102px;
        min-height: 36px;
        font-size: 9px;
    }

    .trivia-register-button {
        width: min(100%, 270px);
        min-height: 42px;
        font-size: 12px;
    }

}

.trivia-clicked {
    transform: scale(.94) !important;
}

/* ==========================================
   INCOME STREAM 05
   PAID WHATSAPP STATUS VIEWS
========================================== */

.status-earning-section {
    margin-top: 0;
}


/* ==========================================
   CARD
========================================== */

.status-earning-card {
    padding: 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(37, 211, 102, 0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #07142F 0%,
            #061D18 55%,
            #07142F 100%
        );

    border-color: rgba(37, 211, 102, 0.45);
}


/* ==========================================
   HEADER
========================================== */

.status-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 25px;

    background:
        linear-gradient(
            135deg,
            #075B32 0%,
            #078744 50%,
            #064629 100%
        );

    border-bottom: 1px solid rgba(37,211,102,.45);
}


.status-title-area {
    display: flex;
    align-items: center;

    gap: 15px;
}


/* ==========================================
   WHATSAPP ICON
========================================== */

.status-main-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border: 2px solid rgba(255,255,255,.3);

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #55E889,
            #20C96A
        );

    color: #06452A;

    font-size: 25px;

    box-shadow:
        0 0 22px rgba(37,211,102,.35);

    animation: statusIconPulse 3s ease-in-out infinite;
}


/* ==========================================
   TITLE
========================================== */

.status-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #8AFFB3;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
}


.status-card-header h2 {
    margin: 0;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 29px;
    font-weight: 900;

    line-height: 1.1;

    letter-spacing: -1px;
}


.status-card-header p {
    margin: 4px 0 0;

    color: rgba(255,255,255,.7);

    font-family: var(--font-main);

    font-size: 13px;

    line-height: 1.3;
}


/* ==========================================
   LIVE
========================================== */

.status-live-badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border: 1px solid rgba(80,240,140,.7);

    border-radius: 30px;

    background: rgba(37,211,102,.07);

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    white-space: nowrap;
}


.status-live-badge span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 10px rgba(57,217,138,.9);

    animation: statusLivePulse 1.5s infinite;
}


/* ==========================================
   BODY
========================================== */

.status-card-body {
    padding: 17px 25px 20px;
}


/* ==========================================
   VIEWERS
========================================== */

.status-viewers-row {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 15px;
}


.status-viewers-row strong {
    color: #FFFFFF;

    font-size: 25px;
    font-weight: 900;
}


.status-viewer-dot {
    width: 13px;
    height: 13px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 12px rgba(57,217,138,.8);

    animation: statusViewerPulse 1.5s infinite;
}


/* ==========================================
   CURRENT STATUS
========================================== */

.current-status-card {
    display: grid;

    grid-template-columns: 120px 1fr auto;

    align-items: center;

    gap: 16px;

    padding: 12px;

    border: 1px solid rgba(37,211,102,.22);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(37,211,102,.06),
            rgba(255,255,255,.015)
        );

    transition:
        opacity .3s ease,
        transform .3s ease;
}


.current-status-card.status-changing {
    opacity: .35;

    transform: scale(.985);
}


/* ==========================================
   PROFILE
========================================== */

.status-profile {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


.status-profile-ring {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 82px;
    height: 82px;

    border: 5px solid #39E77A;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #173B2C,
            #0B2119
        );

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 28px;
    font-weight: 900;

    box-shadow:
        0 0 18px rgba(37,211,102,.25);

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}


.status-online-dot {
    position: absolute;

    right: 12px;
    bottom: 3px;

    width: 13px;
    height: 13px;

    border: 3px solid #07142F;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 10px rgba(57,217,138,.8);
}


/* ==========================================
   INFORMATION
========================================== */

.status-information {
    min-width: 0;
}


.status-label {
    margin-bottom: 5px;

    color: #39E77A;

    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}


.status-information h3 {
    margin: 0 0 10px;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 17px;
    font-weight: 800;

    line-height: 1.2;
}


/* ==========================================
   PROGRESS
========================================== */

.status-progress {
    width: 100%;
    height: 7px;

    overflow: hidden;

    border-radius: 10px;

    background: rgba(255,255,255,.09);
}


.status-progress-bar {
    width: 68%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #18C964,
            #55EE8B
        );

    box-shadow:
        0 0 10px rgba(37,211,102,.4);

    transition: width 1s linear;
}


/* VIEW INFO */

.status-view-info {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 6px;

    color: rgba(255,255,255,.4);

    font-family: var(--font-main);

    font-size: 9px;
}


.status-view-info strong {
    color: rgba(255,255,255,.55);

    font-size: 10px;
}


/* ==========================================
   REWARD
========================================== */

.status-reward {
    min-width: 120px;

    text-align: right;
}


.status-reward span {
    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,.4);

    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}


.status-reward strong {
    color: #D2FF47;

    font-family: var(--font-main);

    font-size: 21px;
    font-weight: 900;

    white-space: nowrap;

    text-shadow:
        0 0 12px rgba(210,255,71,.25);
}


/* ==========================================
   RECENT EARNING
========================================== */

.status-recent-earning {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 12px;

    padding: 9px 13px;

    border: 1px solid rgba(120,190,70,.3);

    border-radius: 15px;

    background: rgba(120,180,50,.035);

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 13px;
}


.status-recent-left {
    display: flex;
    align-items: center;

    gap: 10px;
}


.status-reward-pulse {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 10px rgba(57,217,138,.8);

    animation: statusViewerPulse 1.5s infinite;
}


.status-recent-earning strong {
    color: #D2FF47;

    font-size: 16px;
    font-weight: 900;
}


/* ==========================================
   BOTTOM
========================================== */

.status-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 14px;
}


.statuses-available {
    color: rgba(255,255,255,.48);

    font-family: var(--font-main);

    font-size: 13px;
}


.statuses-available strong {
    margin-left: 8px;

    color: #FFFFFF;

    font-size: 22px;
    font-weight: 900;
}


/* ==========================================
   VIEW STATUS BUTTON
========================================== */

.view-status-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 155px;
    min-height: 46px;

    padding: 0 18px;

    border: 0;

    border-radius: 28px;

    background:
        linear-gradient(
            100deg,
            #54ED8A,
            #20D66A
        );

    color: #062E1C;

    font-family: var(--font-main);

    font-size: 14px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(37,211,102,.2);

    animation: statusButtonFloat 3s ease-in-out infinite;

    transition: transform .25s ease;
}


.view-status-button:hover {
    transform: translateY(-4px) scale(1.02);
}


.view-status-button::before,
.view-status-button::after {
    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid rgba(70,235,130,.55);

    border-radius: inherit;

    pointer-events: none;

    animation: statusButtonWave 3s ease-out infinite;
}


.view-status-button::after {
    animation-delay: 1.5s;
}


/* ==========================================
   REGISTER
========================================== */

.status-register-wrapper {
    margin-top: 14px;
}


.status-register-button {
    width: min(100%, 300px);

    background:
        linear-gradient(
            100deg,
            #54ED8A 0%,
            #29D86D 50%,
            #13BE58 100%
        );

    border-color: #8AFFB3;

    color: #062E1C;

    box-shadow:
        0 0 0 3px rgba(57,217,138,.08),
        0 8px 24px rgba(20,210,100,.22);
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes statusIconPulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}


@keyframes statusLivePulse {

    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .55;
    }
}


@keyframes statusViewerPulse {

    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .6;
    }
}


@keyframes statusButtonFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


@keyframes statusButtonWave {

    0% {
        opacity: .7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .status-card-header {
        padding: 15px 13px;
        gap: 10px;
    }

    .status-title-area {
        gap: 9px;
    }

    .status-main-icon {
        width: 43px;
        height: 43px;
        font-size: 18px;
    }

    .status-eyebrow {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .status-card-header h2 {
        font-size: 18px;
    }

    .status-card-header p {
        font-size: 8px;
        margin-top: 3px;
    }

    .status-live-badge {
        padding: 5px 7px;
        font-size: 7px;
        letter-spacing: 1px;
    }

    .status-live-badge span {
        width: 7px;
        height: 7px;
    }


    .status-card-body {
        padding: 12px 12px 15px;
    }


    .status-viewers-row {
        gap: 7px;
        margin-bottom: 10px;
        font-size: 10px;
    }

    .status-viewers-row strong {
        font-size: 20px;
    }

    .status-viewer-dot {
        width: 9px;
        height: 9px;
    }


    .current-status-card {
        grid-template-columns: 58px 1fr;
        gap: 9px;
        padding: 8px;
    }


    .status-profile-ring {
        width: 56px;
        height: 56px;

        border-width: 4px;

        font-size: 20px;
    }


    .status-online-dot {
        right: 1px;
        bottom: 1px;

        width: 10px;
        height: 10px;

        border-width: 2px;
    }


    .status-label {
        font-size: 7px;
        letter-spacing: 1.3px;
    }


    .status-information h3 {
        font-size: 12px;
        margin-bottom: 7px;
    }


    .status-progress {
        height: 5px;
    }


    .status-view-info {
        margin-top: 4px;
        font-size: 7px;
    }


    .status-view-info strong {
        font-size: 8px;
    }


    .status-reward {
        grid-column: 1 / -1;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding-top: 6px;

        border-top: 1px solid rgba(255,255,255,.06);

        min-width: 0;
    }


    .status-reward span {
        margin: 0;
        font-size: 7px;
    }


    .status-reward strong {
        font-size: 17px;
    }


    .status-recent-earning {
        margin-top: 9px;
        padding: 8px 10px;
        font-size: 9px;
    }


    .status-recent-earning strong {
        font-size: 12px;
    }


    .status-bottom-row {
        margin-top: 10px;
        gap: 10px;
    }


    .statuses-available {
        font-size: 8px;
    }


    .statuses-available strong {
        margin-left: 5px;
        font-size: 17px;
    }


    .view-status-button {
        min-width: 112px;
        min-height: 38px;
        padding: 0 13px;
        gap: 7px;
        font-size: 10px;
    }


    .status-register-wrapper {
        margin-top: 11px;
    }


    .status-register-button {
        width: min(100%, 280px);
        min-height: 44px;
        font-size: 13px;
    }

}


/* ==========================================
   VERY SMALL PHONES
========================================== */

@media (max-width: 360px) {

    .status-card-header {
        padding: 14px 10px;
    }

    .status-main-icon {
        width: 39px;
        height: 39px;
        font-size: 16px;
    }

    .status-card-header h2 {
        font-size: 16px;
    }

    .status-card-header p {
        font-size: 7px;
    }

    .status-live-badge {
        padding: 4px 6px;
        font-size: 6px;
    }

    .status-card-body {
        padding: 11px 9px 14px;
    }

    .current-status-card {
        grid-template-columns: 48px 1fr;
    }

    .status-profile-ring {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .status-information h3 {
        font-size: 11px;
    }

    .view-status-button {
        min-width: 102px;
        min-height: 36px;
        font-size: 9px;
    }

    .status-register-button {
        width: min(100%, 270px);
        min-height: 42px;
        font-size: 12px;
    }

}

.status-clicked {
    transform: scale(.94) !important;
}

/* ==========================================
   INCOME STREAM 06
   LISTEN TO PAID MUSIC
========================================== */

.music-earning-section {
    margin-top: 0;
}


/* ==========================================
   CARD
========================================== */

.music-earning-card {
    padding: 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(177, 92, 255, 0.14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #07142F 0%,
            #160B27 55%,
            #07142F 100%
        );

    border-color: rgba(177,92,255,.45);
}


/* ==========================================
   HEADER
========================================== */

.music-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 25px;

    background:
        linear-gradient(
            135deg,
            #4D1780 0%,
            #7024A8 50%,
            #42126D 100%
        );

    border-bottom: 1px solid rgba(195,100,255,.45);
}


.music-title-area {
    display: flex;
    align-items: center;

    gap: 15px;
}


/* ==========================================
   MUSIC ICON
========================================== */

.music-main-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border: 2px solid rgba(255,255,255,.3);

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #C76BFF,
            #A43BFF
        );

    color: #26053F;

    font-family: Georgia, serif;

    font-size: 35px;

    box-shadow:
        0 0 22px rgba(180,80,255,.4);

    animation: musicIconPulse 3s ease-in-out infinite;
}


/* ==========================================
   TITLE
========================================== */

.music-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #E7B6FF;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
}


.music-card-header h2 {
    margin: 0;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 29px;
    font-weight: 900;

    line-height: 1.1;

    letter-spacing: -1px;
}


.music-card-header p {
    margin: 4px 0 0;

    color: rgba(255,255,255,.7);

    font-family: var(--font-main);

    font-size: 13px;

    line-height: 1.3;
}


/* ==========================================
   LIVE
========================================== */

.music-live-badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border: 1px solid rgba(220,130,255,.7);

    border-radius: 30px;

    background: rgba(190,90,255,.07);

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    white-space: nowrap;
}


.music-live-badge span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #C86BFF;

    box-shadow:
        0 0 10px rgba(200,100,255,.9);

    animation: musicLivePulse 1.5s infinite;
}


/* ==========================================
   BODY
========================================== */

.music-card-body {
    padding: 17px 25px 20px;
}


/* ==========================================
   LISTENERS
========================================== */

.music-listeners-row {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 15px;
}


.music-listeners-row strong {
    color: #FFFFFF;

    font-size: 25px;
    font-weight: 900;
}


.music-listener-dot {
    width: 13px;
    height: 13px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 12px rgba(57,217,138,.8);

    animation: musicListenerPulse 1.5s infinite;
}


/* ==========================================
   NOW PLAYING
========================================== */

.now-playing-card {
    display: grid;

    grid-template-columns: 120px 1fr auto;

    align-items: center;

    gap: 16px;

    padding: 12px;

    border: 1px solid rgba(180,90,255,.24);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(180,80,255,.07),
            rgba(255,255,255,.015)
        );

    transition:
        opacity .3s ease,
        transform .3s ease;
}


.now-playing-card.music-changing {
    opacity: .35;

    transform: scale(.985);
}


/* ==========================================
   COVER
========================================== */

.music-cover {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 82px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #A73DFF,
            #F03BB5
        );

    color: #FFFFFF;

    font-family: Georgia, serif;

    font-size: 42px;

    box-shadow:
        0 0 20px rgba(190,60,255,.3);

    animation: musicCoverPulse 2.5s ease-in-out infinite;
}


.music-information {
    min-width: 0;
}


.now-playing-label {
    margin-bottom: 5px;

    color: #C46BFF;

    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}


.music-information h3 {
    margin: 0;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 17px;
    font-weight: 800;

    line-height: 1.2;
}


.music-information p {
    margin: 4px 0 7px;

    color: rgba(255,255,255,.45);

    font-family: var(--font-main);

    font-size: 11px;
}


/* ==========================================
   EQUALIZER
========================================== */

.music-equalizer {
    display: flex;
    align-items: flex-end;

    gap: 4px;

    height: 27px;

    margin-bottom: 7px;
}


.music-equalizer span {
    display: block;

    width: 4px;

    min-height: 6px;

    border-radius: 5px;

    background:
        linear-gradient(
            180deg,
            #D07AFF,
            #9D35FF
        );

    animation: equalizerBounce .75s ease-in-out infinite alternate;
}


.music-equalizer span:nth-child(1) {
    height: 12px;
    animation-delay: .05s;
}

.music-equalizer span:nth-child(2) {
    height: 22px;
    animation-delay: .18s;
}

.music-equalizer span:nth-child(3) {
    height: 16px;
    animation-delay: .32s;
}

.music-equalizer span:nth-child(4) {
    height: 26px;
    animation-delay: .12s;
}

.music-equalizer span:nth-child(5) {
    height: 14px;
    animation-delay: .28s;
}

.music-equalizer span:nth-child(6) {
    height: 24px;
    animation-delay: .42s;
}

.music-equalizer span:nth-child(7) {
    height: 17px;
    animation-delay: .2s;
}

.music-equalizer span:nth-child(8) {
    height: 25px;
    animation-delay: .35s;
}


/* ==========================================
   PROGRESS
========================================== */

.music-progress {
    width: 100%;
    height: 7px;

    overflow: hidden;

    border-radius: 10px;

    background: rgba(255,255,255,.09);
}


.music-progress-bar {
    width: 72%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #9C35FF,
            #F34CBF
        );

    box-shadow:
        0 0 10px rgba(190,70,255,.45);

    transition: width 1s linear;
}


/* ==========================================
   REWARD
========================================== */

.music-reward {
    min-width: 120px;

    text-align: right;
}


.music-reward span {
    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,.4);

    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}


.music-reward strong {
    color: #D2FF47;

    font-family: var(--font-main);

    font-size: 21px;
    font-weight: 900;

    white-space: nowrap;

    text-shadow:
        0 0 12px rgba(210,255,71,.25);
}


/* ==========================================
   RECENT EARNING
========================================== */

.music-recent-earning {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 12px;

    padding: 9px 13px;

    border: 1px solid rgba(120,190,70,.3);

    border-radius: 15px;

    background: rgba(120,180,50,.035);

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 13px;
}


.music-recent-left {
    display: flex;
    align-items: center;

    gap: 10px;
}


.music-reward-pulse {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 10px rgba(57,217,138,.8);

    animation: musicListenerPulse 1.5s infinite;
}


.music-recent-earning strong {
    color: #D2FF47;

    font-size: 16px;
    font-weight: 900;
}


/* ==========================================
   BOTTOM
========================================== */

.music-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 14px;
}


.songs-available {
    color: rgba(255,255,255,.48);

    font-family: var(--font-main);

    font-size: 13px;
}


.songs-available strong {
    margin-left: 8px;

    color: #FFFFFF;

    font-size: 22px;
    font-weight: 900;
}


/* ==========================================
   LISTEN BUTTON
========================================== */

.listen-now-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 155px;
    min-height: 46px;

    padding: 0 18px;

    border: 0;

    border-radius: 28px;

    background:
        linear-gradient(
            100deg,
            #C96CFF,
            #A73CFF
        );

    color: #24053E;

    font-family: var(--font-main);

    font-size: 14px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(175,60,255,.22);

    animation: musicButtonFloat 3s ease-in-out infinite;

    transition: transform .25s ease;
}


.listen-now-button:hover {
    transform: translateY(-4px) scale(1.02);
}


.listen-now-button::before,
.listen-now-button::after {
    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid rgba(205,110,255,.55);

    border-radius: inherit;

    pointer-events: none;

    animation: musicButtonWave 3s ease-out infinite;
}


.listen-now-button::after {
    animation-delay: 1.5s;
}


/* ==========================================
   REGISTER
========================================== */

.music-register-wrapper {
    margin-top: 14px;
}


.music-register-button {
    width: min(100%, 300px);

    background:
        linear-gradient(
            100deg,
            #C96CFF 0%,
            #B044FF 50%,
            #E74BBF 100%
        );

    border-color: #E7B6FF;

    color: #25053D;

    box-shadow:
        0 0 0 3px rgba(190,80,255,.08),
        0 8px 24px rgba(170,50,255,.22);
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes musicIconPulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}


@keyframes musicLivePulse {

    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .55;
    }
}


@keyframes musicListenerPulse {

    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .6;
    }
}


@keyframes musicCoverPulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.025);
    }
}


@keyframes equalizerBounce {

    0% {
        transform: scaleY(.45);
    }

    100% {
        transform: scaleY(1);
    }
}


@keyframes musicButtonFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


@keyframes musicButtonWave {

    0% {
        opacity: .7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .music-card-header {
        padding: 15px 13px;
        gap: 10px;
    }

    .music-title-area {
        gap: 9px;
    }

    .music-main-icon {
        width: 43px;
        height: 43px;
        font-size: 25px;
    }

    .music-eyebrow {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .music-card-header h2 {
        font-size: 18px;
    }

    .music-card-header p {
        font-size: 8px;
        margin-top: 3px;
    }

    .music-live-badge {
        padding: 5px 7px;
        font-size: 7px;
        letter-spacing: 1px;
    }

    .music-live-badge span {
        width: 7px;
        height: 7px;
    }


    .music-card-body {
        padding: 12px 12px 15px;
    }


    .music-listeners-row {
        gap: 7px;
        margin-bottom: 10px;
        font-size: 10px;
    }

    .music-listeners-row strong {
        font-size: 20px;
    }

    .music-listener-dot {
        width: 9px;
        height: 9px;
    }


    .now-playing-card {
        grid-template-columns: 65px 1fr;
        gap: 9px;
        padding: 8px;
    }


    .music-cover {
        height: 68px;
        font-size: 32px;
    }


    .now-playing-label {
        font-size: 7px;
        letter-spacing: 1.3px;
    }


    .music-information h3 {
        font-size: 12px;
    }


    .music-information p {
        font-size: 8px;
        margin: 3px 0 5px;
    }


    .music-equalizer {
        height: 19px;
        gap: 3px;
        margin-bottom: 5px;
    }


    .music-equalizer span {
        width: 3px;
    }


    .music-progress {
        height: 5px;
    }


    .music-reward {
        grid-column: 1 / -1;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding-top: 6px;

        border-top: 1px solid rgba(255,255,255,.06);

        min-width: 0;
    }


    .music-reward span {
        margin: 0;
        font-size: 7px;
    }


    .music-reward strong {
        font-size: 17px;
    }


    .music-recent-earning {
        margin-top: 9px;
        padding: 8px 10px;
        font-size: 9px;
    }


    .music-recent-earning strong {
        font-size: 12px;
    }


    .music-bottom-row {
        margin-top: 10px;
        gap: 10px;
    }


    .songs-available {
        font-size: 8px;
    }


    .songs-available strong {
        margin-left: 5px;
        font-size: 17px;
    }


    .listen-now-button {
        min-width: 112px;
        min-height: 38px;
        padding: 0 13px;
        gap: 7px;
        font-size: 10px;
    }


    .music-register-wrapper {
        margin-top: 11px;
    }


    .music-register-button {
        width: min(100%, 280px);
        min-height: 44px;
        font-size: 13px;
    }

}


/* ==========================================
   VERY SMALL PHONES
========================================== */

@media (max-width: 360px) {

    .music-card-header {
        padding: 14px 10px;
    }

    .music-main-icon {
        width: 39px;
        height: 39px;
        font-size: 22px;
    }

    .music-card-header h2 {
        font-size: 16px;
    }

    .music-card-header p {
        font-size: 7px;
    }

    .music-live-badge {
        padding: 4px 6px;
        font-size: 6px;
    }

    .music-card-body {
        padding: 11px 9px 14px;
    }

    .music-cover {
        height: 62px;
    }

    .music-information h3 {
        font-size: 11px;
    }

    .listen-now-button {
        min-width: 102px;
        min-height: 36px;
        font-size: 9px;
    }

    .music-register-button {
        width: min(100%, 270px);
        min-height: 42px;
        font-size: 12px;
    }

}

.music-clicked {
    transform: scale(.94) !important;
}

/* ==========================================
   INCOME STREAM 07
   WHEEL SPIN & WIN
========================================== */

.spin-earning-section {
    margin-top: 0;
}


/* ==========================================
   CARD
========================================== */

.spin-earning-card {
    padding: 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255,150,30,.10),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #07142F 0%,
            #211007 55%,
            #07142F 100%
        );

    border-color: rgba(255,166,45,.45);
}


/* ==========================================
   HEADER
========================================== */

.spin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 25px;

    background:
        linear-gradient(
            135deg,
            #784000 0%,
            #B34700 50%,
            #702A00 100%
        );

    border-bottom: 1px solid rgba(255,180,55,.45);
}


.spin-title-area {
    display: flex;
    align-items: center;

    gap: 15px;
}


/* ==========================================
   ICON
========================================== */

.spin-main-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border: 2px solid rgba(255,255,255,.3);

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #FFD447,
            #FF9D18
        );

    color: #642000;

    font-size: 31px;

    box-shadow:
        0 0 22px rgba(255,170,40,.4);

    animation: spinIconPulse 2.5s ease-in-out infinite;
}


/* ==========================================
   TITLE
========================================== */

.spin-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #FFE08A;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
}


.spin-card-header h2 {
    margin: 0;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 29px;
    font-weight: 900;

    line-height: 1.1;

    letter-spacing: -1px;
}


.spin-card-header p {
    margin: 4px 0 0;

    color: rgba(255,255,255,.7);

    font-family: var(--font-main);

    font-size: 13px;

    line-height: 1.3;
}


/* ==========================================
   LIVE BADGE
========================================== */

.spin-live-badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border: 1px solid rgba(255,205,80,.65);

    border-radius: 30px;

    background: rgba(255,180,40,.07);

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    white-space: nowrap;
}


.spin-live-badge span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #FFD447;

    box-shadow:
        0 0 10px rgba(255,212,71,.9);

    animation: spinLivePulse 1.5s infinite;
}


/* ==========================================
   BODY
========================================== */

.spin-card-body {
    padding: 15px 25px 18px;
}


/* ==========================================
   LIVE PLAYERS
========================================== */

.spin-viewers-row {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 5px;

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 15px;
}


.spin-viewers-row strong {
    color: #FFFFFF;

    font-size: 25px;
    font-weight: 900;
}


.spin-viewer-dot {
    width: 13px;
    height: 13px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 12px rgba(57,217,138,.8);

    animation: spinViewerPulse 1.5s infinite;
}


/* ==========================================
   WHEEL AREA
========================================== */

.wheel-area {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 265px;

    overflow: visible;
}


/* ==========================================
   WHEEL
========================================== */

.spin-wheel {
    position: relative;

    width: 220px;
    height: 220px;

    border: 8px solid #FFB52C;

    border-radius: 50%;

    background:
        conic-gradient(
            #FFCF3F 0deg 45deg,
            #FF4738 45deg 90deg,
            #FFCF3F 90deg 135deg,
            #FF4738 135deg 180deg,
            #FFCF3F 180deg 225deg,
            #FF4738 225deg 270deg,
            #FFCF3F 270deg 315deg,
            #FF4738 315deg 360deg
        );

    box-shadow:
        0 0 0 5px rgba(255,170,30,.25),
        0 0 25px rgba(255,150,20,.35);

    transform: rotate(0deg);

    transition:
        transform 4s cubic-bezier(.12,.72,.15,1);

    flex-shrink: 0;
}


/* ==========================================
   WHEEL LABELS
========================================== */

.wheel-label {
    position: absolute;

    left: 50%;
    top: 50%;

    transform-origin: 0 0;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 15px;
    font-weight: 900;

    text-shadow:
        0 2px 4px rgba(0,0,0,.4);

    white-space: nowrap;
}


/* Position labels */

.label-1 {
    transform:
        rotate(22.5deg)
        translate(72px,-7px);
}

.label-2 {
    transform:
        rotate(67.5deg)
        translate(72px,-7px);
}

.label-3 {
    transform:
        rotate(112.5deg)
        translate(72px,-7px);
}

.label-4 {
    transform:
        rotate(157.5deg)
        translate(72px,-7px);
}

.label-5 {
    transform:
        rotate(202.5deg)
        translate(72px,-7px);
}

.label-6 {
    transform:
        rotate(247.5deg)
        translate(72px,-7px);
}

.label-7 {
    transform:
        rotate(292.5deg)
        translate(72px,-7px);
}

.label-8 {
    transform:
        rotate(337.5deg)
        translate(72px,-7px);
}


/* ==========================================
   CENTER
========================================== */

.wheel-center {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%,-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    width: 68px;
    height: 68px;

    border: 6px solid #FFF0A6;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #FFE88A,
            #FFAE25
        );

    color: #602000;

    font-family: var(--font-main);

    font-size: 15px;
    font-weight: 900;

    box-shadow:
        0 0 15px rgba(255,190,40,.4);

    z-index: 3;
}


.wheel-center::after {
    content: "";

    position: absolute;

    inset: -10px;

    border: 2px solid rgba(255,220,100,.3);

    border-radius: 50%;

    animation: centerPulse 2s ease-in-out infinite;
}


/* ==========================================
   POINTER
========================================== */

.wheel-pointer {
    position: absolute;

    top: 6px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 10;

    color: #FFF7D0;

    font-size: 28px;

    line-height: 1;

    filter:
        drop-shadow(0 3px 5px rgba(0,0,0,.5));

    animation: pointerBounce 1.4s ease-in-out infinite;
}


/* ==========================================
   RECENT WIN
========================================== */

.spin-recent-win {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 9px 13px;

    border: 1px solid rgba(150,190,60,.3);

    border-radius: 15px;

    background: rgba(120,180,50,.035);

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 13px;
}


.spin-recent-left {
    display: flex;
    align-items: center;

    gap: 10px;
}


.spin-win-pulse {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 10px rgba(57,217,138,.8);

    animation: spinViewerPulse 1.5s infinite;
}


.spin-recent-win strong {
    color: #D2FF47;

    font-size: 16px;
    font-weight: 900;
}


/* ==========================================
   BOTTOM
========================================== */

.spin-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 13px;
}


.spins-available {
    color: rgba(255,255,255,.48);

    font-family: var(--font-main);

    font-size: 13px;
}


.spins-available strong {
    margin-left: 8px;

    color: #FFFFFF;

    font-size: 22px;
    font-weight: 900;
}


/* ==========================================
   SPIN BUTTON
========================================== */

.spin-now-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 155px;
    min-height: 46px;

    padding: 0 18px;

    border: 0;

    border-radius: 28px;

    background:
        linear-gradient(
            100deg,
            #FFD447,
            #FF9F1C
        );

    color: #5B2100;

    font-family: var(--font-main);

    font-size: 14px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(255,155,20,.22);

    animation: spinButtonFloat 3s ease-in-out infinite;

    transition:
        transform .25s ease;
}


.spin-now-button:hover {
    transform: translateY(-4px) scale(1.02);
}


.spin-now-button::before,
.spin-now-button::after {
    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid rgba(255,200,70,.6);

    border-radius: inherit;

    pointer-events: none;

    animation: spinButtonWave 3s ease-out infinite;
}


.spin-now-button::after {
    animation-delay: 1.5s;
}


.spin-now-button.spinning {
    pointer-events: none;

    transform: scale(.96);
}


/* ==========================================
   REGISTER
========================================== */

.spin-register-wrapper {
    margin-top: 14px;
}


.spin-register-button {
    width: min(100%, 300px);

    background:
        linear-gradient(
            100deg,
            #FFD447 0%,
            #FFB52C 50%,
            #FF7628 100%
        );

    border-color: #FFE69A;

    color: #552000;

    box-shadow:
        0 0 0 3px rgba(255,190,50,.08),
        0 8px 24px rgba(255,150,20,.22);
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes spinIconPulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}


@keyframes spinLivePulse {

    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .55;
    }
}


@keyframes spinViewerPulse {

    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .6;
    }
}


@keyframes pointerBounce {

    0%,100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(4px);
    }
}


@keyframes centerPulse {

    0%,100% {
        opacity: .3;
        transform: scale(1);
    }

    50% {
        opacity: .8;
        transform: scale(1.08);
    }
}


@keyframes spinButtonFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


@keyframes spinButtonWave {

    0% {
        opacity: .7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .spin-card-header {
        padding: 15px 13px;
        gap: 10px;
    }


    .spin-title-area {
        gap: 9px;
    }


    .spin-main-icon {
        width: 43px;
        height: 43px;
        font-size: 23px;
    }


    .spin-eyebrow {
        font-size: 7px;
        letter-spacing: 1.5px;
    }


    .spin-card-header h2 {
        font-size: 18px;
    }


    .spin-card-header p {
        font-size: 8px;
        margin-top: 3px;
    }


    .spin-live-badge {
        padding: 5px 7px;
        font-size: 7px;
        letter-spacing: 1px;
    }


    .spin-live-badge span {
        width: 7px;
        height: 7px;
    }


    .spin-card-body {
        padding: 12px 12px 15px;
    }


    .spin-viewers-row {
        gap: 7px;
        margin-bottom: 2px;
        font-size: 10px;
    }


    .spin-viewers-row strong {
        font-size: 20px;
    }


    .spin-viewer-dot {
        width: 9px;
        height: 9px;
    }


    .wheel-area {
        height: 205px;
    }


    .spin-wheel {
        width: 165px;
        height: 165px;

        border-width: 6px;
    }


    .wheel-label {
        font-size: 10px;
    }


    .label-1,
    .label-2,
    .label-3,
    .label-4,
    .label-5,
    .label-6,
    .label-7,
    .label-8 {
        transform-origin: 0 0;
        transform:
            rotate(var(--wheel-angle))
            translate(53px,-5px);
    }


    .label-1 { --wheel-angle: 22.5deg; }
    .label-2 { --wheel-angle: 67.5deg; }
    .label-3 { --wheel-angle: 112.5deg; }
    .label-4 { --wheel-angle: 157.5deg; }
    .label-5 { --wheel-angle: 202.5deg; }
    .label-6 { --wheel-angle: 247.5deg; }
    .label-7 { --wheel-angle: 292.5deg; }
    .label-8 { --wheel-angle: 337.5deg; }


    .wheel-center {
        width: 53px;
        height: 53px;

        border-width: 4px;

        font-size: 11px;
    }


    .wheel-pointer {
        top: 3px;
        font-size: 21px;
    }


    .spin-recent-win {
        padding: 8px 10px;
        font-size: 9px;
    }


    .spin-recent-win strong {
        font-size: 12px;
    }


    .spin-bottom-row {
        margin-top: 10px;
        gap: 10px;
    }


    .spins-available {
        font-size: 8px;
    }


    .spins-available strong {
        margin-left: 5px;
        font-size: 17px;
    }


    .spin-now-button {
        min-width: 112px;
        min-height: 38px;

        padding: 0 13px;

        gap: 7px;

        font-size: 10px;
    }


    .spin-register-wrapper {
        margin-top: 11px;
    }


    .spin-register-button {
        width: min(100%, 280px);
        min-height: 44px;
        font-size: 13px;
    }

}


/* ==========================================
   VERY SMALL PHONES
========================================== */

@media (max-width: 360px) {

    .spin-card-header {
        padding: 14px 10px;
    }


    .spin-main-icon {
        width: 39px;
        height: 39px;
        font-size: 20px;
    }


    .spin-card-header h2 {
        font-size: 16px;
    }


    .spin-card-header p {
        font-size: 7px;
    }


    .spin-live-badge {
        padding: 4px 6px;
        font-size: 6px;
    }


    .spin-card-body {
        padding: 11px 9px 14px;
    }


    .wheel-area {
        height: 185px;
    }


    .spin-wheel {
        width: 145px;
        height: 145px;
    }


    .wheel-center {
        width: 47px;
        height: 47px;
        font-size: 10px;
    }


    .wheel-pointer {
        font-size: 19px;
    }


    .spin-now-button {
        min-width: 102px;
        min-height: 36px;
        font-size: 9px;
    }


    .spin-register-button {
        width: min(100%, 270px);
        min-height: 42px;
        font-size: 12px;
    }

}

.spin-win-flash {
    animation: spinRewardFlash .7s ease;
}

@keyframes spinRewardFlash {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.18);
        opacity: .7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}

/* ==========================================
   INCOME STREAM 08
   DAILY LOGIN BONUS
========================================== */

.login-earning-section {
    margin-top: 0;
}


/* ==========================================
   CARD
========================================== */

.login-earning-card {
    padding: 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(60,130,255,.13),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #07142F 0%,
            #091C42 55%,
            #07142F 100%
        );

    border-color: rgba(70,145,255,.45);
}


/* ==========================================
   HEADER
========================================== */

.login-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 25px;

    background:
        linear-gradient(
            135deg,
            #164DAD 0%,
            #2368D4 50%,
            #123E8E 100%
        );

    border-bottom: 1px solid rgba(90,165,255,.45);
}


.login-title-area {
    display: flex;
    align-items: center;

    gap: 15px;
}


/* ==========================================
   ICON
========================================== */

.login-main-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border: 2px solid rgba(255,255,255,.3);

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #FFD447,
            #FFB52C
        );

    font-size: 30px;

    box-shadow:
        0 0 22px rgba(255,190,40,.35);

    animation:
        loginGiftPulse 2.5s ease-in-out infinite;
}


/* ==========================================
   TITLE
========================================== */

.login-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #FFE38B;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
}


.login-card-header h2 {
    margin: 0;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 29px;
    font-weight: 900;

    line-height: 1.1;

    letter-spacing: -1px;
}


.login-card-header p {
    margin: 4px 0 0;

    color: rgba(255,255,255,.7);

    font-family: var(--font-main);

    font-size: 13px;

    line-height: 1.3;
}


/* ==========================================
   LIVE
========================================== */

.login-live-badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border: 1px solid rgba(110,190,255,.65);

    border-radius: 30px;

    background: rgba(70,150,255,.08);

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    white-space: nowrap;
}


.login-live-badge span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 10px rgba(57,217,138,.9);

    animation:
        loginLivePulse 1.5s infinite;
}


/* ==========================================
   BODY
========================================== */

.login-card-body {
    padding: 15px 25px 18px;
}


/* ==========================================
   MEMBERS
========================================== */

.login-members-row {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 15px;
}


.login-members-row strong {
    color: #FFFFFF;

    font-size: 25px;
    font-weight: 900;
}


.login-member-dot {
    width: 13px;
    height: 13px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 12px rgba(57,217,138,.8);

    animation:
        loginMemberPulse 1.5s infinite;
}


/* ==========================================
   DAILY BONUS CARD
========================================== */

.daily-bonus-card {
    display: grid;

    grid-template-columns: 150px 1fr auto;

    align-items: center;

    gap: 17px;

    padding: 12px;

    border: 1px solid rgba(75,145,255,.25);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(50,120,240,.08),
            rgba(255,255,255,.015)
        );

    transition:
        opacity .3s ease,
        transform .3s ease;
}


.daily-bonus-card.login-changing {
    opacity: .4;

    transform: scale(.985);
}


/* ==========================================
   TODAY BONUS
========================================== */

.today-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    height: 105px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #FFD447,
            #FFB52C
        );

    color: #09275C;

    box-shadow:
        0 0 20px rgba(255,190,50,.18);
}


.today-label {
    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}


.bonus-plus {
    margin-top: 5px;

    font-family: var(--font-main);

    font-size: 12px;
    font-weight: 800;
}


.today-bonus strong {
    font-family: var(--font-main);

    font-size: 27px;
    font-weight: 900;

    line-height: 1;
}


/* ==========================================
   BONUS INFORMATION
========================================== */

.daily-reward-label {
    display: block;

    margin-bottom: 5px;

    color: #62A5FF;

    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2.5px;
}


.daily-bonus-info h3 {
    margin: 0;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 17px;
    font-weight: 800;

    line-height: 1.2;
}


.daily-bonus-info p {
    margin: 5px 0 8px;

    color: rgba(255,255,255,.45);

    font-family: var(--font-main);

    font-size: 10px;

    line-height: 1.3;
}


/* ==========================================
   STREAK
========================================== */

.streak-badge {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 5px 10px;

    border: 1px solid rgba(255,190,60,.35);

    border-radius: 20px;

    background: rgba(255,170,30,.06);

    color: #FFD447;

    font-family: var(--font-main);

    font-size: 10px;

    transition:
        transform .3s ease;
}


.streak-badge span {
    font-size: 14px;
}


/* ==========================================
   CLAIMED
========================================== */

.daily-claimed {
    text-align: right;

    min-width: 125px;
}


.daily-claimed span {
    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,.4);

    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}


.daily-claimed strong {
    color: #D2FF47;

    font-family: var(--font-main);

    font-size: 20px;
    font-weight: 900;

    white-space: nowrap;

    text-shadow:
        0 0 12px rgba(210,255,71,.25);
}


/* ==========================================
   RECENT CLAIM
========================================== */

.login-recent-earning {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 11px;

    padding: 9px 13px;

    border: 1px solid rgba(110,170,255,.22);

    border-radius: 15px;

    background: rgba(60,130,255,.035);

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 12px;
}


.login-recent-left {
    display: flex;
    align-items: center;

    gap: 10px;
}


.login-reward-pulse {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 10px rgba(57,217,138,.8);

    animation:
        loginMemberPulse 1.5s infinite;
}


.login-recent-earning strong {
    color: #D2FF47;

    font-size: 15px;
    font-weight: 900;
}


/* ==========================================
   BOTTOM
========================================== */

.login-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 12px;
}


.today-claimers {
    color: rgba(255,255,255,.48);

    font-family: var(--font-main);

    font-size: 12px;
}


.today-claimers strong {
    margin-left: 8px;

    color: #FFFFFF;

    font-size: 21px;
    font-weight: 900;
}


/* ==========================================
   CLAIM BUTTON
========================================== */

.claim-bonus-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 155px;
    min-height: 46px;

    padding: 0 18px;

    border: 0;

    border-radius: 28px;

    background:
        linear-gradient(
            100deg,
            #FFD447,
            #FFB52C
        );

    color: #08265C;

    font-family: var(--font-main);

    font-size: 14px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(255,180,40,.22);

    animation:
        claimButtonFloat 3s ease-in-out infinite;

    transition:
        transform .25s ease;
}


.claim-bonus-button:hover {
    transform: translateY(-4px) scale(1.02);
}


.claim-bonus-button::before,
.claim-bonus-button::after {
    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid rgba(255,210,80,.55);

    border-radius: inherit;

    pointer-events: none;

    animation:
        claimButtonWave 3s ease-out infinite;
}


.claim-bonus-button::after {
    animation-delay: 1.5s;
}


/* ==========================================
   REGISTER BUTTON
========================================== */

.login-register-wrapper {
    margin-top: 14px;
}


.login-register-button {
    width: min(100%, 300px);

    background:
        linear-gradient(
            100deg,
            #FFD447 0%,
            #D9D5B5 50%,
            #6FA5E8 100%
        );

    border-color: #FFE38B;

    color: #08265C;

    box-shadow:
        0 0 0 3px rgba(255,205,70,.08),
        0 8px 24px rgba(80,140,255,.2);
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes loginGiftPulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05) rotate(-2deg);
    }
}


@keyframes loginLivePulse {

    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .55;
    }
}


@keyframes loginMemberPulse {

    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .6;
    }
}


@keyframes claimButtonFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


@keyframes claimButtonWave {

    0% {
        opacity: .7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}


.login-value-flash {
    animation:
        loginValueFlash .65s ease;
}


@keyframes loginValueFlash {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .login-card-header {
        padding: 15px 13px;
        gap: 10px;
    }


    .login-title-area {
        gap: 9px;
    }


    .login-main-icon {
        width: 43px;
        height: 43px;
        font-size: 22px;
    }


    .login-eyebrow {
        font-size: 7px;
        letter-spacing: 1.5px;
    }


    .login-card-header h2 {
        font-size: 18px;
    }


    .login-card-header p {
        font-size: 8px;
        margin-top: 3px;
    }


    .login-live-badge {
        padding: 5px 7px;
        font-size: 7px;
        letter-spacing: 1px;
    }


    .login-live-badge span {
        width: 7px;
        height: 7px;
    }


    .login-card-body {
        padding: 12px 12px 15px;
    }


    .login-members-row {
        gap: 7px;
        margin-bottom: 9px;
        font-size: 10px;
    }


    .login-members-row strong {
        font-size: 20px;
    }


    .login-member-dot {
        width: 9px;
        height: 9px;
    }


    .daily-bonus-card {
        grid-template-columns: 65px 1fr;

        gap: 9px;

        padding: 8px;
    }


    .today-bonus {
        height: 72px;
        border-radius: 12px;
    }


    .today-label {
        font-size: 7px;
    }


    .bonus-plus {
        font-size: 8px;
    }


    .today-bonus strong {
        font-size: 19px;
    }


    .daily-reward-label {
        font-size: 6px;
        letter-spacing: 1.4px;
    }


    .daily-bonus-info h3 {
        font-size: 12px;
    }


    .daily-bonus-info p {
        font-size: 8px;
        margin: 3px 0 5px;
    }


    .streak-badge {
        padding: 4px 7px;
        gap: 5px;
        font-size: 8px;
    }


    .streak-badge span {
        font-size: 11px;
    }


    .daily-claimed {
        grid-column: 1 / -1;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding-top: 6px;

        border-top: 1px solid rgba(255,255,255,.06);

        min-width: 0;
    }


    .daily-claimed span {
        margin: 0;
        font-size: 7px;
    }


    .daily-claimed strong {
        font-size: 16px;
    }


    .login-recent-earning {
        margin-top: 8px;
        padding: 8px 10px;
        font-size: 8px;
    }


    .login-recent-earning strong {
        font-size: 11px;
    }


    .login-bottom-row {
        margin-top: 9px;
        gap: 9px;
    }


    .today-claimers {
        font-size: 8px;
    }


    .today-claimers strong {
        margin-left: 5px;
        font-size: 17px;
    }


    .claim-bonus-button {
        min-width: 112px;
        min-height: 38px;
        padding: 0 13px;
        gap: 7px;
        font-size: 10px;
    }


    .login-register-wrapper {
        margin-top: 11px;
    }


    .login-register-button {
        width: min(100%, 280px);
        min-height: 44px;
        font-size: 13px;
    }

}


/* ==========================================
   VERY SMALL PHONES
========================================== */

@media (max-width: 360px) {

    .login-card-header {
        padding: 14px 10px;
    }


    .login-main-icon {
        width: 39px;
        height: 39px;
        font-size: 20px;
    }


    .login-card-header h2 {
        font-size: 16px;
    }


    .login-card-header p {
        font-size: 7px;
    }


    .login-live-badge {
        padding: 4px 6px;
        font-size: 6px;
    }


    .login-card-body {
        padding: 11px 9px 14px;
    }


    .today-bonus {
        height: 65px;
    }


    .daily-bonus-info h3 {
        font-size: 11px;
    }


    .claim-bonus-button {
        min-width: 102px;
        min-height: 36px;
        font-size: 9px;
    }


    .login-register-button {
        width: min(100%, 270px);
        min-height: 42px;
        font-size: 12px;
    }

}

/* ==========================================
   INCOME STREAM 09
   PLAY GAMES & EARN
========================================== */

.game-earning-section {
    margin-top: 0;
}


/* ==========================================
   CARD
========================================== */

.game-earning-card {
    padding: 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(140,80,255,.10),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #07142F,
            #16103A,
            #07142F
        );

    border-color: rgba(142,72,255,.45);
}


/* ==========================================
   HEADER
========================================== */

.game-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 25px;

    background:
        linear-gradient(
            135deg,
            #47208A,
            #6E2DC2,
            #35176D
        );

    border-bottom: 1px solid rgba(180,120,255,.4);
}


.game-title-area {
    display: flex;
    align-items: center;

    gap: 15px;
}


.game-main-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border: 2px solid rgba(255,255,255,.3);

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #B15CFF,
            #6E35D7
        );

    color: #FFFFFF;

    font-size: 32px;

    box-shadow:
        0 0 22px rgba(142,72,255,.45);

    animation:
        gameIconFloat 2.5s ease-in-out infinite;
}


/* ==========================================
   TITLE
========================================== */

.game-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #E4C8FF;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
}


.game-card-header h2 {
    margin: 0;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 29px;
    font-weight: 900;

    line-height: 1.1;
}


.game-card-header p {
    margin: 4px 0 0;

    color: rgba(255,255,255,.7);

    font-family: var(--font-main);

    font-size: 13px;
}


/* ==========================================
   LIVE BADGE
========================================== */

.game-live-badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border: 1px solid rgba(200,160,255,.6);

    border-radius: 30px;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;
}


.game-live-badge span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 12px rgba(57,217,138,.9);

    animation:
        gameLivePulse 1.5s infinite;
}


/* ==========================================
   BODY
========================================== */

.game-card-body {
    padding: 15px 25px 18px;
}


/* ==========================================
   PLAYERS
========================================== */

.game-players-row {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 10px;

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 14px;
}


.game-players-row strong {
    color: #FFFFFF;

    font-size: 24px;
    font-weight: 900;
}


.game-player-dot {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 12px rgba(57,217,138,.8);

    animation:
        gamePlayerPulse 1.5s infinite;
}


/* ==========================================
   GAME TABS
========================================== */

.game-tabs {
    display: flex;

    gap: 8px;

    margin-bottom: 10px;
}


.game-tab {
    padding: 6px 13px;

    border: 1px solid rgba(180,120,255,.4);

    border-radius: 20px;

    background: rgba(142,72,255,.06);

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 10px;
    font-weight: 800;

    cursor: pointer;

    transition:
        .25s ease;
}


.game-tab.active {
    background:
        linear-gradient(
            100deg,
            #8E48FF,
            #C05CFF
        );

    color: #FFFFFF;

    border-color: transparent;

    box-shadow:
        0 5px 15px rgba(142,72,255,.25);
}


/* ==========================================
   LIVE GAME BOX
========================================== */

.live-game-box {
    padding: 11px 13px;

    border: 1px solid rgba(150,100,255,.25);

    border-radius: 17px;

    background:
        rgba(10,8,30,.6);

    transition:
        opacity .3s ease,
        transform .3s ease;
}


.live-game-box.game-changing {
    opacity: .45;
    transform: scale(.985);
}


/* ==========================================
   GAME TOP
========================================== */

.game-box-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 8px;
}


.game-type-label {
    color: #C477FF;

    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}


.game-round {
    color: rgba(255,255,255,.35);

    font-family: var(--font-main);

    font-size: 8px;
}


/* ==========================================
   BOARD
========================================== */

.mini-board {
    display: grid;

    grid-template-columns:
        repeat(8, 1fr);

    width: 210px;
    height: 210px;

    margin: 0 auto;

    border: 3px solid #8E48FF;

    border-radius: 7px;

    overflow: hidden;

    box-shadow:
        0 0 18px rgba(142,72,255,.2);
}


/* CHESS */

.chess-board div {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;

    background: #DCCBEE;
}


.chess-board div:nth-child(
    16n+1
),
.chess-board div:nth-child(
    16n+3
),
.chess-board div:nth-child(
    16n+5
),
.chess-board div:nth-child(
    16n+7
),
.chess-board div:nth-child(
    16n+10
),
.chess-board div:nth-child(
    16n+12
),
.chess-board div:nth-child(
    16n+14
),
.chess-board div:nth-child(
    16n+16
) {
    background: #67409A;
}


/* DRAUGHTS */

.draughts-board {
    display: none;

    background: #171329;
}


.draughts-board div {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #E7D7F5;
}


.draughts-board div:nth-child(
    16n+1
),
.draughts-board div:nth-child(
    16n+3
),
.draughts-board div:nth-child(
    16n+5
),
.draughts-board div:nth-child(
    16n+7
),
.draughts-board div:nth-child(
    16n+10
),
.draughts-board div:nth-child(
    16n+12
),
.draughts-board div:nth-child(
    16n+14
),
.draughts-board div:nth-child(
    16n+16
) {
    background: #563583;
}


.draught-piece {
    width: 60%;
    height: 60%;

    border-radius: 50%;

    box-shadow:
        inset 0 2px 3px rgba(255,255,255,.3),
        0 2px 4px rgba(0,0,0,.35);
}


.draught-piece.dark {
    background:
        radial-gradient(
            circle at 35% 30%,
            #A45CFF,
            #54219C
        );
}


.draught-piece.light {
    background:
        radial-gradient(
            circle at 35% 30%,
            #FFFFFF,
            #BFA6D9
        );
}


/* ==========================================
   MATCH INFO
========================================== */

.game-match-info {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 10px;
}


.game-player {
    display: flex;
    align-items: center;

    gap: 6px;
}


.game-avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    border-radius: 50%;

    background: rgba(142,72,255,.15);

    font-size: 13px;
}


.game-player strong {
    display: block;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 10px;
}


.game-player small {
    display: block;

    color: rgba(255,255,255,.35);

    font-family: var(--font-main);

    font-size: 7px;
}


.game-vs {
    color: #C05CFF;

    font-family: var(--font-main);

    font-size: 9px;
    font-weight: 900;
}


/* ==========================================
   REWARD
========================================== */

.game-reward-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 10px;

    padding: 9px 13px;

    border: 1px solid rgba(120,190,80,.25);

    border-radius: 14px;

    background: rgba(70,160,70,.025);

    color: rgba(255,255,255,.5);

    font-family: var(--font-main);

    font-size: 11px;
}


.game-reward-left {
    display: flex;
    align-items: center;

    gap: 9px;
}


.game-reward-pulse {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 10px rgba(57,217,138,.8);

    animation:
        gamePlayerPulse 1.5s infinite;
}


.game-reward-row strong {
    color: #D2FF47;

    font-size: 15px;
    font-weight: 900;

    white-space: nowrap;
}


/* ==========================================
   BOTTOM
========================================== */

.game-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 11px;
}


.games-available {
    color: rgba(255,255,255,.45);

    font-family: var(--font-main);

    font-size: 11px;
}


.games-available strong {
    margin-left: 7px;

    color: #FFFFFF;

    font-size: 20px;
}


/* ==========================================
   PLAY BUTTON
========================================== */

.play-game-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 140px;
    min-height: 43px;

    padding: 0 17px;

    border: 0;

    border-radius: 25px;

    background:
        linear-gradient(
            100deg,
            #A450FF,
            #D05CFF
        );

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 13px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 7px 20px rgba(142,72,255,.25);

    animation:
        gameButtonFloat 3s ease-in-out infinite;
}


.play-game-button::before,
.play-game-button::after {
    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid rgba(190,130,255,.55);

    border-radius: inherit;

    pointer-events: none;

    animation:
        gameButtonWave 3s ease-out infinite;
}


.play-game-button::after {
    animation-delay: 1.5s;
}


/* ==========================================
   REGISTER
========================================== */

.game-register-wrapper {
    margin-top: 13px;
}


.game-register-button {
    width: min(100%, 300px);

    background:
        linear-gradient(
            100deg,
            #A450FF,
            #C15CFF,
            #E05CC9
        );

    border-color: #E5C5FF;

    color: #FFFFFF;

    box-shadow:
        0 0 0 3px rgba(180,100,255,.08),
        0 8px 24px rgba(142,72,255,.25);
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes gameIconFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px) rotate(-2deg);
    }
}


@keyframes gameLivePulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.35);
    }
}


@keyframes gamePlayerPulse {

    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .6;
    }
}


@keyframes gameButtonFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


@keyframes gameButtonWave {

    0% {
        opacity: .7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}


.game-reward-flash {
    animation:
        gameRewardFlash .7s ease;
}


@keyframes gameRewardFlash {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.16);
    }

    100% {
        transform: scale(1);
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .game-card-header {
        padding: 15px 13px;
        gap: 10px;
    }


    .game-title-area {
        gap: 9px;
    }


    .game-main-icon {
        width: 43px;
        height: 43px;
        font-size: 23px;
    }


    .game-eyebrow {
        font-size: 7px;
        letter-spacing: 1.5px;
    }


    .game-card-header h2 {
        font-size: 18px;
    }


    .game-card-header p {
        font-size: 8px;
    }


    .game-live-badge {
        padding: 5px 7px;
        font-size: 7px;
        letter-spacing: 1px;
    }


    .game-live-badge span {
        width: 7px;
        height: 7px;
    }


    .game-card-body {
        padding: 12px 12px 15px;
    }


    .game-players-row {
        gap: 7px;
        margin-bottom: 8px;
        font-size: 9px;
    }


    .game-players-row strong {
        font-size: 19px;
    }


    .game-player-dot {
        width: 9px;
        height: 9px;
    }


    .game-tabs {
        margin-bottom: 7px;
    }


    .game-tab {
        padding: 5px 9px;
        font-size: 8px;
    }


    .live-game-box {
        padding: 8px 9px;
    }


    .game-type-label {
        font-size: 7px;
    }


    .game-round {
        font-size: 6px;
    }


    .mini-board {
        width: 150px;
        height: 150px;

        border-width: 2px;
    }


    .chess-board div {
        font-size: 15px;
    }


    .game-match-info {
        gap: 12px;
        margin-top: 7px;
    }


    .game-avatar {
        width: 23px;
        height: 23px;
        font-size: 11px;
    }


    .game-player strong {
        font-size: 8px;
    }


    .game-player small {
        font-size: 6px;
    }


    .game-vs {
        font-size: 7px;
    }


    .game-reward-row {
        margin-top: 7px;
        padding: 7px 9px;
        font-size: 8px;
    }


    .game-reward-row strong {
        font-size: 11px;
    }


    .game-bottom-row {
        margin-top: 8px;
        gap: 8px;
    }


    .games-available {
        font-size: 7px;
    }


    .games-available strong {
        font-size: 16px;
    }


    .play-game-button {
        min-width: 108px;
        min-height: 36px;

        padding: 0 12px;

        gap: 6px;

        font-size: 9px;
    }


    .game-register-wrapper {
        margin-top: 10px;
    }


    .game-register-button {
        width: min(100%, 280px);

        min-height: 43px;

        font-size: 13px;
    }

}


/* ==========================================
   VERY SMALL PHONES
========================================== */

@media (max-width: 360px) {

    .mini-board {
        width: 132px;
        height: 132px;
    }


    .chess-board div {
        font-size: 13px;
    }


    .game-card-header h2 {
        font-size: 16px;
    }


    .game-card-header p {
        font-size: 7px;
    }


    .game-reward-row {
        font-size: 7px;
    }


    .play-game-button {
        min-width: 100px;
        min-height: 34px;
        font-size: 8px;
    }


    .game-register-button {
        width: min(100%, 270px);

        min-height: 41px;

        font-size: 12px;
    }

}

/* ==========================================
   WHAT OUR COMMUNITY SAYS
   MYFLEXPESA ORIGINAL THEME
========================================== */

.community-section {
    width: 100%;
    padding: 50px 0 38px;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(57,217,138,.06),
            transparent 55%
        );

    overflow: hidden;
}


/* ==========================================
   SECTION HEADER
========================================== */

.community-header {
    width: calc(100% - 30px);
    max-width: 1000px;

    margin: 0 auto 32px;

    text-align: center;
}


.community-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #39D98A;

    font-family: var(--font-main);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 3px;
}


.community-header h2 {
    margin: 0;

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 46px;
    font-weight: 900;

    line-height: 1.1;

    letter-spacing: -1.8px;
}


.community-header p {
    max-width: 850px;

    margin: 13px auto 0;

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);

    font-size: 17px;

    line-height: 1.45;
}


/* ==========================================
   CONTINUOUS SLIDER
========================================== */

.community-slider {
    position: relative;

    width: 100%;

    overflow: hidden;
}


/* Fade edges */

.community-slider::before,
.community-slider::after {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    width: 110px;

    z-index: 5;

    pointer-events: none;
}


.community-slider::before {
    left: 0;

    background:
        linear-gradient(
            90deg,
            #07142F,
            transparent
        );
}


.community-slider::after {
    right: 0;

    background:
        linear-gradient(
            270deg,
            #07142F,
            transparent
        );
}


/* ==========================================
   MOVING TRACK
========================================== */

.community-track {
    display: flex;

    width: max-content;

    gap: 25px;

    padding: 5px 15px;

    animation:
        communityScroll 38s linear infinite;
}


.community-track:hover {
    animation-play-state: paused;
}


/* ==========================================
   TESTIMONIAL CARD
========================================== */

.community-card {
    flex: 0 0 430px;

    min-height: 235px;

    padding: 25px;

    border: 1px solid rgba(57,217,138,.20);

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #0B1B3A 0%,
            #07142F 55%,
            #091A35 100%
        );

    box-shadow:
        0 14px 32px rgba(0,0,0,.22),
        inset 0 0 20px rgba(57,217,138,.018);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.community-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(57,217,138,.45);

    box-shadow:
        0 18px 38px rgba(0,0,0,.28),
        0 0 20px rgba(57,217,138,.06);
}


/* ==========================================
   PROFILE ROW
========================================== */

.testimonial-top {
    display: flex;

    align-items: center;

    gap: 13px;
}


/* ==========================================
   PROFILE INITIAL
========================================== */

.profile-initial {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 60px;
    height: 60px;

    flex-shrink: 0;

    border-radius: 50%;

    border: 2px solid rgba(255,255,255,.20);

    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 19px;

    font-weight: 900;

    animation:
        profilePulse 3s ease-in-out infinite;
}


/* ==========================================
   UNIQUE PERMANENT THEME COLORS
========================================== */


/* 🇺🇬 Uganda */

.profile-uganda {
    background:
        linear-gradient(
            135deg,
            #1455B8,
            #2F8BEA
        );

    box-shadow:
        0 0 18px rgba(47,139,234,.28);
}


/* 🇰🇪 Kenya */

.profile-kenya {
    background:
        linear-gradient(
            135deg,
            #079A63,
            #39D98A
        );

    box-shadow:
        0 0 18px rgba(57,217,138,.28);
}


/* 🇹🇿 Tanzania */

.profile-tanzania {
    background:
        linear-gradient(
            135deg,
            #E3A900,
            #FFD447
        );

    color: #07142F;

    box-shadow:
        0 0 18px rgba(255,212,71,.28);
}


/* 🇳🇬 Nigeria */

.profile-nigeria {
    background:
        linear-gradient(
            135deg,
            #08784A,
            #2678E8
        );

    box-shadow:
        0 0 18px rgba(57,217,138,.22);
}


/* 🇬🇭 Ghana */

.profile-ghana {
    background:
        linear-gradient(
            135deg,
            #0FAF72,
            #FFD447
        );

    color: #07142F;

    box-shadow:
        0 0 18px rgba(255,212,71,.25);
}


/* 🇷🇼 Rwanda */

.profile-rwanda {
    background:
        linear-gradient(
            135deg,
            #2678E8,
            #FFD447
        );

    color: #07142F;

    box-shadow:
        0 0 18px rgba(47,139,234,.25);
}


/* ==========================================
   PROFILE INFORMATION
========================================== */

.profile-info {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.profile-info strong {
    color: #FFFFFF;

    font-family: var(--font-main);

    font-size: 17px;

    font-weight: 900;
}


.profile-info span {
    color: rgba(255,255,255,.48);

    font-family: var(--font-main);

    font-size: 12px;
}


/* ==========================================
   FIVE STARS
========================================== */

.testimonial-stars {
    margin-left: auto;

    color: #FFD447;

    font-size: 18px;

    letter-spacing: 1px;

    white-space: nowrap;

    text-shadow:
        0 0 10px rgba(255,212,71,.30);

    animation:
        starsGlow 2s ease-in-out infinite;
}


/* ==========================================
   TESTIMONIAL TEXT
========================================== */

.testimonial-text {
    margin: 23px 0 20px;

    color: rgba(255,255,255,.68);

    font-family: var(--font-main);

    font-size: 14px;

    line-height: 1.6;
}


/* ==========================================
   CARD BOTTOM
========================================== */

.testimonial-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 14px;

    border-top:
        1px solid rgba(255,255,255,.07);

    color: rgba(255,255,255,.32);

    font-family: var(--font-main);

    font-size: 10px;
}


/* ==========================================
   LIVE STATUS
========================================== */

.testimonial-live {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: rgba(255,255,255,.55);

    font-weight: 800;
}


.testimonial-live i {
    width: 8px;
    height: 8px;

    display: block;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 12px rgba(57,217,138,.9);

    animation:
        communityLivePulse 1.5s infinite;
}


/* ==========================================
   50K+ MEMBERS
========================================== */

.community-count {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    margin-top: 30px;

    color: rgba(255,255,255,.45);

    font-family: var(--font-main);

    font-size: 14px;
}


.community-count strong {
    color: #FFD447;

    font-size: 18px;

    font-weight: 900;
}


.community-count-dot {
    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 15px rgba(57,217,138,.85);

    animation:
        communityLivePulse 1.5s infinite;
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes communityScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform:
            translateX(
                calc(-50% - 12.5px)
            );
    }

}


@keyframes communityLivePulse {

    0%,
    100% {
        transform: scale(1);

        opacity: 1;
    }

    50% {
        transform: scale(1.35);

        opacity: .55;
    }

}


@keyframes profilePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.035);
    }

}


@keyframes starsGlow {

    0%,
    100% {
        opacity: .7;

        transform: scale(1);
    }

    50% {
        opacity: 1;

        transform: scale(1.06);
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .community-section {
        padding: 32px 0 28px;
    }


    .community-header {
        width: calc(100% - 24px);

        margin-bottom: 23px;
    }


    .community-eyebrow {
        margin-bottom: 8px;

        font-size: 8px;

        letter-spacing: 2px;
    }


    .community-header h2 {
        font-size: 27px;

        letter-spacing: -1px;
    }


    .community-header p {
        margin-top: 8px;

        font-size: 10px;

        line-height: 1.45;
    }


    .community-track {
        gap: 14px;

        padding: 4px 10px;

        animation-duration: 30s;
    }


    .community-card {
        flex-basis: 300px;

        min-height: 185px;

        padding: 17px;

        border-radius: 18px;
    }


    .testimonial-top {
        gap: 9px;
    }


    .profile-initial {
        width: 45px;
        height: 45px;

        font-size: 14px;
    }


    .profile-info {
        gap: 3px;
    }


    .profile-info strong {
        font-size: 13px;
    }


    .profile-info span {
        font-size: 9px;
    }


    .testimonial-stars {
        font-size: 12px;

        letter-spacing: 0;
    }


    .testimonial-text {
        margin: 15px 0 14px;

        font-size: 9px;

        line-height: 1.55;
    }


    .testimonial-bottom {
        padding-top: 10px;

        font-size: 7px;
    }


    .testimonial-live {
        gap: 5px;
    }


    .testimonial-live i {
        width: 7px;
        height: 7px;
    }


    .community-slider::before,
    .community-slider::after {
        width: 40px;
    }


    .community-count {
        gap: 7px;

        margin-top: 21px;

        font-size: 9px;
    }


    .community-count strong {
        font-size: 12px;
    }


    .community-count-dot {
        width: 8px;
        height: 8px;
    }

}


/* ==========================================
   VERY SMALL PHONES
========================================== */

@media (max-width: 360px) {

    .community-header h2 {
        font-size: 24px;
    }


    .community-header p {
        font-size: 9px;
    }


    .community-card {
        flex-basis: 275px;

        min-height: 175px;

        padding: 15px;
    }


    .profile-initial {
        width: 42px;
        height: 42px;

        font-size: 13px;
    }


    .testimonial-stars {
        font-size: 10px;
    }


    .testimonial-text {
        font-size: 8px;
    }

}

/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {
    width: 100%;
    padding: 55px 15px 45px;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(57,217,138,.055),
            transparent 55%
        );
}

.faq-header {
    max-width: 850px;
    margin: 0 auto 32px;
    text-align: center;
}

.faq-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #39D98A;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.5px;
}

.faq-header h2 {
    margin: 0;
    color: #FFFFFF;
    font-family: var(--font-main);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.faq-header h2 span {
    color: #FFD447;
}

.faq-header p {
    max-width: 650px;
    margin: 12px auto 0;
    color: rgba(255,255,255,.52);
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.5;
}

/* FAQ CONTAINER */

.faq-container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

/* FAQ ITEM */

.faq-item {
    margin-bottom: 11px;
    overflow: hidden;
    border: 1px solid rgba(57,217,138,.16);
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            #0B1B3A 0%,
            #07142F 60%,
            #091A35 100%
        );
    box-shadow:
        0 8px 22px rgba(0,0,0,.16);
    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.faq-item:hover {
    border-color: rgba(57,217,138,.38);
}

/* QUESTION */

.faq-question {
    width: 100%;
    min-height: 62px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    border: none;
    outline: none;
    background: transparent;

    color: #FFFFFF;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 800;
    text-align: left;

    cursor: pointer;
}

/* PLUS ICON */

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;
    flex-shrink: 0;

    border: 1px solid rgba(255,212,71,.45);
    border-radius: 50%;

    color: #FFD447;
    font-size: 21px;
    font-weight: 400;
    line-height: 1;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

/* ANSWER */

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease;
}

.faq-answer p {
    min-height: 0;
    overflow: hidden;

    margin: 0;
    padding: 0 20px;

    color: rgba(255,255,255,.58);
    font-family: var(--font-main);
    font-size: 13px;
    line-height: 1.65;

    transition:
        padding .35s ease;
}

/* ACTIVE FAQ */

.faq-item.active {
    border-color: rgba(57,217,138,.42);
    box-shadow:
        0 10px 28px rgba(0,0,0,.22),
        0 0 20px rgba(57,217,138,.035);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-top: 0;
    padding-bottom: 18px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #FFD447;
    color: #07142F;
}

/* BOTTOM SUPPORT */

.faq-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin: 27px auto 0;

    color: rgba(255,255,255,.45);
    font-family: var(--font-main);
    font-size: 12px;
}

.faq-bottom-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #39D98A;
    box-shadow: 0 0 12px rgba(57,217,138,.8);

    animation: faqDotPulse 1.5s infinite;
}

.faq-bottom a {
    color: #FFD447;
    font-weight: 800;
    text-decoration: none;
    transition: color .25s ease;
}

.faq-bottom a:hover {
    color: #39D98A;
}

@keyframes faqDotPulse {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .55;
    }
}

/* =====================================================
   FAQ MOBILE
===================================================== */

@media (max-width: 600px) {

    .faq-section {
        padding: 35px 12px 30px;
    }

    .faq-header {
        margin-bottom: 22px;
    }

    .faq-eyebrow {
        margin-bottom: 7px;
        font-size: 8px;
        letter-spacing: 1.8px;
    }

    .faq-header h2 {
        font-size: 27px;
        letter-spacing: -1px;
    }

    .faq-header p {
        margin-top: 8px;
        font-size: 10px;
        line-height: 1.45;
    }

    .faq-item {
        margin-bottom: 8px;
        border-radius: 12px;
    }

    .faq-question {
        min-height: 50px;
        padding: 0 13px;
        gap: 10px;
        font-size: 11px;
    }

    .faq-icon {
        width: 25px;
        height: 25px;
        font-size: 18px;
    }

    .faq-answer p {
        padding-left: 13px;
        padding-right: 13px;
        font-size: 9px;
        line-height: 1.6;
    }

    .faq-item.active .faq-answer p {
        padding-bottom: 13px;
    }

    .faq-bottom {
        gap: 6px;
        margin-top: 19px;
        font-size: 8px;
    }

    .faq-bottom-dot {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 360px) {

    .faq-header h2 {
        font-size: 24px;
    }

    .faq-header p {
        font-size: 9px;
    }

    .faq-question {
        min-height: 47px;
        padding: 0 11px;
        font-size: 10px;
    }

    .faq-icon {
        width: 23px;
        height: 23px;
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 8px;
    }

    .faq-bottom {
        font-size: 7px;
    }
}

/* =====================================================
   MYFLEXPESA NETWORK
===================================================== */

.network-section {
    width: 100%;
    padding: 55px 15px 45px;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(57,217,138,.055),
            transparent 55%
        );
    overflow: hidden;
}


/* ================= HEADER ================= */

.network-header {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 34px;
    text-align: center;
}

.network-eyebrow {
    display: block;
    margin-bottom: 10px;

    color: #39D98A;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.5px;
}

.network-header h2 {
    margin: 0;

    color: #FFFFFF;
    font-family: var(--font-main);
    font-size: 44px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.8px;
}

.network-header h2 span {
    color: #FFD447;
}

.network-header p {
    max-width: 720px;
    margin: 13px auto 0;

    color: rgba(255,255,255,.52);
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.5;
}


/* ================= COUNTRY COUNT ================= */

.network-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-top: 22px;
    padding: 10px 25px;

    border: 1px solid rgba(57,217,138,.35);
    border-radius: 40px;

    background: rgba(57,217,138,.035);

    box-shadow:
        0 0 20px rgba(57,217,138,.04);

    animation: networkCountPulse 3s ease-in-out infinite;
}

.network-count strong {
    color: #39D98A;
    font-family: var(--font-main);
    font-size: 28px;
    font-weight: 900;
}

.network-count span {
    color: rgba(255,255,255,.48);
    font-family: var(--font-main);
    font-size: 13px;
}


/* ================= COUNTRIES ================= */

.network-countries {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* ================= REGION CARD ================= */

.network-region {
    position: relative;

    width: 100%;
    padding: 24px;

    border: 1px solid rgba(57,217,138,.18);
    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #0B1B3A 0%,
            #07142F 60%,
            #091A35 100%
        );

    box-shadow:
        0 12px 30px rgba(0,0,0,.18),
        inset 0 0 25px rgba(57,217,138,.012);

    transition:
        border-color .4s ease,
        box-shadow .4s ease,
        transform .4s ease;
}

.network-region.region-active {
    border-color: rgba(57,217,138,.55);

    box-shadow:
        0 15px 35px rgba(0,0,0,.24),
        0 0 28px rgba(57,217,138,.07);
}


/* ================= REGION HEADER ================= */

.region-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 19px;
}

.region-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.region-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    flex-shrink: 0;

    border: 1px solid rgba(57,217,138,.30);
    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            rgba(57,217,138,.14),
            rgba(255,212,71,.06)
        );

    color: #FFD447;
    font-size: 25px;

    box-shadow:
        0 0 20px rgba(57,217,138,.06);

    animation: regionIconPulse 3s ease-in-out infinite;
}

.region-title h3 {
    margin: 0 0 4px;

    color: #FFFFFF;
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.region-title span {
    color: rgba(255,255,255,.38);
    font-family: var(--font-main);
    font-size: 11px;
}


/* ================= STATUS ================= */

.region-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 13px;

    border: 1px solid rgba(57,217,138,.35);
    border-radius: 30px;

    color: #39D98A;
    font-family: var(--font-main);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.3px;

    white-space: nowrap;
}

.status-live-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;

    border-radius: 50%;
    background: #39D98A;

    box-shadow:
        0 0 10px rgba(57,217,138,.9);

    animation: networkLiveDot 1.4s infinite;
}

.expanding-status {
    color: #FFD447;
    border-color: rgba(255,212,71,.35);
}

.expanding-status .status-live-dot {
    background: #FFD447;
    box-shadow:
        0 0 10px rgba(255,212,71,.8);
}


/* ================= COUNTRY LIST ================= */

.country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* ================= COUNTRY PILL ================= */

.country-pill {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    min-height: 43px;
    padding: 0 13px;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;

    background:
        rgba(255,255,255,.025);

    color: rgba(255,255,255,.68);

    font-family: var(--font-main);

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease,
        color .35s ease;
}

.country-pill > span {
    font-size: 17px;
    line-height: 1;
}

.country-pill strong {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.country-pill i {
    width: 7px;
    height: 7px;

    margin-left: 2px;

    border-radius: 50%;
    background: #39D98A;

    box-shadow:
        0 0 8px rgba(57,217,138,.8);

    animation: countryDotPulse 1.8s infinite;
}


/* ================= SELECTED COUNTRY ================= */

.country-pill.country-selected {
    transform: translateY(-4px) scale(1.025);

    border-color: #39D98A;

    background:
        linear-gradient(
            135deg,
            rgba(57,217,138,.13),
            rgba(255,212,71,.045)
        );

    color: #FFFFFF;

    box-shadow:
        0 0 20px rgba(57,217,138,.13),
        inset 0 0 12px rgba(57,217,138,.025);
}

.country-pill.country-selected strong {
    color: #FFFFFF;
}

.country-pill.country-selected i {
    background: #FFD447;

    box-shadow:
        0 0 12px rgba(255,212,71,.9);
}


/* ================= LIVE FOOTER ================= */

.network-live-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 28px;

    color: rgba(255,255,255,.40);
    font-family: var(--font-main);
    font-size: 11px;
}

.network-live-footer strong {
    color: #39D98A;
    font-size: 10px;
    letter-spacing: 1px;
}

.network-live-indicator {
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #39D98A;

    box-shadow:
        0 0 13px rgba(57,217,138,.9);

    animation: networkLiveDot 1.4s infinite;
}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes networkLiveDot {

    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.45);
        opacity: .55;
    }

}

@keyframes countryDotPulse {

    0%,100% {
        opacity: .65;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }

}

@keyframes regionIconPulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.035);
    }

}

@keyframes networkCountPulse {

    0%,100% {
        box-shadow:
            0 0 20px rgba(57,217,138,.04);
    }

    50% {
        box-shadow:
            0 0 28px rgba(57,217,138,.12);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .network-section {
        padding: 35px 12px 30px;
    }

    .network-header {
        margin-bottom: 23px;
    }

    .network-eyebrow {
        margin-bottom: 7px;
        font-size: 8px;
        letter-spacing: 1.7px;
    }

    .network-header h2 {
        font-size: 27px;
        letter-spacing: -1px;
    }

    .network-header p {
        margin-top: 8px;
        font-size: 10px;
        line-height: 1.45;
    }

    .network-count {
        gap: 8px;
        margin-top: 15px;
        padding: 7px 17px;
    }

    .network-count strong {
        font-size: 21px;
    }

    .network-count span {
        font-size: 9px;
    }

    .network-countries {
        gap: 10px;
    }

    .network-region {
        padding: 15px;
        border-radius: 17px;
    }

    .region-header {
        gap: 8px;
        margin-bottom: 13px;
    }

    .region-title {
        gap: 9px;
    }

    .region-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 18px;
    }

    .region-title h3 {
        margin-bottom: 2px;
        font-size: 13px;
        letter-spacing: .5px;
    }

    .region-title span {
        font-size: 8px;
    }

    .region-status {
        padding: 6px 8px;
        gap: 5px;
        font-size: 7px;
        letter-spacing: .8px;
    }

    .status-live-dot {
        width: 6px;
        height: 6px;
    }

    .country-list {
        gap: 7px;
    }

    .country-pill {
        min-height: 34px;
        padding: 0 9px;
        gap: 5px;
        border-radius: 10px;
    }

    .country-pill > span {
        font-size: 13px;
    }

    .country-pill strong {
        font-size: 8px;
    }

    .country-pill i {
        width: 5px;
        height: 5px;
    }

    .network-live-footer {
        gap: 6px;
        margin-top: 18px;
        font-size: 8px;
    }

    .network-live-footer strong {
        font-size: 7px;
    }

    .network-live-indicator {
        width: 6px;
        height: 6px;
    }

}


@media (max-width: 360px) {

    .network-header h2 {
        font-size: 24px;
    }

    .network-header p {
        font-size: 9px;
    }

    .network-region {
        padding: 13px;
    }

    .region-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .region-title h3 {
        font-size: 11px;
    }

    .region-title span {
        font-size: 7px;
    }

    .country-pill {
        min-height: 32px;
        padding: 0 7px;
    }

    .country-pill > span {
        font-size: 12px;
    }

    .country-pill strong {
        font-size: 7px;
    }

    .region-status {
        padding: 5px 6px;
        font-size: 6px;
    }

}

/* =====================================================
   FINAL CTA SECTION
===================================================== */

.final-cta-section {
    position: relative;
    width: 100%;
    padding: 70px 15px 65px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(57,217,138,.10),
            transparent 45%
        ),
        #07142F;
}


/* MOVING GLOW */

.cta-glow {
    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    filter: blur(70px);

    pointer-events: none;

    opacity: .18;

    animation: ctaGlowMove 7s ease-in-out infinite alternate;
}

.cta-glow-one {
    top: 5%;
    left: 5%;
    background: #39D98A;
}

.cta-glow-two {
    right: 5%;
    bottom: 0;
    background: #FFD447;
    animation-delay: 2s;
}


/* CTA BOX */

.final-cta {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 45px 35px;

    text-align: center;

    border: 1px solid rgba(57,217,138,.25);
    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(11,27,58,.96),
            rgba(7,20,47,.98)
        );

    box-shadow:
        0 20px 50px rgba(0,0,0,.25),
        inset 0 0 30px rgba(57,217,138,.018);
}


/* EYEBROW */

.cta-eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #39D98A;

    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2.5px;
}


/* HEADING */

.final-cta h2 {
    margin: 0;

    color: #FFFFFF;

    font-family: var(--font-main);
    font-size: 46px;
    font-weight: 900;

    line-height: 1.1;
    letter-spacing: -1.8px;
}

.final-cta h2 span {
    color: #FFD447;
}


/* DESCRIPTION */

.final-cta > p {
    max-width: 650px;

    margin: 14px auto 0;

    color: rgba(255,255,255,.55);

    font-family: var(--font-main);
    font-size: 15px;

    line-height: 1.55;
}


/* CTA BUTTONS */

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 27px;
}


/* PRIMARY */

.cta-primary {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 53px;

    padding: 0 25px;

    border: 2px solid #FFD447;
    border-radius: 30px;

    background:
        linear-gradient(
            100deg,
            #39D98A 0%,
            #8FE36B 45%,
            #FFD447 100%
        );

    color: #07142F;

    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 900;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(57,217,138,.15);

    animation: ctaButtonPulse 3s ease-in-out infinite;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.cta-primary strong {
    font-size: 23px;
    font-weight: 500;
}

.cta-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(57,217,138,.25);
}


/* SECONDARY */

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 53px;

    padding: 0 22px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 30px;

    background: rgba(255,255,255,.025);

    color: #FFFFFF;

    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        border-color .3s ease,
        transform .3s ease,
        background .3s ease;
}

.cta-secondary:hover {
    transform: translateY(-3px);

    border-color: rgba(57,217,138,.45);

    background: rgba(57,217,138,.05);
}


/* TRUST */

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 24px;
}

.cta-trust span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: rgba(255,255,255,.40);

    font-family: var(--font-main);
    font-size: 10px;
}

.cta-trust i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 8px rgba(57,217,138,.8);
}


@keyframes ctaButtonPulse {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

}

@keyframes ctaGlowMove {

    0% {
        transform: translate(0,0) scale(1);
    }

    100% {
        transform: translate(80px,-30px) scale(1.2);
    }

}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    width: 100%;

    padding: 50px 15px 20px;

    background:
        linear-gradient(
            180deg,
            #07142F 0%,
            #050F24 100%
        );

    border-top: 1px solid rgba(57,217,138,.10);
}


/* FOOTER MAIN */

.footer-main {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1fr
        1fr;

    gap: 45px;
}


/* BRAND */

.footer-brand {
    max-width: 330px;
}


/* LOGO */

.footer-logo {
    display: inline-block;

    margin-bottom: 13px;

    color: #FFFFFF;

    font-family: var(--font-main);
    font-size: 27px;
    font-weight: 900;

    text-decoration: none;

    letter-spacing: -1px;
}

.footer-my {
    color: #FFFFFF;
}

.footer-flex {
    color: #FFD447;
}

.footer-pesa {
    color: #39D98A;
}


/* BRAND DESCRIPTION */

.footer-brand > p {
    margin: 0;

    color: rgba(255,255,255,.40);

    font-family: var(--font-main);
    font-size: 11px;

    line-height: 1.6;
}


/* FOOTER LIVE */

.footer-live {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: 17px;

    color: #39D98A;

    font-family: var(--font-main);
    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}

.footer-live-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #39D98A;

    box-shadow:
        0 0 10px rgba(57,217,138,.9);

    animation: footerLivePulse 1.5s infinite;
}


/* FOOTER COLUMNS */

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {
    margin: 0 0 6px;

    color: #FFD447;

    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    width: fit-content;

    color: rgba(255,255,255,.42);

    font-family: var(--font-main);
    font-size: 10px;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.footer-column a:hover {
    color: #39D98A;
    transform: translateX(3px);
}


/* DIVIDER */

.footer-divider {
    width: 100%;
    max-width: 1100px;

    height: 1px;

    margin: 35px auto 18px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(57,217,138,.18),
            transparent
        );
}


/* FOOTER BOTTOM */

.footer-bottom {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,.30);

    font-family: var(--font-main);
    font-size: 9px;
}

.footer-bottom p strong {
    color: #FFD447;
}


/* SOCIALS */

.footer-socials {
    display: flex;
    align-items: center;

    gap: 7px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;

    background: rgba(255,255,255,.025);

    color: rgba(255,255,255,.55);

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);

    border-color: rgba(57,217,138,.45);

    color: #39D98A;
}


@keyframes footerLivePulse {

    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: .55;
    }

}

/* =====================================================
   CTA + FOOTER MOBILE
===================================================== */

@media (max-width: 600px) {

    /* CTA */

    .final-cta-section {
        padding: 35px 12px 30px;
    }

    .final-cta {
        padding: 28px 15px;
        border-radius: 19px;
    }

    .cta-eyebrow {
        margin-bottom: 8px;
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .final-cta h2 {
        font-size: 27px;
        letter-spacing: -1px;
    }

    .final-cta > p {
        margin-top: 9px;
        font-size: 9px;
        line-height: 1.5;
    }

    .cta-actions {
        gap: 8px;
        margin-top: 19px;
    }

    .cta-primary {
        min-height: 45px;
        padding: 0 16px;
        gap: 7px;
        border-radius: 25px;
        font-size: 10px;
    }

    .cta-primary strong {
        font-size: 18px;
    }

    .cta-secondary {
        min-height: 45px;
        padding: 0 14px;
        border-radius: 25px;
        font-size: 9px;
    }

    .cta-trust {
        gap: 8px;
        margin-top: 17px;
    }

    .cta-trust span {
        gap: 4px;
        font-size: 7px;
    }

    .cta-trust i {
        width: 5px;
        height: 5px;
    }


    /* FOOTER */

    .site-footer {
        padding: 32px 15px 15px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 27px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 8px;
        font-size: 23px;
    }

    .footer-brand > p {
        max-width: 330px;
        margin: 0 auto;
        font-size: 8px;
        line-height: 1.55;
    }

    .footer-live {
        margin-top: 10px;
        font-size: 7px;
    }

    .footer-live-dot {
        width: 6px;
        height: 6px;
    }

    .footer-column {
        gap: 7px;
    }

    .footer-column h3 {
        margin-bottom: 4px;
        font-size: 9px;
    }

    .footer-column a {
        font-size: 8px;
    }

    .footer-divider {
        margin: 25px auto 14px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 7px;
    }

    .footer-socials {
        gap: 5px;
    }

    .footer-socials a {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }

}


@media (max-width: 360px) {

    .final-cta {
        padding: 25px 12px;
    }

    .final-cta h2 {
        font-size: 24px;
    }

    .final-cta > p {
        font-size: 8px;
    }

    .cta-primary {
        min-height: 42px;
        padding: 0 13px;
        font-size: 9px;
    }

    .cta-secondary {
        min-height: 42px;
        padding: 0 11px;
        font-size: 8px;
    }

    .cta-trust span {
        font-size: 6px;
    }

}