/* =========================================================
   AIBON.NET
   HERO SECTION
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    background: #03040d;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* =========================================================
   AIBON HERO
========================================================= */

.aibon-hero {

    min-height: 680px;

    width: 100%;

    background: #03040d;

    color: #ffffff;

    position: relative;

    overflow: hidden;

    padding: 26px 20px 10px;

    display: flex;

    flex-direction: column;

    isolation: isolate;
}


/* Purple glow */

.aibon-hero::before {

    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    top: -220px;
    left: -180px;

    background:
        radial-gradient(
            circle,
            rgba(124, 58, 237, 0.24),
            transparent 67%
        );

    filter: blur(12px);

    z-index: -1;
}


/* Pink glow */

.aibon-hero::after {

    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -220px;
    bottom: -220px;

    background:
        radial-gradient(
            circle,
            rgba(236, 72, 153, 0.18),
            transparent 67%
        );

    filter: blur(12px);

    z-index: -1;
}


/* =========================================================
   NAVIGATION
========================================================= */

.aibon-nav {

    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* Aibon brand */

.aibon-brand {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 1.35rem;

    font-weight: 750;

    letter-spacing: -0.03em;
}


/* =========================================================
   AIBON SYMBOL
========================================================= */

.aibon-symbol {

    width: 40px;

    height: 40px;

    border: 2px solid #8b5cf6;

    border-radius: 13px;

    display: grid;

    place-items: center;

    position: relative;

    background:
        linear-gradient(
            135deg,
            rgba(124, 58, 237, 0.25),
            rgba(236, 72, 153, 0.16)
        );
}


.aibon-symbol::before {

    content: "";

    width: 17px;

    height: 17px;

    border: 2px solid #c084fc;

    border-radius: 50%;
}


.aibon-symbol::after {

    content: "";

    position: absolute;

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #f472b6;
}


/* =========================================================
   MENU BUTTON
========================================================= */

.menu-btn {

    width: 47px;

    height: 47px;

    border: 1px solid
        rgba(139, 92, 246, 0.6);

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #4c1d95,
            #be185d
        );

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    cursor: pointer;
}


.menu-btn span {

    display: block;

    width: 20px;

    height: 2px;

    background: #ffffff;

    border-radius: 3px;
}


/* =========================================================
   HERO MAIN
========================================================= */

.hero-main {

    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    text-align: center;

    padding: 45px 0 35px;
}


/* =========================================================
   LIVE STATUS
========================================================= */

.eyebrow {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border: 1px solid
        rgba(139, 92, 246, 0.42);

    background:
        rgba(124, 58, 237, 0.09);

    padding: 8px 14px;

    border-radius: 999px;

    color: #ddd6fe;

    font-size: 0.82rem;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* =========================================================
   LIVE DOT
========================================================= */

.live-dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #c084fc;

    position: relative;

    animation:
        liveBlink 1.2s
        infinite
        ease-in-out;
}


/* Expanding ring */

.live-dot::before {

    content: "";

    position: absolute;

    top: 50%;

    left: 50%;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    border: 1px solid #c084fc;

    transform:
        translate(-50%, -50%);

    animation:
        liveRing 1.2s
        infinite
        ease-out;
}


/* White flash */

.live-dot::after {

    content: "";

    position: absolute;

    top: 50%;

    left: 50%;

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: #ffffff;

    transform:
        translate(-50%, -50%);

    opacity: 0;

    animation:
        liveFlash 1.2s
        infinite
        ease-in-out;
}


/* Dot animation */

@keyframes liveBlink {

    0% {
        opacity: 1;
        transform: scale(1);
    }

    35% {
        opacity: 0.35;
        transform: scale(0.72);
    }

    60% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/* Ring animation */

@keyframes liveRing {

    0% {

        width: 8px;
        height: 8px;

        opacity: 0.75;
    }

    70% {

        width: 23px;
        height: 23px;

        opacity: 0;
    }

    100% {

        width: 23px;
        height: 23px;

        opacity: 0;
    }
}


/* Flash animation */

@keyframes liveFlash {

    0%,
    35% {

        opacity: 0;
    }

    45% {

        opacity: 1;
    }

    65%,
    100% {

        opacity: 0;
    }
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {

    width: 100%;

    margin: 24px 0 0;

    text-align: center;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-weight: 800;
}


/* =========================================================
   TRUSTED LINE
========================================================= */

/*
   IMPORTANT:
   TRUSTED uses EXACTLY the same font sizing
   as the changing words below.
*/

.trusted-line {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: 100%;

    white-space: nowrap;
}


/* TRUSTED */

.trusted-text {

    display: inline-block;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        clamp(
            1rem,
            2vw,
            2rem
        );

    line-height: 0.94;

    letter-spacing: -0.065em;

    font-weight: 800;

    color: #ffffff;
}


/* =========================================================
   THREE TRUSTED STARS
========================================================= */

.trusted-stars {

    display: inline-flex;

    align-items: center;

    gap: 3px;

    transform:
        translateY(-5px);
}


.trusted-stars span {

    display: block;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        clamp(
            1.15rem,
            3vw,
            1.9rem
        );

    line-height: 1;

    color: #c084fc;

    text-shadow:
        0 0 10px
        rgba(192, 132, 252, 0.6);

    animation:
        trustedStarPulse
        1.8s
        infinite
        ease-in-out;
}


/* Star 1 */

.trusted-stars span:nth-child(1) {

    animation-delay: 0s;
}


/* Star 2 */

.trusted-stars span:nth-child(2) {

    animation-delay: 0.25s;
}


/* Star 3 */

.trusted-stars span:nth-child(3) {

    animation-delay: 0.5s;
}


/* Star animation */

@keyframes trustedStarPulse {

    0%,
    100% {

        opacity: 0.45;

        transform:
            scale(0.85);

        color: #8b5cf6;
    }

    45% {

        opacity: 1;

        transform:
            scale(1.15);

        color: #f472b6;

        text-shadow:
            0 0 18px
            rgba(244, 114, 182, 0.85);
    }

    65% {

        opacity: 0.7;

        transform:
            scale(1);
    }
}


/* =========================================================
   CHANGING WORD
========================================================= */

.gradient-word {

    display: block;

    width: 100%;

    height:
        clamp(
            3.25rem,
            9vw,
            6.25rem
        );

    overflow: hidden;

    margin-top: 5px;
}


/* Changing word */

.word {

    display: block;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        clamp(
            3.4rem,
            9vw,
            6.6rem
        );

    line-height: 0.94;

    letter-spacing: -0.065em;

    font-weight: 800;

    background:
        linear-gradient(
            90deg,
            #8b5cf6 5%,
            #c084fc 48%,
            #f472b6 95%
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    transition:
        transform 0.55s ease,
        opacity 0.45s ease;
}


/* Word leaving */

.word.exit {

    transform:
        translateY(-110%);

    opacity: 0;
}


/* Word entering */

.word.enter {

    transform:
        translateY(110%);

    opacity: 0;
}


/* Word active */

.word.active {

    transform:
        translateY(0);

    opacity: 1;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-description {

    max-width: 570px;

    margin: 24px auto 0;

    color: #a8a8b8;

    line-height: 1.7;

    font-size: 1rem;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-actions {

    display: flex;

    flex-direction: row;

    justify-content: center;

    align-items: center;

    gap: 14px;

    width: 100%;

    max-width: 580px;

    margin: 30px auto 0;
}


.hero-btn {

    width: 250px;

    border-radius: 15px;

    padding: 15px 20px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 1rem;

    font-weight: 650;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.hero-btn:hover {

    transform:
        translateY(-2px);
}


/* Primary button */

.primary {

    border:
        1px solid #8b5cf6;

    background:
        linear-gradient(
            100deg,
            #6d28d9,
            #be185d
        );

    color: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(124, 58, 237, 0.18);
}


/* Secondary button */

.secondary {

    border:
        1px solid
        rgba(139, 92, 246, 0.42);

    background:
        rgba(255, 255, 255, 0.025);

    color: #eeeef7;
}


/* =========================================================
   SMALL NOTE
========================================================= */

.hero-note {

    margin: 22px 0 0;

    color: #777789;

    font-size: 0.78rem;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* =========================================================
   MENU PANEL
========================================================= */

.menu-panel {

    position: absolute;

    inset: 0;

    background:
        rgba(3, 4, 13, 0.97);

    backdrop-filter: blur(16px);

    z-index: 20;

    padding: 26px 20px;

    transform:
        translateX(100%);

    transition:
        transform 0.3s ease;
}


.menu-panel.open {

    transform:
        translateX(0);
}


/* Menu header */

.panel-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    max-width: 1100px;

    margin: auto;
}


/* Close button */

.close-btn {

    border:
        1px solid
        rgba(139, 92, 246, 0.45);

    background:
        rgba(255, 255, 255, 0.04);

    color: #ffffff;

    border-radius: 12px;

    padding: 9px 14px;

    cursor: pointer;
}


/* Menu links */

.menu-links {

    max-width: 650px;

    margin: 55px auto 0;

    display: grid;

    gap: 12px;
}


.menu-links button {

    border:
        1px solid
        rgba(139, 92, 246, 0.28);

    background:
        rgba(124, 58, 237, 0.08);

    color: #ffffff;

    border-radius: 15px;

    padding: 17px;

    text-align: left;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 1rem;

    cursor: pointer;
}


/* =========================================================
   TABLET / DESKTOP
========================================================= */

@media (min-width: 640px) {

    .aibon-hero {

        padding:
            30px
            38px
            42px;
    }


    .hero-main {

        padding-top: 70px;
    }


    .hero-actions {

        flex-direction: row;
    }


    .hero-btn {

        flex: 1;
    }


    .hero-description {

        font-size: 1.05rem;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .aibon-hero {

        padding-left: 15px;

        padding-right: 15px;
    }


    .trusted-line {

        gap: 8px;
    }


    .trusted-stars {

        gap: 2px;

        transform:
            translateY(-3px);
    }


    .trusted-stars span {

        font-size: 1rem;
    }


    .hero-description {

        font-size: 0.92rem;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .trusted-text {

        font-size: 3rem;
    }


    .word {

        font-size: 3rem;
    }


    .trusted-stars span {

        font-size: 0.85rem;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .word,
    .live-dot,
    .live-dot::before,
    .live-dot::after,
    .trusted-stars span {

        animation: none !important;

        transition: none !important;
    }

}

@media (max-width: 639px) {

    .hero-main {
        padding-top: 35px;
    }

    .hero-actions {
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

}

/* =========================================================
   AIBON BUTTONS - SHAKE + WAVES
========================================================= */

/* Both buttons */

.hero-btn {
    position: relative;
    overflow: visible;
    z-index: 1;

    animation:
        aibonButtonShake 3s infinite ease-in-out;
}


/* Wave rings for BOTH buttons */

.hero-btn::before,
.hero-btn::after {

    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 100%;
    height: 100%;

    border-radius: 15px;

    border: 1px solid rgba(192, 132, 252, 0.45);

    transform:
        translate(-50%, -50%)
        scale(1);

    pointer-events: none;

    z-index: -1;

    animation:
        aibonButtonWave 2.4s infinite ease-out;
}


/* Second wave */

.hero-btn::after {

    animation-delay: 1.2s;

    border-color:
        rgba(244, 114, 182, 0.35);
}


/* =========================================================
   BUTTON SHAKE
========================================================= */

@keyframes aibonButtonShake {

    0%,
    70%,
    100% {
        transform: translateX(0);
    }

    72% {
        transform: translateX(-2px);
    }

    74% {
        transform: translateX(2px);
    }

    76% {
        transform: translateX(-2px);
    }

    78% {
        transform: translateX(2px);
    }

    80% {
        transform: translateX(0);
    }
}


/* =========================================================
   WAVES SPREADING OUTWARD
========================================================= */

@keyframes aibonButtonWave {

    0% {

        opacity: 0.7;

        transform:
            translate(-50%, -50%)
            scale(1);
    }

    70% {

        opacity: 0;

        transform:
            translate(-50%, -50%)
            scale(1.35);
    }

    100% {

        opacity: 0;

        transform:
            translate(-50%, -50%)
            scale(1.35);
    }
}

/* =========================================================
   SOCIAL PROOF / JOINED BY USERS
========================================================= */

.social-proof {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin: 24px auto 0;

    width: fit-content;

    max-width: 100%;

}


/* =========================================================
   AVATAR GROUP
========================================================= */

.avatar-group {

    display: flex;

    align-items: center;

    padding-left: 8px;
}


/* Individual avatar */

.proof-avatar {

    width: 36px;

    height: 36px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-left: -8px;

    border: 2px solid #03040d;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.68rem;

    font-weight: 800;

    position: relative;

    box-shadow:
        0 3px 12px
        rgba(0, 0, 0, 0.25);

    animation:
        avatarFloat 3s
        infinite
        ease-in-out;
}


/* First avatar */

.avatar-1 {

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #9333ea
        );

    animation-delay: 0s;
}


/* Second avatar */

.avatar-2 {

    background:
        linear-gradient(
            135deg,
            #0284c7,
            #06b6d4
        );

    animation-delay: 0.15s;
}


/* Third avatar */

.avatar-3 {

    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #f97316
        );

    animation-delay: 0.3s;
}


/* Fourth avatar */

.avatar-4 {

    background:
        linear-gradient(
            135deg,
            #ef4444,
            #f43f5e
        );

    animation-delay: 0.45s;
}


/* Plus avatar */

.avatar-more {

    background:
        linear-gradient(
            135deg,
            #4b5563,
            #1f2937
        );

    font-size: 1rem;

    animation-delay: 0.6s;
}


/* =========================================================
   AVATAR FLOATING ANIMATION
========================================================= */

@keyframes avatarFloat {

    0%,
    100% {

        transform:
            translateY(0);
    }

    50% {

        transform:
            translateY(-3px);
    }

}


/* =========================================================
   PROOF TEXT
========================================================= */

.proof-text {

    margin: 0;

    color: #9ca3af;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.82rem;

    line-height: 1.4;

    white-space: nowrap;
}


.proof-text strong {

    color: #ffffff;

    font-weight: 800;

    text-shadow:
        0 0 12px
        rgba(192, 132, 252, 0.25);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .social-proof {

        gap: 9px;

        margin-top: 22px;
    }


    .proof-avatar {

        width: 33px;

        height: 33px;

        font-size: 0.61rem;
    }


    .avatar-more {

        font-size: 0.9rem;
    }


    .proof-text {

        font-size: 0.72rem;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .social-proof {

        gap: 7px;
    }


    .proof-avatar {

        width: 30px;

        height: 30px;

        font-size: 0.55rem;
    }


    .proof-text {

        font-size: 0.67rem;
    }

}

/* =========================================================
   AIBON DASHBOARD SHOWCASE
========================================================= */

.aibon-dashboard-section {

    position: relative;

    padding: 35px 20px 100px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #03040d 0%,
            #050513 50%,
            #03040d 100%
        );

}


/* Background glow */

.aibon-dashboard-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 250px;

    transform:
        translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(124, 58, 237, 0.16),
            transparent 65%
        );

    filter: blur(30px);

    pointer-events: none;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.dashboard-heading {

    position: relative;

    z-index: 2;

    max-width: 700px;

    margin: 0 auto;

    text-align: center;
}


.dashboard-label {

    display: inline-block;

    padding: 7px 13px;

    border:
        1px solid
        rgba(139, 92, 246, 0.4);

    border-radius: 999px;

    color: #c4b5fd;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.12em;

}


.dashboard-heading h2 {

    margin: 18px 0 14px;

    color: #ffffff;

    font-size:
        clamp(
            2.1rem,
            6vw,
            4.2rem
        );

    line-height: 1.05;

    letter-spacing: -0.05em;
}


.dashboard-heading h2 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #c084fc,
            #f472b6
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.dashboard-heading p {

    max-width: 570px;

    margin: 0 auto;

    color: #9999aa;

    line-height: 1.7;

    font-size: 0.98rem;
}


/* =========================================================
   DASHBOARD STAGE
========================================================= */

.dashboard-stage {

    position: relative;

    width: 100%;

    max-width: 1050px;

    min-height: 760px;

    margin: 55px auto 0;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   PHONE
========================================================= */

.aibon-phone {

    position: relative;

    width: 330px;

    height: 680px;

    padding: 10px;

    border-radius: 48px;

    background:
        linear-gradient(
            145deg,
            #222235,
            #07070e
        );

    border:
        2px solid
        rgba(255, 255, 255, 0.16);

    box-shadow:

        0 40px 90px
        rgba(0, 0, 0, 0.65),

        0 0 80px
        rgba(124, 58, 237, 0.18);

    transform:
        perspective(1000px)
        rotateY(-3deg);

    z-index: 3;
}


/* Phone screen */

.phone-screen {

    width: 100%;

    height: 100%;

    border-radius: 39px;

    overflow: hidden;

    position: relative;

    background:
        linear-gradient(
            160deg,
            #080817,
            #0d0715
        );

    padding:
        15px
        14px
        70px;
}


/* Phone notch */

.phone-screen::before {

    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    width: 115px;

    height: 25px;

    transform:
        translateX(-50%);

    border-radius:
        0 0 18px 18px;

    background: #020207;

    z-index: 20;
}


/* =========================================================
   PHONE STATUS
========================================================= */

.phone-status {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        2px 7px 0;

    color: #ffffff;

    font-size: 0.62rem;

    font-weight: 700;
}


.phone-status-icons {

    font-size: 0.5rem;

    letter-spacing: 3px;

    color: #dddded;
}


/* =========================================================
   DASHBOARD TOP
========================================================= */

.dashboard-top {

    margin-top: 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.dashboard-top small {

    color: #8f8fa3;

    font-size: 0.65rem;
}


.dashboard-top h3 {

    margin-top: 2px;

    font-size: 1.2rem;

    letter-spacing: -0.03em;
}


.notification-icon {

    width: 34px;

    height: 34px;

    border-radius: 11px;

    display: grid;

    place-items: center;

    background:
        rgba(139, 92, 246, 0.13);

    border:
        1px solid
        rgba(139, 92, 246, 0.3);

    color: #d8b4fe;
}


/* =========================================================
   BALANCE CARD
========================================================= */

.balance-card {

    margin-top: 16px;

    padding: 18px;

    border-radius: 21px;

    background:
        linear-gradient(
            135deg,
            #6d28d9,
            #9d174d
        );

    box-shadow:
        0 15px 35px
        rgba(124, 58, 237, 0.24);
}


.balance-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #e9d5ff;

    font-size: 0.64rem;
}


.balance-eye {

    opacity: 0.8;
}


.balance-amount {

    margin-top: 8px;

    font-size: 1.45rem;

    font-weight: 800;

    letter-spacing: -0.04em;
}


.balance-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 15px;

    font-size: 0.58rem;

    color: #f5d0fe;
}


.balance-bottom button {

    border: none;

    border-radius: 8px;

    padding: 6px 9px;

    background:
        rgba(255,255,255,0.16);

    color: #ffffff;

    font-size: 0.58rem;

    font-weight: 700;
}


/* =========================================================
   PHONE SECTION TITLES
========================================================= */

.phone-section-title {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 18px;

    margin-bottom: 9px;
}


.phone-section-title span {

    font-size: 0.7rem;

    font-weight: 700;
}


.phone-section-title small {

    color: #9f8ac9;

    font-size: 0.56rem;
}


/* =========================================================
   QUICK ACTIONS
========================================================= */

.quick-actions {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 7px;
}


.quick-item {

    text-align: center;

    color: #9e9eae;

    font-size: 0.53rem;
}


.quick-icon {

    width: 44px;

    height: 44px;

    margin: 0 auto 5px;

    border-radius: 13px;

    display: grid;

    place-items: center;

    font-size: 0.9rem;

    background:
        rgba(255,255,255,0.045);

    border:
        1px solid
        rgba(255,255,255,0.06);

    animation:
        dashboardIconFloat 3s
        infinite
        ease-in-out;
}


.quick-item:nth-child(2)
.quick-icon {

    animation-delay: 0.2s;
}


.quick-item:nth-child(3)
.quick-icon {

    animation-delay: 0.4s;
}


.quick-item:nth-child(4)
.quick-icon {

    animation-delay: 0.6s;
}


.purple {
    background:
        rgba(139,92,246,0.16);
}


.pink {
    background:
        rgba(236,72,153,0.15);
}


.blue {
    background:
        rgba(14,165,233,0.15);
}


.orange {
    background:
        rgba(245,158,11,0.15);
}


@keyframes dashboardIconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}


/* =========================================================
   ACTIVITY LIST
========================================================= */

.activity-list {

    display: grid;

    gap: 7px;
}


.activity-item {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px;

    border-radius: 12px;

    background:
        rgba(255,255,255,0.035);

    border:
        1px solid
        rgba(255,255,255,0.045);
}


.activity-icon {

    width: 30px;

    height: 30px;

    flex-shrink: 0;

    border-radius: 9px;

    display: grid;

    place-items: center;

    background:
        rgba(139,92,246,0.12);

    font-size: 0.72rem;
}


.activity-info {

    flex: 1;

    min-width: 0;
}


.activity-info strong {

    display: block;

    color: #eeeeF8;

    font-size: 0.58rem;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


.activity-info small {

    display: block;

    margin-top: 2px;

    color: #777789;

    font-size: 0.48rem;
}


.activity-amount {

    color: #d8b4fe;

    font-size: 0.52rem;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   PHONE BOTTOM NAVIGATION
========================================================= */

.phone-navigation {

    position: absolute;

    left: 10px;

    right: 10px;

    bottom: 10px;

    height: 57px;

    border-radius: 19px;

    background:
        rgba(9, 9, 22, 0.96);

    border:
        1px solid
        rgba(255,255,255,0.07);

    display: flex;

    align-items: center;

    justify-content: space-around;

    backdrop-filter: blur(12px);
}


.nav-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 3px;

    color: #68687a;

    font-size: 0.85rem;
}


.nav-item small {

    font-size: 0.47rem;
}


.nav-item.active {

    color: #c084fc;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 17px;

    border-radius: 16px;

    background:
        rgba(12, 12, 25, 0.92);

    border:
        1px solid
        rgba(139,92,246,0.3);

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,0.35);

    z-index: 5;

    animation:
        floatingCard 4s
        infinite
        ease-in-out;
}


.floating-card small {

    display: block;

    color: #858596;

    font-size: 0.62rem;
}


.floating-card strong {

    display: block;

    margin-top: 3px;

    color: #ffffff;

    font-size: 0.85rem;
}


.floating-icon {

    width: 35px;

    height: 35px;

    border-radius: 11px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #ec4899
        );

    font-weight: 800;
}


.floating-profit {

    left: 5%;

    top: 29%;
}


.floating-expense {

    right: 5%;

    top: 46%;

    animation-delay: 1s;
}


@keyframes floatingCard {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-10px);
    }
}


/* =========================================================
   TASK COMPLETED NOTIFICATION
========================================================= */

.floating-notification {

    position: absolute;

    right: 8%;

    top: 22%;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 11px 14px;

    border-radius: 14px;

    background:
        rgba(10,10,22,0.94);

    border:
        1px solid
        rgba(244,114,182,0.25);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,0.3);

    z-index: 6;

    animation:
        notificationFloat 3.5s
        infinite
        ease-in-out;
}


.notification-check {

    width: 30px;

    height: 30px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        rgba(192,132,252,0.15);

    color: #d8b4fe;

    font-weight: 800;
}


.floating-notification strong {

    display: block;

    font-size: 0.65rem;
}


.floating-notification small {

    display: block;

    margin-top: 2px;

    color: #a7a7b7;

    font-size: 0.55rem;
}


@keyframes notificationFloat {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-7px)
            scale(1.02);
    }
}


/* =========================================================
   DASHBOARD NOTE
========================================================= */

.dashboard-note {

    position: relative;

    z-index: 2;

    margin: -20px auto 0;

    text-align: center;

    color: #555567;

    font-size: 0.68rem;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .dashboard-stage {

        min-height: 730px;
    }


    .floating-profit {

        left: 0;
    }


    .floating-expense {

        right: 0;
    }


    .floating-notification {

        right: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .aibon-dashboard-section {

        padding:
            35px
            15px
            10px;
    }


    .dashboard-heading h2 {

        font-size: 2.25rem;
    }


    .dashboard-heading p {

        font-size: 0.9rem;
    }


    .dashboard-stage {

        min-height: 700px;

        margin-top: 40px;
    }


    .aibon-phone {

        width: 290px;

        height: 600px;

        border-radius: 43px;

        padding: 8px;
    }


    .phone-screen {

        border-radius: 35px;

        padding:
            13px
            12px
            65px;
    }


    .balance-amount {

        font-size: 1.18rem;
    }


    .floating-card {

        padding: 9px 11px;
    }


    .floating-card strong {

        font-size: 0.65rem;
    }


    .floating-card small {

        font-size: 0.5rem;
    }


    .floating-icon {

        width: 28px;

        height: 28px;

        font-size: 0.7rem;
    }


    .floating-profit {

        left: 0;

        top: 25%;
    }


    .floating-expense {

        right: 0;

        top: 51%;
    }


    .floating-notification {

        right: 0;

        top: 15%;

        padding: 8px 10px;
    }


    .notification-check {

        width: 25px;

        height: 25px;
    }


    .floating-notification strong {

        font-size: 0.52rem;
    }


    .floating-notification small {

        font-size: 0.45rem;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .aibon-phone {

        width: 270px;

        height: 575px;
    }


    .floating-card {

        transform:
            scale(0.85);
    }


    .floating-notification {

        transform:
            scale(0.82);
    }

}

/* =========================================================
   MOBILE SECTION SPACING
========================================================= */

@media (max-width: 600px) {

    .aibon-hero {
        min-height: auto;
    }

    .aibon-dashboard-section {
        padding-top: 25px;
    }

}

/* =========================================================
   AIBON INCOME STREAMS INTRO
========================================================= */

.aibon-income-section {

    position: relative;

    padding: 80px 20px 15px;

    overflow: hidden;

    background: #03040d;
}


/* =========================================================
   INTRO CONTAINER
========================================================= */

.income-intro {

    max-width: 850px;

    margin: 0 auto;

    text-align: center;

    position: relative;

    z-index: 2;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.income-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    color: #22c55e;

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 0.16em;

    margin-bottom: 22px;
}


/* Small animated icon */

.income-label-icon {

    width: 15px;

    height: 15px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 0.65rem;

    color: #22c55e;

    animation:
        incomePulse 1.8s
        infinite
        ease-in-out;
}


@keyframes incomePulse {

    0%,
    100% {

        opacity: 0.45;

        transform: scale(0.85);
    }

    50% {

        opacity: 1;

        transform: scale(1.15);

        text-shadow:
            0 0 12px
            rgba(34, 197, 94, 0.7);
    }
}


/* =========================================================
   MAIN HEADING
========================================================= */

.income-intro h2 {

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            2.3rem,
            6vw,
            4.5rem
        );

    line-height: 1.05;

    letter-spacing: -0.055em;

    font-weight: 800;
}


.income-intro h2 span {

    display: inline;

    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #c084fc,
            #f472b6
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.income-intro p {

    max-width: 700px;

    margin: 20px auto 0;

    color: #9999aa;

    font-size:
        clamp(
            0.95rem,
            2vw,
            1.12rem
        );

    line-height: 1.7;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .aibon-income-section {

        padding:
            30px
            18px
            15px;
    }


    .income-label {

        font-size: 0.7rem;

        margin-bottom: 18px;
    }


    .income-intro h2 {

        font-size: 2.35rem;

        line-height: 1.08;
    }


    .income-intro p {

        margin-top: 16px;

        font-size: 0.92rem;

        line-height: 1.65;
    }

}

/* =========================================================
   AIBON INCOME STREAM 01
   CHAT WITH FOREIGNERS
========================================================= */

.chat-income-card {

    width: 100%;

    max-width: 900px;

    margin: 15px auto 0;

    border-radius: 28px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #09071a,
            #10091d
        );

    border:
        1px solid
        rgba(139, 92, 246, 0.28);

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.35),

        0 0 60px
        rgba(124, 58, 237, 0.08);

    position: relative;

    isolation: isolate;
}


/* =========================================================
   CARD HEADER
========================================================= */

.chat-card-header {

    padding: 24px;

    background:
        linear-gradient(
            120deg,
            #35116b,
            #67155d
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    position: relative;

    overflow: hidden;
}


/* Header glow */

.chat-card-header::after {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    right: -80px;

    top: -150px;

    border-radius: 50%;

    background:
        rgba(244, 114, 182, 0.22);

    filter: blur(30px);

    z-index: -1;
}


/* Title */

.chat-header-title {

    display: flex;

    align-items: center;

    gap: 14px;
}


.chat-live-icon {

    width: 50px;

    height: 50px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 16px;

    background:
        rgba(255,255,255,0.13);

    border:
        1px solid
        rgba(255,255,255,0.18);

    font-size: 1.35rem;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,0.15);
}


.activity-eyebrow {

    display: block;

    color: #d8b4fe;

    font-size: 0.62rem;

    font-weight: 800;

    letter-spacing: 0.14em;

    margin-bottom: 3px;
}


.chat-header-title h3 {

    color: #ffffff;

    font-size:
        clamp(
            1.15rem,
            3vw,
            1.55rem
        );

    line-height: 1.1;

    margin: 0;
}


.chat-header-title p {

    margin: 5px 0 0;

    color: #e9d5ff;

    font-size: 0.75rem;
}


/* =========================================================
   BADGES
========================================================= */

.activity-badges {

    display: flex;

    align-items: center;

    gap: 7px;

    flex-wrap: wrap;

    justify-content: flex-end;
}


.activity-badge {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 7px 10px;

    border-radius: 999px;

    font-size: 0.58rem;

    font-weight: 800;

    letter-spacing: 0.06em;

    white-space: nowrap;
}


.live-badge {

    color: #bbf7d0;

    background:
        rgba(34,197,94,0.13);

    border:
        1px solid
        rgba(34,197,94,0.35);
}


.live-badge i {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #22c55e;

    animation:
        liveChatBadgePulse
        1.2s
        infinite
        ease-in-out;
}


.popular-badge {

    color: #f5d0fe;

    background:
        rgba(244,114,182,0.13);

    border:
        1px solid
        rgba(244,114,182,0.28);
}


@keyframes liveChatBadgePulse {

    0%,
    100% {

        opacity: 0.45;

        transform: scale(0.8);
    }

    50% {

        opacity: 1;

        transform: scale(1.15);

        box-shadow:
            0 0 10px
            rgba(34,197,94,0.7);
    }
}


/* =========================================================
   PEOPLE AREA
========================================================= */

.chat-people-area {

    padding: 18px 22px 14px;

    background:
        rgba(255,255,255,0.018);

    border-bottom:
        1px solid
        rgba(255,255,255,0.055);
}


.chat-live-status {

    display: flex;

    align-items: center;

    gap: 6px;

    color: #858597;

    font-size: 0.7rem;

    margin-bottom: 13px;
}


.chat-live-status strong {

    color: #d8b4fe;

    font-weight: 800;
}


.green-live-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 10px
        rgba(34,197,94,0.65);

    animation:
        peopleLivePulse
        1.5s
        infinite
        ease-in-out;
}


@keyframes peopleLivePulse {

    0%,
    100% {

        transform: scale(0.8);

        opacity: 0.55;
    }

    50% {

        transform: scale(1.15);

        opacity: 1;
    }
}


/* =========================================================
   PROFILE ROW
========================================================= */

.chat-profiles {

    display: flex;

    align-items: center;

    gap: 22px;

    overflow-x: auto;

    scrollbar-width: none;

    padding-bottom: 3px;
}


.chat-profiles::-webkit-scrollbar {

    display: none;
}


.chat-profile {

    flex-shrink: 0;

    text-align: center;

    position: relative;
}


.chat-avatar {

    width: 51px;

    height: 51px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    font-size: 1.35rem;

    background:
        linear-gradient(
            145deg,
            #1d1233,
            #100b1f
        );

    border:
        2px solid
        #8b5cf6;

    box-shadow:
        0 0 0 3px
        rgba(139,92,246,0.08);

    position: relative;
}


.chat-profile:nth-child(2)
.chat-avatar {

    border-color: #c084fc;
}


.chat-profile:nth-child(3)
.chat-avatar {

    border-color: #f472b6;
}


.chat-profile:nth-child(4)
.chat-avatar {

    border-color: #8b5cf6;
}


.chat-profile:nth-child(5)
.chat-avatar {

    border-color: #ec4899;
}


.chat-profile:nth-child(6)
.chat-avatar {

    border-color: #a78bfa;
}


.chat-profile strong {

    display: block;

    margin-top: 6px;

    color: #a7a7b7;

    font-size: 0.6rem;

    font-weight: 600;
}


.chat-profile i {

    position: absolute;

    width: 9px;

    height: 9px;

    right: -1px;

    top: 42px;

    border-radius: 50%;

    background: #22c55e;

    border:
        2px solid
        #100b1f;

    animation:
        profileOnlinePulse
        1.5s
        infinite
        ease-in-out;
}


@keyframes profileOnlinePulse {

    0%,
    100% {

        opacity: 0.65;
    }

    50% {

        opacity: 1;

        box-shadow:
            0 0 9px
            rgba(34,197,94,0.8);
    }
}


/* =========================================================
   CHAT WINDOW
========================================================= */

.live-chat-window {

    padding: 16px 20px;

    display: flex;

    flex-direction: column;

    gap: 11px;

    min-height: 285px;
}


.live-chat-message {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    position: relative;

    animation:
        chatMessageAppear
        0.5s
        ease-out;
}


.chat-message-avatar {

    width: 34px;

    height: 34px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(139,92,246,0.1);

    border:
        1px solid
        rgba(139,92,246,0.25);

    font-size: 0.9rem;
}


.chat-message-content {

    flex: 1;

    min-width: 0;
}


.chat-message-top {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 4px;
}


.chat-message-top strong {

    color: #e9e9f4;

    font-size: 0.68rem;
}


.chat-message-top small {

    color: #666679;

    font-size: 0.55rem;
}


.chat-bubble {

    padding: 9px 12px;

    border-radius: 13px;

    max-width: 85%;

    color: #bdbdcb;

    background:
        rgba(255,255,255,0.035);

    border:
        1px solid
        rgba(255,255,255,0.06);

    font-size: 0.68rem;

    line-height: 1.45;
}


.chat-bubble.received {

    border-top-left-radius: 4px;
}


.chat-earning {

    flex-shrink: 0;

    padding: 5px 7px;

    border-radius: 8px;

    color: #d9f99d;

    background:
        rgba(132,204,22,0.1);

    border:
        1px solid
        rgba(132,204,22,0.18);

    font-size: 0.54rem;

    font-weight: 800;
}


@keyframes chatMessageAppear {

    from {

        opacity: 0;

        transform:
            translateY(8px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}


/* =========================================================
   PAYMENT BAR
========================================================= */

.chat-payment-bar {

    padding: 15px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    border-top:
        1px solid
        rgba(255,255,255,0.06);

    border-bottom:
        1px solid
        rgba(255,255,255,0.06);

    background:
        rgba(255,255,255,0.018);
}


.payment-status {

    display: flex;

    align-items: center;

    gap: 5px;

    color: #858597;

    font-size: 0.7rem;
}


.payment-status strong {

    color: #d9f99d;

    font-weight: 800;

    transition:
        opacity 0.2s ease;
}


.payment-pulse {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #84cc16;

    box-shadow:
        0 0 10px
        rgba(132,204,22,0.6);

    animation:
        paymentPulse
        1.2s
        infinite
        ease-in-out;
}


@keyframes paymentPulse {

    0%,
    100% {

        opacity: 0.5;
    }

    50% {

        opacity: 1;

        transform: scale(1.25);
    }
}


/* =========================================================
   JOIN CHAT BUTTON
========================================================= */

.chat-register-btn {

    border: none;

    border-radius: 13px;

    padding: 11px 17px;

    background:
        linear-gradient(
            100deg,
            #7c3aed,
            #db2777
        );

    color: #ffffff;

    font-size: 0.72rem;

    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 8px 25px
        rgba(124,58,237,0.2);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.chat-register-btn span {

    margin-left: 5px;
}


.chat-register-btn:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(124,58,237,0.35);
}


/* =========================================================
   ACTIVITY FOOTER LABELS
========================================================= */

.activity-footer {

    padding: 13px 20px;

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

    color: #686879;

    font-size: 0.6rem;
}


.activity-footer span {

    white-space: nowrap;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .chat-income-card {

        margin-top: 15px;

        border-radius: 22px;
    }


    .chat-card-header {

        padding: 18px;

        align-items: flex-start;

        flex-direction: column;
    }


    .chat-header-title {

        width: 100%;
    }


    .chat-live-icon {

        width: 43px;

        height: 43px;

        border-radius: 13px;

        font-size: 1.1rem;
    }


    .chat-header-title p {

        font-size: 0.68rem;
    }


    .activity-badges {

        justify-content: flex-start;
    }


    .chat-people-area {

        padding:
            15px
            16px
            12px;
    }


    .chat-profiles {

        gap: 18px;
    }


    .chat-avatar {

        width: 46px;

        height: 46px;

        font-size: 1.2rem;
    }


    .chat-profile i {

        top: 38px;
    }


    .live-chat-window {

        padding:
            14px
            14px;

        min-height: 275px;
    }


    .chat-bubble {

        max-width: 100%;

        font-size: 0.65rem;
    }


    .chat-earning {

        font-size: 0.48rem;

        padding:
            4px 5px;
    }


    .chat-payment-bar {

        padding:
            13px
            14px;
    }


    .payment-status {

        font-size: 0.62rem;
    }


    .chat-register-btn {

        padding:
            10px
            13px;

        font-size: 0.65rem;
    }


    .activity-footer {

        gap: 9px;

        padding:
            11px
            10px;

        font-size: 0.54rem;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .chat-income-card {

        border-radius: 18px;
    }


    .chat-header-title h3 {

        font-size: 1.05rem;
    }


    .chat-profiles {

        gap: 14px;
    }


    .chat-avatar {

        width: 42px;

        height: 42px;
    }


    .chat-profile i {

        top: 35px;
    }


    .live-chat-message {

        gap: 6px;
    }


    .chat-message-avatar {

        width: 30px;

        height: 30px;
    }


    .chat-earning {

        display: none;
    }


    .payment-status span:not(.payment-pulse) {

        display: none;
    }

}

/* =========================================================
   AIBON INCOME STREAM 02
   PAID TIKTOK VIDEOS
========================================================= */

.tiktok-income-card {

    width: 100%;

    max-width: 900px;

    margin: 45px auto 0;

    border-radius: 28px;

    overflow: hidden;

    position: relative;

    isolation: isolate;

    background:
        linear-gradient(
            145deg,
            #050509,
            #0c0710
        );

    border:
        1px solid
        rgba(236,72,153,0.3);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.4),

        0 0 65px
        rgba(236,72,153,0.07);
}


/* =========================================================
   HEADER
========================================================= */

.tiktok-card-header {

    padding: 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background:
        linear-gradient(
            110deg,
            #09090f,
            #170916,
            #0b0b12
        );

    border-bottom:
        1px solid
        rgba(255,255,255,0.06);

    position: relative;
}


.tiktok-card-header::before {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    top: -130px;

    right: 15%;

    border-radius: 50%;

    background:
        rgba(236,72,153,0.15);

    filter: blur(45px);

    pointer-events: none;
}


.tiktok-title-area {

    display: flex;

    align-items: center;

    gap: 14px;

    position: relative;

    z-index: 2;
}


.tiktok-main-icon {

    width: 50px;

    height: 50px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 16px;

    color: #ffffff;

    font-size: 1.25rem;

    background:
        linear-gradient(
            135deg,
            #111111,
            #252525
        );

    border:
        1px solid
        rgba(255,255,255,0.16);

    box-shadow:
        4px 4px 0
        rgba(0,229,255,0.6),

        -4px -4px 0
        rgba(255,0,80,0.6);
}


.tiktok-eyebrow {

    color: #f9a8d4;
}


.tiktok-title-area h3 {

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            1.15rem,
            3vw,
            1.55rem
        );

    line-height: 1.1;
}


.tiktok-title-area p {

    margin: 5px 0 0;

    color: #9999a8;

    font-size: 0.75rem;
}


/* =========================================================
   BADGES
========================================================= */

.tiktok-live-badge {

    color: #fecdd3;

    background:
        rgba(244,63,94,0.1);

    border:
        1px solid
        rgba(244,63,94,0.3);
}


.tiktok-live-badge i {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #ef4444;

    animation:
        tiktokLivePulse
        1.1s
        infinite
        ease-in-out;
}


.tiktok-trending-badge {

    color: #fde68a;

    background:
        rgba(245,158,11,0.08);

    border:
        1px solid
        rgba(245,158,11,0.2);
}


@keyframes tiktokLivePulse {

    0%,
    100% {

        opacity: 0.45;

        transform: scale(0.8);
    }

    50% {

        opacity: 1;

        transform: scale(1.15);

        box-shadow:
            0 0 12px
            rgba(239,68,68,0.8);
    }
}


/* =========================================================
   VIDEO AREA
========================================================= */

.tiktok-video-area {

    padding:
        22px
        22px
        14px;
}


.tiktok-video-card {

    height: 300px;

    width: 100%;

    max-width: 650px;

    margin: 0 auto;

    border-radius: 20px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #24112f,
            #081c25,
            #180b22
        );

    border:
        1px solid
        rgba(255,255,255,0.1);

    box-shadow:
        inset 0 0 80px
        rgba(0,0,0,0.35),

        0 20px 50px
        rgba(0,0,0,0.35);

    transition:
        background 0.6s ease;
}


/* Animated color atmosphere */

.tiktok-video-card::before {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    left: -100px;

    top: 50px;

    border-radius: 50%;

    background:
        rgba(0,229,255,0.18);

    filter: blur(45px);

    animation:
        videoGlowOne
        5s
        infinite
        ease-in-out;
}


.tiktok-video-card::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: -100px;

    bottom: -70px;

    border-radius: 50%;

    background:
        rgba(255,0,92,0.2);

    filter: blur(45px);

    animation:
        videoGlowTwo
        5s
        infinite
        ease-in-out;
}


@keyframes videoGlowOne {

    0%,
    100% {
        transform:
            translate(0,0)
            scale(1);
    }

    50% {
        transform:
            translate(100px,-30px)
            scale(1.15);
    }
}


@keyframes videoGlowTwo {

    0%,
    100% {
        transform:
            translate(0,0)
            scale(1);
    }

    50% {
        transform:
            translate(-80px,-40px)
            scale(1.2);
    }
}


/* Video overlay */

.tiktok-video-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.05),
            rgba(0,0,0,0.15) 45%,
            rgba(0,0,0,0.85)
        );

    z-index: 2;
}


/* =========================================================
   VIDEO CATEGORY
========================================================= */

.tiktok-video-category {

    position: absolute;

    top: 18px;

    left: 18px;

    z-index: 5;

    padding:
        7px
        10px;

    border-radius: 999px;

    color: #ffffff;

    background:
        rgba(0,0,0,0.45);

    border:
        1px solid
        rgba(255,255,255,0.14);

    backdrop-filter:
        blur(10px);

    font-size: 0.6rem;

    font-weight: 800;

    letter-spacing: 0.05em;
}


/* =========================================================
   PLAY BUTTON
========================================================= */

.tiktok-play-button {

    position: absolute;

    left: 50%;

    top: 50%;

    width: 72px;

    height: 72px;

    transform:
        translate(-50%,-50%);

    display: grid;

    place-items: center;

    border-radius: 50%;

    z-index: 5;

    color: #ffffff;

    font-size: 1.3rem;

    padding-left: 3px;

    background:
        rgba(255,255,255,0.13);

    border:
        1px solid
        rgba(255,255,255,0.3);

    backdrop-filter:
        blur(10px);

    box-shadow:
        0 0 0 10px
        rgba(255,255,255,0.025),

        0 0 35px
        rgba(236,72,153,0.25);

    animation:
        playPulse
        2s
        infinite
        ease-in-out;
}


@keyframes playPulse {

    0%,
    100% {

        transform:
            translate(-50%,-50%)
            scale(1);
    }

    50% {

        transform:
            translate(-50%,-50%)
            scale(1.08);
    }
}


/* =========================================================
   VIDEO INFORMATION
========================================================= */

.tiktok-video-info {

    position: absolute;

    left: 20px;

    bottom: 25px;

    z-index: 5;
}


.tiktok-video-info strong {

    display: block;

    color: #ffffff;

    font-size: 1rem;
}


.tiktok-video-info span {

    display: block;

    margin-top: 5px;

    color: #d1d1dd;

    font-size: 0.65rem;
}


/* =========================================================
   VIDEO STATS
========================================================= */

.tiktok-video-stats {

    position: absolute;

    right: 18px;

    bottom: 22px;

    z-index: 5;

    display: flex;

    flex-direction: column;

    gap: 7px;

    color: #ddddE8;

    font-size: 0.6rem;
}


.tiktok-video-stats span {

    display: flex;

    align-items: center;

    gap: 4px;
}


.tiktok-video-stats strong {

    font-weight: 700;
}


/* =========================================================
   REWARD
========================================================= */

.tiktok-video-reward {

    position: absolute;

    right: 18px;

    top: 18px;

    z-index: 5;

    padding:
        9px
        11px;

    border-radius: 11px;

    background:
        rgba(132,204,22,0.13);

    border:
        1px solid
        rgba(163,230,53,0.25);

    backdrop-filter:
        blur(10px);

    text-align: right;
}


.tiktok-video-reward small {

    display: block;

    color: #bef264;

    font-size: 0.48rem;

    font-weight: 700;

    letter-spacing: 0.08em;
}


.tiktok-video-reward strong {

    display: block;

    margin-top: 3px;

    color: #d9f99d;

    font-size: 0.8rem;
}


/* =========================================================
   PROGRESS
========================================================= */

.tiktok-progress-area {

    padding:
        0
        22px
        14px;
}


.tiktok-progress-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 7px;

    color: #818192;

    font-size: 0.62rem;
}


.tiktok-progress-top strong {

    color: #f9a8d4;

    font-weight: 800;
}


.tiktok-progress-track {

    width: 100%;

    height: 6px;

    overflow: hidden;

    border-radius: 999px;

    background:
        rgba(255,255,255,0.07);
}


.tiktok-progress-bar {

    width: 0%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #00f2ea,
            #ff0050
        );

    box-shadow:
        0 0 14px
        rgba(255,0,80,0.4);

    transition:
        width 0.1s linear;
}


/* =========================================================
   LIVE EARNING
========================================================= */

.tiktok-live-earning {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    padding:
        12px 20px;

    background:
        rgba(132,204,22,0.035);

    border-top:
        1px solid
        rgba(255,255,255,0.05);

    border-bottom:
        1px solid
        rgba(255,255,255,0.05);

    color: #858596;

    font-size: 0.68rem;
}


.tiktok-live-earning strong {

    color: #d9f99d;

    font-weight: 800;
}


.tiktok-live-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #84cc16;

    box-shadow:
        0 0 10px
        rgba(132,204,22,0.65);

    animation:
        earningDotPulse
        1.2s
        infinite
        ease-in-out;
}


@keyframes earningDotPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}


/* =========================================================
   AVAILABILITY
========================================================= */

.tiktok-availability {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    background:
        rgba(255,255,255,0.06);
}


.tiktok-availability > div {

    padding:
        15px
        10px;

    text-align: center;

    background:
        #09090f;
}


.tiktok-availability small {

    display: block;

    color: #686879;

    font-size: 0.48rem;

    letter-spacing: 0.06em;

    font-weight: 700;
}


.tiktok-availability strong {

    display: block;

    margin-top: 5px;

    color: #eeeeF7;

    font-size: 0.76rem;
}


/* =========================================================
   ACTION BUTTON
========================================================= */

.tiktok-action-area {

    padding:
        18px
        22px;
}


.tiktok-register-btn {

    width: 100%;

    border: none;

    border-radius: 15px;

    padding:
        15px
        20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: #ffffff;

    background:
        linear-gradient(
            100deg,
            #00bfc3,
            #ff0050
        );

    font-size: 0.85rem;

    font-weight: 900;

    letter-spacing: 0.03em;

    cursor: pointer;

    box-shadow:
        0 12px 35px
        rgba(255,0,80,0.18),

        0 0 25px
        rgba(0,229,255,0.08);

    animation:
        tiktokButtonPulse
        3s
        infinite
        ease-in-out;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.tiktok-register-btn strong {

    margin-left: 4px;
}


.tiktok-register-btn:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 18px 40px
        rgba(255,0,80,0.3);
}


@keyframes tiktokButtonPulse {

    0%,
    70%,
    100% {

        transform: scale(1);
    }

    75% {

        transform: scale(1.015);
    }

    80% {

        transform: scale(1);
    }
}


/* =========================================================
   FOOTER
========================================================= */

.tiktok-footer {

    border-top:
        1px solid
        rgba(255,255,255,0.04);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .tiktok-income-card {

        margin-top: 35px;

        border-radius: 22px;
    }


    .tiktok-card-header {

        padding: 18px;

        flex-direction: column;

        align-items: flex-start;
    }


    .tiktok-main-icon {

        width: 43px;

        height: 43px;

        border-radius: 13px;
    }


    .tiktok-title-area p {

        font-size: 0.66rem;
    }


    .activity-badges {

        justify-content: flex-start;
    }


    .tiktok-video-area {

        padding:
            16px
            14px
            12px;
    }


    .tiktok-video-card {

    height: 260px !important;

    border-radius: 16px;
}


    .tiktok-play-button {

        width: 62px;

        height: 62px;
    }


     .tiktok-video-info {

        left: 13px !important;

        bottom: 13px !important;
    }


    .tiktok-video-info strong {

        font-size: 0.82rem;
    }


    .tiktok-video-stats {

        right: 12px !important;

        bottom: 12px !important;
    }


    .tiktok-video-reward {

        right: 13px;

        top: 13px;
    }


    .tiktok-progress-area {

        padding:
            0
            14px
            12px;
    }


    .tiktok-availability strong {

        font-size: 0.65rem;
    }


    .tiktok-action-area {

        padding:
            15px
            14px;
    }


    .tiktok-register-btn {

        padding:
            14px
            15px;

        font-size: 0.76rem;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .tiktok-video-card {

    height: 240px !important;
}


    .tiktok-video-stats {

        display: none;
    }


    .tiktok-video-info {

        right: 15px;
    }


    .tiktok-availability {

        grid-template-columns:
            repeat(3, 1fr);
    }


    .tiktok-availability > div {

        padding:
            12px 5px;
    }

}

.tiktok-main-icon img {

    width: 30px;

    height: 30px;

    object-fit: contain;

    filter:
        drop-shadow(
            3px 3px 0
            rgba(0, 229, 255, 0.7)
        )
        drop-shadow(
            -3px -3px 0
            rgba(255, 0, 80, 0.7)
        );
}

/* =========================================================
   AIBON INCOME STREAM 03
   PAID YOUTUBE VIDEOS
========================================================= */

.youtube-income-card {

    width: 100%;

    max-width: 900px;

    margin: 45px auto 0;

    border-radius: 28px;

    overflow: hidden;

    position: relative;

    isolation: isolate;

    background:
        linear-gradient(
            145deg,
            #080506,
            #120809
        );

    border:
        1px solid
        rgba(239,68,68,0.28);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.42),

        0 0 65px
        rgba(239,68,68,0.07);
}


/* =========================================================
   HEADER
========================================================= */

.youtube-card-header {

    padding: 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background:
        linear-gradient(
            110deg,
            #100708,
            #21090d,
            #0b0809
        );

    border-bottom:
        1px solid
        rgba(255,255,255,0.06);

    position: relative;
}


.youtube-card-header::before {

    content: "";

    position: absolute;

    width: 240px;

    height: 240px;

    right: 15%;

    top: -150px;

    border-radius: 50%;

    background:
        rgba(239,68,68,0.16);

    filter: blur(45px);

    pointer-events: none;
}


.youtube-title-area {

    display: flex;

    align-items: center;

    gap: 14px;

    position: relative;

    z-index: 2;
}


/* =========================================================
   YOUTUBE ICON
========================================================= */

.youtube-main-icon {

    width: 50px;

    height: 50px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background:
        #ff0000;

    box-shadow:
        0 8px 25px
        rgba(255,0,0,0.25);
}


.youtube-main-icon img {

    width: 30px;

    height: 30px;

    object-fit: contain;

    display: block;
}


.youtube-eyebrow {

    color: #fca5a5;
}


.youtube-title-area h3 {

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            1.15rem,
            3vw,
            1.55rem
        );

    line-height: 1.1;
}


.youtube-title-area p {

    margin: 5px 0 0;

    color: #a1a1aa;

    font-size: 0.75rem;
}


/* =========================================================
   BADGES
========================================================= */

.youtube-live-badge {

    color: #fecaca;

    background:
        rgba(239,68,68,0.1);

    border:
        1px solid
        rgba(239,68,68,0.3);
}


.youtube-live-badge i {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #ef4444;

    animation:
        youtubeLivePulse
        1.1s
        infinite
        ease-in-out;
}


.youtube-popular-badge {

    color: #fde68a;

    background:
        rgba(245,158,11,0.08);

    border:
        1px solid
        rgba(245,158,11,0.2);
}


@keyframes youtubeLivePulse {

    0%,
    100% {

        opacity: 0.45;

        transform: scale(0.8);
    }

    50% {

        opacity: 1;

        transform: scale(1.15);

        box-shadow:
            0 0 12px
            rgba(239,68,68,0.8);
    }
}


/* =========================================================
   VIDEO AREA
========================================================= */

.youtube-video-area {

    padding:
        22px
        22px
        14px;
}


.youtube-video-player {

    width: 100%;

    max-width: 700px;

    height: 390px;

    margin: 0 auto;

    border-radius: 22px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #281010,
            #100b0b,
            #321016
        );

    border:
        1px solid
        rgba(255,255,255,0.1);

    box-shadow:
        inset 0 0 100px
        rgba(0,0,0,0.45),

        0 20px 55px
        rgba(0,0,0,0.35);

    transition:
        background 0.7s ease;
}


/* Animated background */

.youtube-video-background {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 25% 30%,
            rgba(239,68,68,0.35),
            transparent 32%
        ),

        radial-gradient(
            circle at 75% 65%,
            rgba(124,58,237,0.24),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #350b10,
            #10070a,
            #250d17
        );

    animation:
        youtubeVideoBackground
        7s
        infinite
        ease-in-out;
}


@keyframes youtubeVideoBackground {

    0%,
    100% {

        transform: scale(1);

        filter:
            hue-rotate(0deg);
    }

    50% {

        transform: scale(1.08);

        filter:
            hue-rotate(8deg);
    }
}


/* Overlay */

.youtube-video-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.05),
            rgba(0,0,0,0.15) 45%,
            rgba(0,0,0,0.9)
        );
}


/* =========================================================
   CATEGORY
========================================================= */

.youtube-video-category {

    position: absolute;

    top: 18px;

    left: 18px;

    z-index: 5;

    padding:
        7px
        10px;

    border-radius: 999px;

    color: #ffffff;

    background:
        rgba(0,0,0,0.48);

    border:
        1px solid
        rgba(255,255,255,0.15);

    backdrop-filter:
        blur(10px);

    font-size: 0.6rem;

    font-weight: 800;
}


/* =========================================================
   PLAY BUTTON
========================================================= */

.youtube-play-button {

    position: absolute;

    left: 50%;

    top: 50%;

    width: 74px;

    height: 74px;

    transform:
        translate(-50%,-50%);

    display: grid;

    place-items: center;

    z-index: 5;

    border-radius: 50%;

    background:
        #ff0000;

    box-shadow:
        0 0 0 10px
        rgba(255,0,0,0.08),

        0 0 40px
        rgba(255,0,0,0.35);

    animation:
        youtubePlayPulse
        2s
        infinite
        ease-in-out;
}


.youtube-play-button span {

    color: #ffffff;

    font-size: 1.35rem;

    margin-left: 3px;
}


@keyframes youtubePlayPulse {

    0%,
    100% {

        transform:
            translate(-50%,-50%)
            scale(1);
    }

    50% {

        transform:
            translate(-50%,-50%)
            scale(1.08);
    }
}


/* =========================================================
   DURATION
========================================================= */

.youtube-duration {

    position: absolute;

    right: 17px;

    bottom: 18px;

    z-index: 5;

    padding:
        4px
        6px;

    border-radius: 5px;

    color: #ffffff;

    background:
        rgba(0,0,0,0.75);

    font-size: 0.55rem;

    font-weight: 700;
}


/* =========================================================
   VIDEO INFO
========================================================= */

.youtube-video-info {

    position: absolute;

    left: 20px;

    bottom: 20px;

    z-index: 5;

    max-width: 55%;
}


.youtube-video-info strong {

    display: block;

    color: #ffffff;

    font-size: 0.95rem;
}


.youtube-video-info span {

    display: block;

    margin-top: 5px;

    color: #c4c4cc;

    font-size: 0.62rem;
}


/* =========================================================
   VIDEO STATS
========================================================= */

.youtube-video-stats {

    position: absolute;

    right: 20px;

    bottom: 50px;

    z-index: 5;

    display: flex;

    gap: 12px;

    color: #ddddE6;

    font-size: 0.58rem;
}


.youtube-video-stats span {

    display: flex;

    align-items: center;

    gap: 4px;
}


/* =========================================================
   REWARD
========================================================= */

.youtube-reward {

    position: absolute;

    right: 18px;

    top: 18px;

    z-index: 5;

    padding:
        9px
        11px;

    border-radius: 11px;

    text-align: right;

    background:
        rgba(132,204,22,0.12);

    border:
        1px solid
        rgba(163,230,53,0.25);

    backdrop-filter:
        blur(10px);
}


.youtube-reward small {

    display: block;

    color: #bef264;

    font-size: 0.48rem;

    font-weight: 700;

    letter-spacing: 0.08em;
}


.youtube-reward strong {

    display: block;

    margin-top: 3px;

    color: #d9f99d;

    font-size: 0.8rem;
}


/* =========================================================
   PROGRESS
========================================================= */

.youtube-progress-area {

    padding:
        0
        22px
        14px;
}


.youtube-progress-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 7px;

    color: #85858f;

    font-size: 0.62rem;
}


.youtube-progress-top strong {

    color: #fca5a5;

    font-weight: 800;
}


.youtube-progress-track {

    width: 100%;

    height: 6px;

    border-radius: 999px;

    overflow: hidden;

    background:
        rgba(255,255,255,0.07);
}


.youtube-progress-bar {

    width: 0%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #ff0000,
            #ff4d4d,
            #8b5cf6
        );

    box-shadow:
        0 0 15px
        rgba(255,0,0,0.4);

    transition:
        width 0.1s linear;
}


/* =========================================================
   LIVE EARNING
========================================================= */

.youtube-live-earning {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    padding:
        12px 20px;

    background:
        rgba(132,204,22,0.035);

    border-top:
        1px solid
        rgba(255,255,255,0.05);

    border-bottom:
        1px solid
        rgba(255,255,255,0.05);

    color: #85858f;

    font-size: 0.68rem;
}


.youtube-live-earning strong {

    color: #d9f99d;

    font-weight: 800;
}


.youtube-live-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #84cc16;

    box-shadow:
        0 0 10px
        rgba(132,204,22,0.65);

    animation:
        youtubeEarningPulse
        1.2s
        infinite
        ease-in-out;
}


@keyframes youtubeEarningPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}


/* =========================================================
   STAT GRID
========================================================= */

.youtube-stat-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    background:
        rgba(255,255,255,0.06);
}


.youtube-stat-grid > div {

    padding:
        15px
        10px;

    text-align: center;

    background:
        #090607;
}


.youtube-stat-grid small {

    display: block;

    color: #686871;

    font-size: 0.48rem;

    letter-spacing: 0.06em;

    font-weight: 700;
}


.youtube-stat-grid strong {

    display: block;

    margin-top: 5px;

    color: #eeeeF5;

    font-size: 0.76rem;
}


/* =========================================================
   REGISTER BUTTON
========================================================= */

.youtube-action-area {

    padding:
        18px 22px;
}


.youtube-register-btn {

    width: 100%;

    border: none;

    border-radius: 15px;

    padding:
        15px
        20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: #ffffff;

    background:
        linear-gradient(
            100deg,
            #dc2626,
            #ff0000,
            #7c3aed
        );

    font-size: 0.85rem;

    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 12px 35px
        rgba(239,68,68,0.2);

    animation:
        youtubeButtonPulse
        3s
        infinite
        ease-in-out;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.youtube-register-btn strong {

    margin-left: 4px;
}


.youtube-register-btn:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 18px 40px
        rgba(239,68,68,0.32);
}


@keyframes youtubeButtonPulse {

    0%,
    70%,
    100% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.015);
    }

    80% {
        transform: scale(1);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .youtube-income-card {

        margin-top: 35px;

        border-radius: 22px;
    }


    .youtube-card-header {

        padding: 18px;

        flex-direction: column;

        align-items: flex-start;
    }


    .youtube-main-icon {

        width: 43px;

        height: 43px;

        border-radius: 13px;
    }


    .youtube-title-area p {

        font-size: 0.66rem;
    }


    .youtube-video-area {

        padding:
            16px
            14px
            12px;
    }


    .youtube-video-player {

        height: 370px;

        border-radius: 18px;
    }


    .youtube-play-button {

        width: 62px;

        height: 62px;
    }


    .youtube-video-info {

        left: 15px;

        bottom: 18px;

        max-width: 58%;
    }


    .youtube-video-info strong {

        font-size: 0.8rem;
    }


    .youtube-video-stats {

        right: 14px;

        bottom: 49px;

        gap: 7px;

        font-size: 0.5rem;
    }


    .youtube-reward {

        right: 13px;

        top: 13px;
    }


    .youtube-progress-area {

        padding:
            0
            14px
            12px;
    }


    .youtube-action-area {

        padding:
            15px
            14px;
    }


    .youtube-register-btn {

        padding:
            14px
            15px;

        font-size: 0.76rem;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .youtube-video-player {

        height: 340px;
    }


    .youtube-video-stats {

        display: none;
    }


    .youtube-video-info {

        max-width: 75%;
    }


    .youtube-stat-grid > div {

        padding:
            12px
            5px;
    }

}

/* =========================================================
   AIBON INCOME STREAM SEPARATOR
========================================================= */

.stream-separator {

    width: 100%;

    max-width: 900px;

    margin: 34px auto;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    position: relative;
}


/* Lines */

.stream-separator > span {

    height: 1px;

    flex: 1;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(139, 92, 246, 0.35),
            rgba(236, 72, 153, 0.5)
        );
}


/* Reverse the second line */

.stream-separator > span:last-child {

    background:
        linear-gradient(
            90deg,
            rgba(236, 72, 153, 0.5),
            rgba(139, 92, 246, 0.35),
            transparent
        );
}


/* Center symbol */

.stream-separator-icon {

    width: 28px;

    height: 28px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #d8b4fe;

    font-size: 0.75rem;

    background:
        rgba(139, 92, 246, 0.08);

    border:
        1px solid
        rgba(168, 85, 247, 0.35);

    box-shadow:
        0 0 18px
        rgba(168, 85, 247, 0.12);

    animation:
        streamSeparatorPulse
        3s
        infinite
        ease-in-out;
}


@keyframes streamSeparatorPulse {

    0%,
    100% {

        transform: scale(1);

        opacity: 0.65;

        box-shadow:
            0 0 12px
            rgba(168, 85, 247, 0.1);
    }

    50% {

        transform: scale(1.18);

        opacity: 1;

        color: #f0abfc;

        box-shadow:
            0 0 25px
            rgba(236, 72, 153, 0.3);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .stream-separator {

        margin:
            26px auto;

        gap: 10px;
    }


    .stream-separator-icon {

        width: 24px;

        height: 24px;

        font-size: 0.65rem;
    }

}

/* =========================================================
   AIBON INCOME STREAM 04
   CLICK PAID ADS
========================================================= */

.paid-ads-income-card {

    width: 100%;

    max-width: 900px;

    margin: 45px auto 0;

    border-radius: 28px;

    overflow: hidden;

    position: relative;

    isolation: isolate;

    background:
        linear-gradient(
            145deg,
            #080b12,
            #0c101a
        );

    border:
        1px solid
        rgba(245,158,11,0.28);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.42),

        0 0 65px
        rgba(245,158,11,0.06);
}


/* =========================================================
   HEADER
========================================================= */

.ads-card-header {

    padding: 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background:
        linear-gradient(
            110deg,
            #0b1019,
            #15150e,
            #0a0e16
        );

    border-bottom:
        1px solid
        rgba(255,255,255,0.06);

    position: relative;
}


.ads-card-header::before {

    content: "";

    position: absolute;

    width: 240px;

    height: 240px;

    right: 15%;

    top: -150px;

    border-radius: 50%;

    background:
        rgba(245,158,11,0.13);

    filter: blur(45px);

    pointer-events: none;
}


.ads-title-area {

    display: flex;

    align-items: center;

    gap: 14px;

    position: relative;

    z-index: 2;
}


/* =========================================================
   ADS ICON
========================================================= */

.ads-main-icon {

    width: 50px;

    height: 50px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 15px;

    color: #111827;

    background:
        linear-gradient(
            145deg,
            #fbbf24,
            #f97316
        );

    font-size: 1.4rem;

    font-weight: 900;

    box-shadow:
        0 8px 28px
        rgba(245,158,11,0.22);
}


.ads-eyebrow {

    color: #fcd34d;
}


.ads-title-area h3 {

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            1.15rem,
            3vw,
            1.55rem
        );

    line-height: 1.1;
}


.ads-title-area p {

    margin: 5px 0 0;

    color: #9ca3af;

    font-size: 0.75rem;
}


/* =========================================================
   BADGES
========================================================= */

.ads-live-badge {

    color: #bbf7d0;

    background:
        rgba(34,197,94,0.08);

    border:
        1px solid
        rgba(34,197,94,0.25);
}


.ads-live-badge i {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #22c55e;

    animation:
        adsLivePulse
        1.2s
        infinite
        ease-in-out;
}


.ads-hot-badge {

    color: #fde68a;

    background:
        rgba(245,158,11,0.1);

    border:
        1px solid
        rgba(245,158,11,0.25);
}


@keyframes adsLivePulse {

    0%,
    100% {

        opacity: 0.45;

        transform: scale(0.8);
    }

    50% {

        opacity: 1;

        transform: scale(1.15);

        box-shadow:
            0 0 12px
            rgba(34,197,94,0.7);
    }
}


/* =========================================================
   NEW AD NOTIFICATION
========================================================= */

.ads-new-notification {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    padding:
        12px
        20px;

    color: #9ca3af;

    background:
        rgba(245,158,11,0.035);

    border-bottom:
        1px solid
        rgba(255,255,255,0.05);

    font-size: 0.65rem;
}


.ads-new-notification strong {

    color: #fcd34d;

    font-weight: 800;
}


.ads-notification-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #f59e0b;

    box-shadow:
        0 0 12px
        rgba(245,158,11,0.75);

    animation:
        newAdPulse
        1.2s
        infinite
        ease-in-out;
}


@keyframes newAdPulse {

    0%,
    100% {

        opacity: 0.45;
    }

    50% {

        opacity: 1;

        transform: scale(1.25);
    }
}


/* =========================================================
   AD AREA
========================================================= */

.paid-ad-area {

    padding:
        22px;
}


.paid-ad-box {

    width: 100%;

    max-width: 650px;

    min-height: 310px;
    
    height: 310px;

    margin: 0 auto;

    border-radius: 22px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #151b27,
            #111827,
            #1d1608
        );

    border:
        1px solid
        rgba(255,255,255,0.1);

    box-shadow:
        inset 0 0 80px
        rgba(0,0,0,0.3),

        0 20px 50px
        rgba(0,0,0,0.3);

    transition:
        background 0.5s ease;
}


/* =========================================================
   AD CATEGORY
========================================================= */

.paid-ad-category {

    position: absolute;

    left: 17px;

    top: 17px;

    z-index: 5;

    padding:
        7px
        10px;

    border-radius: 999px;

    color: #fef3c7;

    background:
        rgba(245,158,11,0.12);

    border:
        1px solid
        rgba(245,158,11,0.25);

    font-size: 0.58rem;

    font-weight: 800;

    letter-spacing: 0.04em;
}


/* =========================================================
   AD VISUAL
========================================================= */

.paid-ad-visual {

    width: 45%;

    height: 135% !important;

    min-height: 135px !important;

    position: relative;

    display: grid;

    place-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #171f2e,
            #111827
        );
}


.paid-ad-visual-glow {

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    background:
        rgba(245,158,11,0.22);

    filter: blur(35px);

    animation:
        adVisualGlow
        4s
        infinite
        ease-in-out;
}


@keyframes adVisualGlow {

    0%,
    100% {

        transform:
            scale(0.9);

        opacity: 0.55;
    }

    50% {

        transform:
            scale(1.2);

        opacity: 1;
    }
}


.paid-ad-visual-icon {

    position: relative;

    z-index: 2;

    width: 105px;

    height: 105px;

    display: grid;

    place-items: center;

    border-radius: 27px;

    font-size: 3rem;

    background:
        rgba(255,255,255,0.06);

    border:
        1px solid
        rgba(255,255,255,0.14);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,0.25);

    animation:
        adIconFloat
        3s
        infinite
        ease-in-out;
}


@keyframes adIconFloat {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {

        transform:
            translateY(-8px)
            rotate(2deg);
    }
}


/* =========================================================
   AD CONTENT
========================================================= */

.paid-ad-content {

    width: 55%;

    padding:
        15px 16px;

    position: relative;

    z-index: 3;
}


.paid-ad-label {

    color: #fbbf24;

    font-size: 0.55rem;

    font-weight: 800;

    letter-spacing: 0.1em;
}


.paid-ad-content h4 {

    margin:
        8px
        0
        8px;

    color: #ffffff;

    font-size:
        clamp(
            1.15rem,
            3vw,
            1.5rem
        );

    line-height: 1.15;
}


.paid-ad-content p {

    margin:
        0
        0
        20px;

    color: #9ca3af;

    font-size: 0.7rem;

    line-height: 1.5;
}


/* =========================================================
   VIEW AD BUTTON
========================================================= */

.view-ad-btn {

    border: none;

    border-radius: 11px;

    padding:
        11px
        16px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #111827;

    background:
        linear-gradient(
            100deg,
            #fbbf24,
            #f97316
        );

    font-size: 0.65rem;

    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 8px 25px
        rgba(245,158,11,0.18);

    animation:
        viewAdPulse
        2.5s
        infinite
        ease-in-out;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.view-ad-btn:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(245,158,11,0.3);
}


@keyframes viewAdPulse {

    0%,
    70%,
    100% {

        transform: scale(1);
    }

    75% {

        transform: scale(1.035);
    }

    80% {

        transform: scale(1);
    }
}


/* =========================================================
   AD REWARD
========================================================= */

.paid-ad-reward {

    position: absolute;

    right: 17px;

    top: 17px;

    z-index: 5;

    padding:
        8px
        10px;

    text-align: right;

    border-radius: 10px;

    background:
        rgba(132,204,22,0.1);

    border:
        1px solid
        rgba(163,230,53,0.22);
}


.paid-ad-reward small {

    display: block;

    color: #bef264;

    font-size: 0.45rem;

    font-weight: 700;

    letter-spacing: 0.07em;
}


.paid-ad-reward strong {

    display: block;

    margin-top: 3px;

    color: #d9f99d;

    font-size: 0.72rem;
}


/* =========================================================
   PROGRESS
========================================================= */

.ads-progress-area {

    padding:
        0
        22px
        14px;
}


.ads-progress-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 7px;

    color: #85858f;

    font-size: 0.62rem;
}


.ads-progress-top strong {

    color: #fcd34d;

    font-weight: 800;
}


.ads-progress-track {

    width: 100%;

    height: 6px;

    border-radius: 999px;

    overflow: hidden;

    background:
        rgba(255,255,255,0.07);
}


.ads-progress-bar {

    width: 0%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #fbbf24,
            #f97316
        );

    box-shadow:
        0 0 14px
        rgba(245,158,11,0.45);

    transition:
        width 0.1s linear;
}


/* =========================================================
   LIVE EARNING
========================================================= */

.ads-live-earning {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    padding:
        12px 20px;

    color: #85858f;

    background:
        rgba(132,204,22,0.035);

    border-top:
        1px solid
        rgba(255,255,255,0.05);

    border-bottom:
        1px solid
        rgba(255,255,255,0.05);

    font-size: 0.68rem;
}


.ads-live-earning strong {

    color: #d9f99d;

    font-weight: 800;
}


.ads-live-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #84cc16;

    box-shadow:
        0 0 10px
        rgba(132,204,22,0.65);

    animation:
        adsEarningPulse
        1.2s
        infinite
        ease-in-out;
}


@keyframes adsEarningPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}


/* =========================================================
   STATISTICS
========================================================= */

.ads-stat-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    background:
        rgba(255,255,255,0.06);
}


.ads-stat-grid > div {

    padding:
        15px
        10px;

    text-align: center;

    background:
        #090d14;
}


.ads-stat-grid small {

    display: block;

    color: #686871;

    font-size: 0.48rem;

    letter-spacing: 0.06em;

    font-weight: 700;
}


.ads-stat-grid strong {

    display: block;

    margin-top: 5px;

    color: #eeeeF5;

    font-size: 0.76rem;
}


/* =========================================================
   REGISTER BUTTON
========================================================= */

.ads-action-area {

    padding:
        18px
        22px;
}


.ads-register-btn {

    width: 100%;

    border: none;

    border-radius: 15px;

    padding:
        15px
        20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: #111827;

    background:
        linear-gradient(
            100deg,
            #fbbf24,
            #f97316
        );

    font-size: 0.85rem;

    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 12px 35px
        rgba(245,158,11,0.2);

    animation:
        adsButtonPulse
        3s
        infinite
        ease-in-out;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.ads-register-btn strong {

    margin-left: 4px;
}


.ads-register-btn:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 18px 40px
        rgba(245,158,11,0.32);
}


@keyframes adsButtonPulse {

    0%,
    70%,
    100% {

        transform: scale(1);
    }

    75% {

        transform: scale(1.015);
    }

    80% {

        transform: scale(1);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .paid-ads-income-card {

        margin-top: 35px;

        border-radius: 22px;
    }


    .ads-card-header {

        padding: 18px;

        flex-direction: column;

        align-items: flex-start;
    }


    .ads-main-icon {

        width: 43px;

        height: 43px;

        border-radius: 13px;

        font-size: 1.2rem;
    }


    .ads-title-area p {

        font-size: 0.66rem;
    }


    .paid-ad-area {

        padding:
            15px
            14px;
    }


    .paid-ad-box {

        min-height: 270px !important;

    height: 270px !important;

        flex-direction: column;

        align-items: stretch;

        border-radius: 18px;
    }


    .paid-ad-visual {

        width: 100%;

        height: 180px;

        min-height: 180px;
    }


    .paid-ad-visual-icon {

        width: 75px;

        height: 75px;

        font-size: 2.2rem;
    }


    .paid-ad-content {

        width: 100%;

        padding:
            10px
            14px;
    }


    .paid-ad-content h4 {

         margin:
        4px
        0
        4px !important;

    font-size: 0.9rem !important;
    }


    .paid-ad-content p {

        font-size: 0.66rem;

        margin-bottom: 15px;
    }


    .paid-ad-reward {

        top: 14px;

        right: 14px;
    }


    .ads-progress-area {

        padding:
            0
            14px
            12px;
    }


    .ads-action-area {

        padding:
            15px
            14px;
    }


    .ads-register-btn {

        padding:
            14px
            15px;

        font-size: 0.76rem;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .paid-ad-box {

        min-height: 410px;
    }


    .paid-ad-visual {

        height: 165px;

        min-height: 165px;
    }


    .ads-stat-grid > div {

        padding:
            12px
            5px;
    }

}

/* =========================================================
   AIBON — COMPACT INCOME STREAM CARDS
========================================================= */

@media (max-width: 600px) {

    /* -----------------------------------------
       GENERAL CARD
    ----------------------------------------- */

    .income-stream-card {

        border-radius: 20px !important;

    }


    /* -----------------------------------------
       CARD HEADERS
    ----------------------------------------- */

    .youtube-card-header,
    .ads-card-header {

        padding: 14px 16px !important;

        gap: 10px !important;

    }


    .youtube-title-area,
    .ads-title-area {

        gap: 10px !important;

    }


    .youtube-main-icon,
    .ads-main-icon {

        width: 40px !important;

        height: 40px !important;

        border-radius: 11px !important;

    }


    .youtube-title-area h3,
    .ads-title-area h3 {

        font-size: 1rem !important;

    }


    .youtube-title-area p,
    .ads-title-area p {

        margin-top: 3px !important;

        font-size: 0.6rem !important;

    }


    /* -----------------------------------------
       BADGES
    ----------------------------------------- */

    .activity-badges {

        gap: 5px !important;

    }


    .activity-badge {

        padding: 5px 8px !important;

        font-size: 0.48rem !important;

    }


    /* -----------------------------------------
       YOUTUBE VIDEO
    ----------------------------------------- */

    .youtube-video-area {

        padding:
            12px
            12px
            8px !important;

    }


    .youtube-video-player {

        height: 285px !important;

        border-radius: 16px !important;

    }


    .youtube-play-button {

        width: 54px !important;

        height: 54px !important;

    }


    .youtube-video-info {

        left: 13px !important;

        bottom: 14px !important;

    }


    .youtube-video-info strong {

        font-size: 0.72rem !important;

    }


    .youtube-video-info span {

        font-size: 0.52rem !important;

    }


    .youtube-video-stats {

        right: 12px !important;

        bottom: 40px !important;

        gap: 5px !important;

        font-size: 0.45rem !important;

    }


    .youtube-reward {

        top: 12px !important;

        right: 12px !important;

        padding: 6px 8px !important;

    }


    .youtube-reward small {

        font-size: 0.4rem !important;

    }


    .youtube-reward strong {

        font-size: 0.65rem !important;

    }


    /* -----------------------------------------
       PROGRESS
    ----------------------------------------- */

    .youtube-progress-area,
    .ads-progress-area {

        padding:
            0
            13px
            9px !important;

    }


    .youtube-progress-top,
    .ads-progress-top {

        margin-bottom: 5px !important;

        font-size: 0.52rem !important;

    }


    .youtube-progress-track,
    .ads-progress-track {

        height: 4px !important;

    }


    /* -----------------------------------------
       LIVE EARNING
    ----------------------------------------- */

    .youtube-live-earning,
    .ads-live-earning {

        padding:
            9px
            12px !important;

        font-size: 0.57rem !important;

    }


    /* -----------------------------------------
       STATISTICS
    ----------------------------------------- */

    .youtube-stat-grid > div,
    .ads-stat-grid > div {

        padding:
            10px
            6px !important;

    }


    .youtube-stat-grid small,
    .ads-stat-grid small {

        font-size: 0.4rem !important;

    }


    .youtube-stat-grid strong,
    .ads-stat-grid strong {

        margin-top: 3px !important;

        font-size: 0.65rem !important;

    }


    /* -----------------------------------------
       BUTTONS
    ----------------------------------------- */

    .youtube-action-area,
    .ads-action-area {

        padding:
            11px
            13px !important;

    }


    .youtube-register-btn,
    .ads-register-btn {

        padding:
            11px
            13px !important;

        border-radius: 12px !important;

        font-size: 0.68rem !important;

    }


    /* -----------------------------------------
       FOOTER
    ----------------------------------------- */

    .youtube-footer,
    .ads-footer {

        padding-bottom: 10px !important;

    }


    .youtube-footer span,
    .ads-footer span {

        font-size: 0.48rem !important;

    }


/* =========================================================
   AIBON — COMPACT TIKTOK CARD
========================================================= */

@media (max-width: 600px) {

    /* Main TikTok card */

    .tiktok-income-card {

        border-radius: 20px !important;

    }


    /* Header */

    .tiktok-card-header {

        padding: 14px 16px !important;

        gap: 10px !important;

    }


    .tiktok-title-area {

        gap: 10px !important;

    }


    .tiktok-main-icon {

        width: 40px !important;

        height: 40px !important;

        border-radius: 11px !important;

    }


    .tiktok-title-area h3 {

        font-size: 1rem !important;

    }


    .tiktok-title-area p {

        margin-top: 3px !important;

        font-size: 0.6rem !important;

    }


    /* Badges */

    .tiktok-card-header .activity-badge {

        padding: 5px 8px !important;

        font-size: 0.48rem !important;

    }


    /* TikTok video area */

    .tiktok-video-area {

        padding:
            12px
            12px
            8px !important;

    }


    .tiktok-video-player {

        height: 285px !important;

        border-radius: 16px !important;

    }


    /* TikTok play button */

    .tiktok-play-button {

        width: 54px !important;

        height: 54px !important;

    }


    /* Video information */

    .tiktok-video-info {

        left: 13px !important;

        bottom: 14px !important;

    }


    .tiktok-video-info strong {

        font-size: 0.72rem !important;

    }


    .tiktok-video-info span {

        font-size: 0.52rem !important;

    }


    /* Video statistics */

    .tiktok-video-stats {

        right: 12px !important;

        bottom: 40px !important;

        gap: 5px !important;

        font-size: 0.45rem !important;

    }


    /* Reward */

    .tiktok-reward {

        top: 12px !important;

        right: 12px !important;

        padding:
            6px
            8px !important;

    }


    .tiktok-reward small {

        font-size: 0.4rem !important;

    }


    .tiktok-reward strong {

        font-size: 0.65rem !important;

    }


    /* Progress */

    .tiktok-progress-area {

        padding:
            0
            13px
            9px !important;

    }


    .tiktok-progress-top {

        margin-bottom: 5px !important;

        font-size: 0.52rem !important;

    }


    .tiktok-progress-track {

        height: 4px !important;

    }


    /* Live earning */

    .tiktok-live-earning {

        padding:
            9px
            12px !important;

        font-size: 0.57rem !important;

    }


    /* Statistics */

    .tiktok-stat-grid > div {

        padding:
            10px
            6px !important;

    }


    .tiktok-stat-grid small {

        font-size: 0.4rem !important;

    }


    .tiktok-stat-grid strong {

        margin-top: 3px !important;

        font-size: 0.65rem !important;

    }


    /* Register button */

    .tiktok-action-area {

        padding:
            11px
            13px !important;

    }


    .tiktok-register-btn {

        padding:
            11px
            13px !important;

        border-radius: 12px !important;

        font-size: 0.68rem !important;

    }


    /* Footer */

    .tiktok-footer {

        padding-bottom: 10px !important;

    }


    .tiktok-footer span {

        font-size: 0.48rem !important;

    }

}

/* =========================================================
   AIBON — INCOME STREAM 05
   PAID TRIVIA
========================================================= */

.trivia-income-card {

    width: 100%;
    max-width: 900px;

    margin: 30px auto 0;

    overflow: hidden;

    position: relative;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #071321 0%,
            #0b1225 50%,
            #120b25 100%
        );

    border:
        1px solid
        rgba(56, 189, 248, 0.25);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.35),

        0 0 40px
        rgba(56, 189, 248, 0.05);
}


/* =========================================================
   HEADER
========================================================= */

.trivia-card-header {

    padding:
        15px
        18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    background:
        linear-gradient(
            110deg,
            #071522,
            #10172b,
            #130b25
        );

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.06);
}


.trivia-title-area {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;
}


.trivia-main-icon {

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 12px;

    font-size: 1.05rem;

    background:
        linear-gradient(
            135deg,
            #06b6d4,
            #6366f1
        );

    box-shadow:
        0 8px 22px
        rgba(6, 182, 212, 0.2);
}


.trivia-heading {

    min-width: 0;
}


.trivia-eyebrow {

    display: block;

    margin-bottom: 2px;

    color: #67e8f9;

    font-size: 0.48rem;

    font-weight: 800;

    letter-spacing: 0.12em;
}


.trivia-heading h3 {

    margin: 0;

    color: #ffffff;

    font-size: 1.05rem;

    line-height: 1.1;
}


.trivia-heading p {

    margin: 3px 0 0;

    color: #8b98aa;

    font-size: 0.58rem;
}


/* =========================================================
   BADGES
========================================================= */

.trivia-badges {

    display: flex;

    align-items: center;

    gap: 5px;

    flex-shrink: 0;
}


.trivia-badge {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding:
        5px
        8px;

    border-radius: 20px;

    font-size: 0.44rem;

    font-weight: 800;

    letter-spacing: 0.04em;

    white-space: nowrap;
}


.trivia-live-badge {

    color: #67e8f9;

    background:
        rgba(6, 182, 212, 0.08);

    border:
        1px solid
        rgba(6, 182, 212, 0.25);
}


.trivia-live-badge i {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #22d3ee;

    animation:
        triviaLivePulse
        1.2s
        infinite;
}


.trivia-quiz-badge {

    color: #c4b5fd;

    background:
        rgba(99, 102, 241, 0.08);

    border:
        1px solid
        rgba(99, 102, 241, 0.25);
}


@keyframes triviaLivePulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);

        box-shadow:
            0 0 10px
            rgba(34, 211, 238, 0.7);
    }
}


/* =========================================================
   QUESTION CONTENT
========================================================= */

.trivia-content {

    padding:
        14px
        16px
        13px;
}


.trivia-question-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 7px;
}


.trivia-question-label {

    color: #67e8f9;

    font-size: 0.48rem;

    font-weight: 800;

    letter-spacing: 0.08em;
}


.trivia-question-number {

    color: #818cf8;

    font-size: 0.48rem;

    font-weight: 800;
}


.trivia-content h4 {

    margin:
        0
        auto
        11px;

    max-width: 700px;

    color: #ffffff;

    text-align: center;

    font-size: 1rem;

    line-height: 1.3;
}


/* =========================================================
   ANSWERS
========================================================= */

.trivia-options {

    max-width: 700px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 6px;
}


.trivia-option {

    min-height: 39px;

    padding:
        6px
        9px;

    display: flex;

    align-items: center;

    gap: 8px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 9px;

    color: #dbeafe;

    background:
        rgba(255, 255, 255, 0.035);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.6rem;

    font-weight: 700;

    text-align: left;

    transition:
        all 0.35s ease;
}


.trivia-option-letter {

    width: 21px;
    height: 21px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 6px;

    color: #67e8f9;

    background:
        rgba(6, 182, 212, 0.1);

    font-size: 0.48rem;

    font-weight: 900;
}


/* Correct answer */

.trivia-option.correct {

    color: #ecfccb;

    border-color:
        rgba(163, 230, 53, 0.7);

    background:
        linear-gradient(
            100deg,
            rgba(132, 204, 22, 0.15),
            rgba(6, 182, 212, 0.08)
        );

    box-shadow:
        0 0 22px
        rgba(132, 204, 22, 0.12);

    transform:
        scale(1.015);
}


.trivia-option.correct
.trivia-option-letter {

    color: #ffffff;

    background:
        #65a30d;
}


/* Wrong answers stay subtle */

.trivia-option.dimmed {

    opacity: 0.35;

    transform: scale(0.99);
}


/* =========================================================
   RESULT
========================================================= */

.trivia-result {

    min-height: 20px;

    margin-top: 6px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    opacity: 0;

    color: #7dd3fc;

    font-size: 0.55rem;

    transition:
        opacity 0.3s ease;
}


.trivia-result.show {

    opacity: 1;
}


.trivia-result.correct-result {

    color: #bef264;
}


.trivia-result-icon {

    font-weight: 900;
}


/* =========================================================
   REWARD ROW
========================================================= */

.trivia-reward-row {

    max-width: 700px;

    margin:
        5px
        auto
        8px;

    padding:
        7px
        10px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-radius: 9px;

    background:
        rgba(99, 102, 241, 0.06);

    border:
        1px solid
        rgba(99, 102, 241, 0.12);
}


.trivia-reward-info small {

    display: block;

    color: #748196;

    font-size: 0.4rem;

    font-weight: 700;

    letter-spacing: 0.06em;
}


.trivia-reward-info strong {

    display: block;

    margin-top: 2px;

    color: #67e8f9;

    font-size: 0.72rem;

    transition:
        transform 0.3s ease;
}


.trivia-reward-info strong.paid {

    color: #bef264;

    transform:
        scale(1.08);
}


.trivia-streak {

    display: flex;

    align-items: center;

    gap: 4px;

    color: #778397;

    font-size: 0.5rem;
}


.trivia-fire {

    font-size: 0.75rem;
}


.trivia-streak strong {

    color: #fbbf24;

    font-size: 0.65rem;
}


/* =========================================================
   AUTOMATIC STATUS
========================================================= */

.trivia-earning-status {

    min-height: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    color: #8491a3;

    font-size: 0.48rem;

    transition:
        color 0.3s ease;
}


.trivia-earning-status.paid {

    color: #bef264;
}


.trivia-status-dot {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #22d3ee;

    animation:
        triviaStatusPulse
        1s
        infinite;
}


.trivia-earning-status.paid
.trivia-status-dot {

    background: #84cc16;

    box-shadow:
        0 0 10px
        rgba(132, 204, 22, 0.8);
}


@keyframes triviaStatusPulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }
}


/* =========================================================
   DEMO STATUS BUTTON
========================================================= */

.trivia-action-btn {

    width: 100%;

    max-width: 700px;

    margin:
        5px
        auto
        0;

    padding:
        9px
        12px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    border: none;

    border-radius: 10px;

    color: #ffffff;

    background:
        linear-gradient(
            100deg,
            #0891b2,
            #6366f1
        );

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.6rem;

    font-weight: 900;

    transition:
        all 0.3s ease;
}


.trivia-action-btn.paid {

    background:
        linear-gradient(
            100deg,
            #65a30d,
            #16a34a
        );

    box-shadow:
        0 8px 22px
        rgba(34, 197, 94, 0.15);
}


/* =========================================================
   REGISTER BUTTON
========================================================= */

.trivia-register-btn {

    width: 100%;

    max-width: 700px;

    margin:
        6px
        auto
        0;

    padding:
        8px
        12px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    border:
        1px solid
        rgba(103, 232, 249, 0.3);

    border-radius: 10px;

    color: #67e8f9;

    background:
        rgba(6, 182, 212, 0.05);

    text-decoration: none;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.58rem;

    font-weight: 800;

    transition:
        all 0.25s ease;
}


.trivia-register-btn:hover {

    transform:
        translateY(-2px);

    background:
        rgba(6, 182, 212, 0.1);

    border-color:
        rgba(103, 232, 249, 0.6);

    box-shadow:
        0 8px 22px
        rgba(6, 182, 212, 0.1);
}


.trivia-register-btn strong {

    transition:
        transform 0.25s ease;
}


.trivia-register-btn:hover strong {

    transform:
        translateX(4px);
}


/* =========================================================
   LIVE PLAYERS
========================================================= */

.trivia-live-strip {

    padding:
        7px
        10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);

    color: #697689;

    font-size: 0.48rem;
}


.trivia-live-strip strong {

    color: #67e8f9;

    font-weight: 800;
}


.trivia-live-dot {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #22d3ee;

    box-shadow:
        0 0 9px
        rgba(34, 211, 238, 0.7);

    animation:
        triviaLivePulse
        1.2s
        infinite;
}


/* =========================================================
   FOOTER
========================================================= */

.trivia-footer {

    padding:
        7px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    color: #596576;

    font-size: 0.43rem;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .trivia-income-card {

        margin-top: 24px;

        border-radius: 18px;
    }


    .trivia-card-header {

        padding:
            12px
            13px;

        align-items: flex-start;
    }


    .trivia-main-icon {

        width: 36px;
        height: 36px;

        border-radius: 10px;

        font-size: 0.95rem;
    }


    .trivia-heading h3 {

        font-size: 0.95rem;
    }


    .trivia-heading p {

        font-size: 0.54rem;
    }


    .trivia-eyebrow {

        font-size: 0.43rem;
    }


    .trivia-badges {

        gap: 3px;
    }


    .trivia-badge {

        padding:
            4px
            6px;

        font-size: 0.38rem;
    }


    .trivia-content {

        padding:
            12px
            11px
            10px;
    }


    .trivia-content h4 {

        margin-bottom: 9px;

        font-size: 0.9rem;
    }


    .trivia-options {

        gap: 5px;
    }


    .trivia-option {

        min-height: 36px;

        padding:
            5px
            7px;

        border-radius: 8px;

        font-size: 0.55rem;
    }


    .trivia-option-letter {

        width: 19px;
        height: 19px;

        border-radius: 5px;

        font-size: 0.45rem;
    }


    .trivia-reward-row {

        padding:
            6px
            8px;

        margin-bottom: 5px;
    }


    .trivia-reward-info small {

        font-size: 0.36rem;
    }


    .trivia-reward-info strong {

        font-size: 0.66rem;
    }


    .trivia-streak {

        font-size: 0.45rem;
    }


    .trivia-action-btn {

        padding:
            8px
            10px;

        font-size: 0.55rem;
    }


    .trivia-register-btn {

        padding:
            7px
            10px;

        font-size: 0.52rem;
    }


    .trivia-live-strip {

        font-size: 0.43rem;
    }


    .trivia-footer {

        gap: 8px;

        font-size: 0.39rem;
    }

}

/* =========================================================
   AIBON — INCOME STREAM 06
   PAID WHATSAPP STATUS VIEWS
========================================================= */

.whatsapp-status-income-card {

    width: 100%;

    max-width: 900px;

    margin: 25px auto 0;

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #071916,
            #081d1a,
            #0b1117
        );

    border:
        1px solid
        rgba(52, 211, 153, 0.22);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.3),

        0 0 35px
        rgba(16, 185, 129, 0.05);
}


/* =========================================================
   HEADER
========================================================= */

.whatsapp-status-header {

    padding:
        13px
        16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    background:
        linear-gradient(
            110deg,
            #071b18,
            #0a211d,
            #0a1518
        );

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);
}


.whatsapp-status-title {

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 0;
}


.whatsapp-status-icon {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #10b981,
            #059669
        );

    box-shadow:
        0 7px 20px
        rgba(16, 185, 129, 0.2);

    font-size: 1.15rem;

    position: relative;
}


.whatsapp-status-icon::after {

    content: "";

    position: absolute;

    inset: -4px;

    border:
        1px solid
        rgba(52, 211, 153, 0.3);

    border-radius: 50%;

    animation:
        whatsappIconPulse
        2s
        infinite;
}


@keyframes whatsappIconPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}


.whatsapp-status-eyebrow {

    display: block;

    color: #6ee7b7;

    font-size: 0.43rem;

    font-weight: 800;

    letter-spacing: 0.1em;
}


.whatsapp-status-title h3 {

    margin: 2px 0 0;

    color: #ffffff;

    font-size: 0.98rem;

    line-height: 1.15;
}


.whatsapp-status-title p {

    margin: 3px 0 0;

    color: #82928d;

    font-size: 0.54rem;
}


/* =========================================================
   BADGES
========================================================= */

.whatsapp-status-badges {

    display: flex;

    gap: 4px;

    flex-shrink: 0;
}


.whatsapp-status-live,
.whatsapp-status-mini-badge {

    padding:
        4px
        7px;

    border-radius: 15px;

    font-size: 0.4rem;

    font-weight: 800;

    white-space: nowrap;
}


.whatsapp-status-live {

    display: flex;

    align-items: center;

    gap: 4px;

    color: #6ee7b7;

    background:
        rgba(16, 185, 129, 0.08);

    border:
        1px solid
        rgba(16, 185, 129, 0.25);
}


.whatsapp-status-live i {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #34d399;

    animation:
        whatsappLivePulse
        1.2s
        infinite;
}


.whatsapp-status-mini-badge {

    color: #a7f3d0;

    background:
        rgba(52, 211, 153, 0.06);

    border:
        1px solid
        rgba(52, 211, 153, 0.18);
}


@keyframes whatsappLivePulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;

        box-shadow:
            0 0 10px
            rgba(52, 211, 153, 0.8);
    }
}


/* =========================================================
   CONTENT
========================================================= */

.whatsapp-status-content {

    padding:
        11px
        13px
        10px;
}


/* =========================================================
   STATUS PREVIEW
========================================================= */

.whatsapp-status-preview {

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        8px
        9px;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid
        rgba(255, 255, 255, 0.06);
}


.whatsapp-status-avatar {

    width: 31px;

    height: 31px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #10b981,
            #14b8a6
        );

    font-size: 0.65rem;

    font-weight: 900;

    border:
        2px solid
        #34d399;
}


.whatsapp-status-info {

    min-width: 0;

    flex: 1;
}


.whatsapp-status-info strong {

    display: block;

    color: #e5f7ef;

    font-size: 0.63rem;
}


.whatsapp-status-info small {

    display: block;

    margin-top: 2px;

    color: #71817b;

    font-size: 0.43rem;
}


.whatsapp-status-viewers {

    display: flex;

    align-items: center;

    gap: 4px;

    color: #6ee7b7;

    font-size: 0.52rem;
}


/* =========================================================
   STATUS MESSAGE
========================================================= */

.whatsapp-status-message {

    margin-top: 7px;

    padding:
        9px
        10px;

    border-radius: 10px;

    color: #d7f7e8;

    background:
        linear-gradient(
            100deg,
            rgba(16, 185, 129, 0.08),
            rgba(20, 184, 166, 0.05)
        );

    border:
        1px solid
        rgba(52, 211, 153, 0.1);

    font-size: 0.6rem;

    text-align: center;

    transition:
        opacity 0.3s ease;
}


/* =========================================================
   PROGRESS
========================================================= */

.whatsapp-status-progress {

    margin-top: 8px;
}


.whatsapp-status-progress-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 4px;

    color: #687a73;

    font-size: 0.43rem;
}


.whatsapp-status-progress-top strong {

    color: #6ee7b7;
}


.whatsapp-status-progress-track {

    height: 4px;

    overflow: hidden;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.07);
}


.whatsapp-status-progress-bar {

    width: 0%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #10b981,
            #14b8a6,
            #34d399
        );

    transition:
        width 0.1s linear;

    box-shadow:
        0 0 10px
        rgba(52, 211, 153, 0.35);
}


/* =========================================================
   REWARD
========================================================= */

.whatsapp-status-reward-row {

    margin-top: 7px;

    padding:
        6px
        9px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-radius: 9px;

    background:
        rgba(16, 185, 129, 0.045);

    border:
        1px solid
        rgba(16, 185, 129, 0.09);
}


.whatsapp-status-reward-row small {

    display: block;

    color: #64746f;

    font-size: 0.37rem;

    font-weight: 700;
}


.whatsapp-status-reward-row strong {

    display: block;

    margin-top: 2px;

    color: #6ee7b7;

    font-size: 0.68rem;

    transition:
        transform 0.3s ease;
}


.whatsapp-status-reward-row strong.paid {

    color: #bef264;

    transform:
        scale(1.08);
}


.whatsapp-status-earned {

    color: #6b7b74;

    font-size: 0.43rem;

    font-weight: 800;

    transition:
        color 0.3s ease;
}


.whatsapp-status-earned.complete {

    color: #bef264;
}


/* =========================================================
   REGISTER
========================================================= */

.whatsapp-status-register {

    width: 100%;

    margin-top: 7px;

    padding:
        8px
        11px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border-radius: 9px;

    color: #6ee7b7;

    background:
        rgba(16, 185, 129, 0.07);

    border:
        1px solid
        rgba(52, 211, 153, 0.24);

    text-decoration: none;

    font-size: 0.56rem;

    font-weight: 800;

    transition:
        all 0.25s ease;
}


.whatsapp-status-register:hover {

    transform:
        translateY(-2px);

    background:
        rgba(16, 185, 129, 0.12);

    border-color:
        rgba(52, 211, 153, 0.5);

    box-shadow:
        0 7px 20px
        rgba(16, 185, 129, 0.1);
}


.whatsapp-status-register strong {

    transition:
        transform 0.2s ease;
}


.whatsapp-status-register:hover strong {

    transform:
        translateX(4px);
}


/* =========================================================
   LIVE STRIP
========================================================= */

.whatsapp-status-live-strip {

    padding:
        6px
        10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.04);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.04);

    color: #63736d;

    font-size: 0.43rem;
}


.whatsapp-status-live-strip strong {

    color: #6ee7b7;

    font-weight: 800;
}


.whatsapp-status-live-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #34d399;

    box-shadow:
        0 0 8px
        rgba(52, 211, 153, 0.7);

    animation:
        whatsappLivePulse
        1.2s
        infinite;
}


/* =========================================================
   FOOTER
========================================================= */

.whatsapp-status-footer {

    padding: 6px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    color: #53635d;

    font-size: 0.4rem;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .whatsapp-status-income-card {

        margin-top: 22px;

        border-radius: 17px;
    }


    .whatsapp-status-header {

        padding:
            11px
            12px;
    }


    .whatsapp-status-icon {

        width: 34px;

        height: 34px;

        font-size: 1rem;
    }


    .whatsapp-status-title h3 {

        font-size: 0.9rem;
    }


    .whatsapp-status-title p {

        font-size: 0.5rem;
    }


    .whatsapp-status-eyebrow {

        font-size: 0.4rem;
    }


    .whatsapp-status-badges {

        gap: 3px;
    }


    .whatsapp-status-live,
    .whatsapp-status-mini-badge {

        padding:
            3px
            5px;

        font-size: 0.35rem;
    }


    .whatsapp-status-content {

        padding:
            9px
            10px
            8px;
    }


    .whatsapp-status-preview {

        padding:
            7px
            8px;
    }


    .whatsapp-status-avatar {

        width: 28px;

        height: 28px;

        font-size: 0.58rem;
    }


    .whatsapp-status-message {

        padding:
            8px;

        font-size: 0.55rem;
    }


    .whatsapp-status-reward-row {

        padding:
            5px
            8px;
    }


    .whatsapp-status-reward-row strong {

        font-size: 0.62rem;
    }


    .whatsapp-status-register {

        padding:
            7px
            9px;

        font-size: 0.51rem;
    }


    .whatsapp-status-footer {

        gap: 8px;

        font-size: 0.36rem;
    }

}

/* =========================================================
   AIBON — INCOME STREAM 07
   PAID MUSIC LISTENING
========================================================= */

.music-income-card {

    width: 100%;

    max-width: 900px;

    margin: 24px auto 0;

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #120b25,
            #190d2d,
            #0d0a1b
        );

    border:
        1px solid
        rgba(192, 132, 252, 0.25);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.32),

        0 0 35px
        rgba(168, 85, 247, 0.06);
}


/* =========================================================
   HEADER
========================================================= */

.music-card-header {

    padding:
        13px
        16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    background:
        linear-gradient(
            110deg,
            #160c27,
            #211036,
            #100b1f
        );

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);
}


.music-title-area {

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 0;
}


.music-main-icon {

    width: 37px;

    height: 37px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #a855f7,
            #ec4899
        );

    box-shadow:
        0 7px 20px
        rgba(168, 85, 247, 0.2);

    font-size: 1rem;
}


.music-heading {

    min-width: 0;
}


.music-eyebrow {

    display: block;

    color: #d8b4fe;

    font-size: 0.42rem;

    font-weight: 800;

    letter-spacing: 0.1em;
}


.music-heading h3 {

    margin: 2px 0 0;

    color: #ffffff;

    font-size: 0.96rem;

    line-height: 1.15;
}


.music-heading p {

    margin: 3px 0 0;

    color: #958aa5;

    font-size: 0.53rem;
}


/* =========================================================
   BADGES
========================================================= */

.music-badges {

    display: flex;

    gap: 4px;

    flex-shrink: 0;
}


.music-live-badge,
.music-mini-badge {

    padding:
        4px
        7px;

    border-radius: 15px;

    font-size: 0.38rem;

    font-weight: 800;

    white-space: nowrap;
}


.music-live-badge {

    display: flex;

    align-items: center;

    gap: 4px;

    color: #e9d5ff;

    background:
        rgba(168, 85, 247, 0.08);

    border:
        1px solid
        rgba(192, 132, 252, 0.25);
}


.music-live-badge i {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #c084fc;

    animation:
        musicLivePulse
        1.2s
        infinite;
}


.music-mini-badge {

    color: #f5d0fe;

    background:
        rgba(236, 72, 153, 0.07);

    border:
        1px solid
        rgba(236, 72, 153, 0.2);
}


@keyframes musicLivePulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;

        box-shadow:
            0 0 10px
            rgba(192, 132, 252, 0.8);
    }
}


/* =========================================================
   CONTENT
========================================================= */

.music-content {

    padding:
        10px
        13px
        9px;
}


/* =========================================================
   MUSIC PLAYER
========================================================= */

.music-player {

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        9px;

    border-radius: 13px;

    background:
        linear-gradient(
            110deg,
            rgba(168, 85, 247, 0.09),
            rgba(236, 72, 153, 0.05)
        );

    border:
        1px solid
        rgba(192, 132, 252, 0.12);
}


/* =========================================================
   ALBUM ART
========================================================= */

.music-album-art {

    width: 58px;

    height: 58px;

    flex-shrink: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            #7e22ce,
            #db2777
        );

    box-shadow:
        inset 0 0 25px
        rgba(255,255,255,0.08),

        0 7px 18px
        rgba(126, 34, 206, 0.18);

    overflow: hidden;
}


.music-note {

    color: #ffffff;

    font-size: 1.45rem;

    line-height: 1;
}


.music-equalizer {

    height: 10px;

    margin-top: 4px;

    display: flex;

    align-items: flex-end;

    gap: 2px;
}


.music-equalizer span {

    width: 3px;

    border-radius: 4px;

    background: #ffffff;

    animation:
        musicBars
        0.8s
        infinite
        ease-in-out;
}


.music-equalizer span:nth-child(1) {
    height: 5px;
    animation-delay: 0s;
}


.music-equalizer span:nth-child(2) {
    height: 9px;
    animation-delay: 0.15s;
}


.music-equalizer span:nth-child(3) {
    height: 6px;
    animation-delay: 0.3s;
}


.music-equalizer span:nth-child(4) {
    height: 10px;
    animation-delay: 0.1s;
}


.music-equalizer span:nth-child(5) {
    height: 7px;
    animation-delay: 0.25s;
}


@keyframes musicBars {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1.15);
    }
}


/* =========================================================
   SONG INFO
========================================================= */

.music-song-info {

    min-width: 0;

    flex: 1;
}


.music-now-playing {

    color: #c084fc;

    font-size: 0.4rem;

    font-weight: 800;

    letter-spacing: 0.08em;
}


.music-song-info h4 {

    margin: 3px 0 0;

    overflow: hidden;

    color: #f5f3ff;

    font-size: 0.75rem;

    white-space: nowrap;

    text-overflow: ellipsis;
}


.music-song-info p {

    margin: 2px 0 0;

    color: #958aa5;

    font-size: 0.48rem;
}


/* =========================================================
   REWARD
========================================================= */

.music-reward {

    flex-shrink: 0;

    padding:
        6px
        7px;

    text-align: right;

    border-radius: 8px;

    background:
        rgba(168, 85, 247, 0.08);
}


.music-reward small {

    display: block;

    color: #8e819d;

    font-size: 0.35rem;

    font-weight: 700;
}


.music-reward strong {

    display: block;

    margin-top: 2px;

    color: #d8b4fe;

    font-size: 0.63rem;

    transition:
        transform 0.3s ease;
}


.music-reward strong.paid {

    color: #bef264;

    transform:
        scale(1.08);
}


/* =========================================================
   PROGRESS
========================================================= */

.music-progress-area {

    margin-top: 7px;
}


.music-progress-top {

    display: flex;

    justify-content: space-between;

    margin-bottom: 4px;

    color: #766c83;

    font-size: 0.42rem;
}


.music-progress-top strong {

    color: #c084fc;
}


.music-progress-track {

    height: 4px;

    overflow: hidden;

    border-radius: 10px;

    background:
        rgba(255,255,255,0.07);
}


.music-progress-bar {

    width: 0%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #a855f7,
            #ec4899
        );

    transition:
        width 0.1s linear;

    box-shadow:
        0 0 10px
        rgba(168,85,247,0.4);
}


/* =========================================================
   STATUS
========================================================= */

.music-earned-status {

    min-height: 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    margin-top: 4px;

    color: #81768d;

    font-size: 0.43rem;
}


.music-earned-status.complete {

    color: #bef264;
}


.music-status-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #c084fc;

    animation:
        musicStatusPulse
        1s
        infinite;
}


@keyframes musicStatusPulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }
}


/* =========================================================
   REGISTER
========================================================= */

.music-register-btn {

    width: 100%;

    margin-top: 6px;

    padding:
        8px
        10px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border-radius: 9px;

    color: #e9d5ff;

    background:
        rgba(168,85,247,0.07);

    border:
        1px solid
        rgba(192,132,252,0.25);

    text-decoration: none;

    font-size: 0.54rem;

    font-weight: 800;

    transition:
        all 0.25s ease;
}


.music-register-btn:hover {

    transform:
        translateY(-2px);

    background:
        rgba(168,85,247,0.13);

    border-color:
        rgba(216,180,254,0.55);

    box-shadow:
        0 7px 20px
        rgba(168,85,247,0.1);
}


.music-register-btn strong {

    transition:
        transform 0.2s ease;
}


.music-register-btn:hover strong {

    transform:
        translateX(4px);
}


/* =========================================================
   LIVE LISTENERS
========================================================= */

.music-live-strip {

    padding:
        6px
        10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border-top:
        1px solid
        rgba(255,255,255,0.04);

    border-bottom:
        1px solid
        rgba(255,255,255,0.04);

    color: #695f75;

    font-size: 0.42rem;
}


.music-live-strip strong {

    color: #d8b4fe;

    font-weight: 800;
}


.music-live-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #c084fc;

    box-shadow:
        0 0 8px
        rgba(192,132,252,0.7);

    animation:
        musicLivePulse
        1.2s
        infinite;
}


/* =========================================================
   FOOTER
========================================================= */

.music-footer {

    padding: 6px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    color: #51485b;

    font-size: 0.38rem;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .music-income-card {

        margin-top: 21px;

        border-radius: 17px;
    }


    .music-card-header {

        padding:
            11px
            12px;
    }


    .music-main-icon {

        width: 34px;

        height: 34px;

        border-radius: 10px;

        font-size: 0.9rem;
    }


    .music-heading h3 {

        font-size: 0.88rem;
    }


    .music-heading p {

        font-size: 0.48rem;
    }


    .music-eyebrow {

        font-size: 0.38rem;
    }


    .music-live-badge,
    .music-mini-badge {

        padding:
            3px
            5px;

        font-size: 0.34rem;
    }


    .music-content {

        padding:
            8px
            9px
            7px;
    }


    .music-player {

        padding: 7px;

        gap: 8px;

        border-radius: 11px;
    }


    .music-album-art {

        width: 50px;

        height: 50px;

        border-radius: 10px;
    }


    .music-note {

        font-size: 1.2rem;
    }


    .music-song-info h4 {

        font-size: 0.68rem;
    }


    .music-song-info p {

        font-size: 0.44rem;
    }


    .music-reward {

        padding:
            5px
            6px;
    }


    .music-reward strong {

        font-size: 0.58rem;
    }


    .music-register-btn {

        padding:
            7px
            9px;

        font-size: 0.49rem;
    }


    .music-live-strip {

        font-size: 0.39rem;
    }


    .music-footer {

        gap: 8px;

        font-size: 0.34rem;
    }

}

/* =========================================================
   AIBON — INCOME STREAM 08
   WHEEL SPIN & WIN
========================================================= */

.spin-income-card {

    width: 100%;

    max-width: 900px;

    margin: 24px auto 0;

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #111827,
            #172033,
            #241507
        );

    border:
        1px solid
        rgba(251, 191, 36, 0.28);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.32),

        0 0 35px
        rgba(245, 158, 11, 0.06);
}


/* =========================================================
   HEADER
========================================================= */

.spin-card-header {

    padding:
        13px
        16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    background:
        linear-gradient(
            110deg,
            #121a29,
            #1a2334,
            #241608
        );

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);
}


.spin-title-area {

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 0;
}


.spin-main-icon {

    width: 37px;

    height: 37px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #f97316
        );

    box-shadow:
        0 7px 20px
        rgba(245, 158, 11, 0.22);

    font-size: 1rem;
}


.spin-heading {

    min-width: 0;
}


.spin-eyebrow {

    display: block;

    color: #fcd34d;

    font-size: 0.42rem;

    font-weight: 800;

    letter-spacing: 0.1em;
}


.spin-heading h3 {

    margin: 2px 0 0;

    color: #ffffff;

    font-size: 0.96rem;

    line-height: 1.15;
}


.spin-heading p {

    margin: 3px 0 0;

    color: #9ca3af;

    font-size: 0.53rem;
}


/* =========================================================
   BADGES
========================================================= */

.spin-badges {

    display: flex;

    gap: 4px;

    flex-shrink: 0;
}


.spin-live-badge,
.spin-mini-badge {

    padding:
        4px
        7px;

    border-radius: 15px;

    font-size: 0.38rem;

    font-weight: 800;

    white-space: nowrap;
}


.spin-live-badge {

    display: flex;

    align-items: center;

    gap: 4px;

    color: #fde68a;

    background:
        rgba(245, 158, 11, 0.08);

    border:
        1px solid
        rgba(251, 191, 36, 0.25);
}


.spin-live-badge i {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #fbbf24;

    animation:
        spinLivePulse
        1.2s
        infinite;
}


.spin-mini-badge {

    color: #fed7aa;

    background:
        rgba(249, 115, 22, 0.07);

    border:
        1px solid
        rgba(249, 115, 22, 0.2);
}


@keyframes spinLivePulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;

        box-shadow:
            0 0 10px
            rgba(251, 191, 36, 0.8);
    }
}


/* =========================================================
   CONTENT
========================================================= */

.spin-content {

    padding:
        10px
        13px
        9px;
}


/* =========================================================
   GAME AREA
========================================================= */

.spin-game-area {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    padding:
        5px
        0;
}


/* =========================================================
   WHEEL
========================================================= */

.spin-wheel-wrap {

    width: 130px;

    height: 130px;

    flex-shrink: 0;

    position: relative;

    display: grid;

    place-items: center;
}


.spin-wheel {

    width: 116px;

    height: 116px;

    position: relative;

    border-radius: 50%;

    border:
        4px solid
        #fbbf24;

    background:
        conic-gradient(
            #f59e0b 0deg 60deg,
            #1e293b 60deg 120deg,
            #f97316 120deg 180deg,
            #334155 180deg 240deg,
            #fbbf24 240deg 300deg,
            #172033 300deg 360deg
        );

    box-shadow:
        0 0 0 4px
        rgba(251, 191, 36, 0.08),

        0 10px 30px
        rgba(245, 158, 11, 0.18);

    transition:
        transform 4s
        cubic-bezier(
            0.12,
            0.65,
            0.15,
            1
        );
}


.spin-wheel::before {

    content: "";

    position: absolute;

    inset: 7px;

    border:
        1px solid
        rgba(255, 255, 255, 0.25);

    border-radius: 50%;
}


.spin-pointer {

    position: absolute;

    top: -4px;

    left: 50%;

    z-index: 5;

    transform:
        translateX(-50%);

    color: #fbbf24;

    font-size: 18px;

    line-height: 1;

    filter:
        drop-shadow(
            0 2px 4px
            rgba(0,0,0,0.5)
        );
}


/* =========================================================
   WHEEL LABELS
========================================================= */

.spin-segment-label {

    position: absolute;

    z-index: 2;

    color: #ffffff;

    font-size: 0.48rem;

    font-weight: 900;

    text-shadow:
        0 1px 3px
        rgba(0,0,0,0.7);
}


.spin-label-1 {
    top: 13px;
    left: 49px;
}


.spin-label-2 {
    top: 40px;
    right: 12px;
}


.spin-label-3 {
    bottom: 16px;
    right: 22px;
}


.spin-label-4 {
    bottom: 10px;
    left: 48px;
}


.spin-label-5 {
    bottom: 38px;
    left: 11px;
}


.spin-label-6 {
    top: 40px;
    left: 12px;
}


/* =========================================================
   CENTER
========================================================= */

.spin-wheel-center {

    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 4;

    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    transform:
        translate(-50%, -50%);

    border:
        3px solid
        #fcd34d;

    border-radius: 50%;

    color: #fff7ed;

    background:
        linear-gradient(
            135deg,
            #b45309,
            #ea580c
        );

    box-shadow:
        0 4px 12px
        rgba(0,0,0,0.35);

    font-size: 0.4rem;

    font-weight: 900;
}


/* =========================================================
   RESULT
========================================================= */

.spin-result-area {

    min-width: 150px;

    text-align: center;
}


.spin-result-label {

    display: block;

    color: #fbbf24;

    font-size: 0.42rem;

    font-weight: 800;

    letter-spacing: 0.08em;
}


.spin-result-area strong {

    display: block;

    margin-top: 4px;

    color: #ffffff;

    font-size: 0.82rem;

    transition:
        transform 0.3s ease;
}


.spin-result-area strong.won {

    color: #bef264;

    transform:
        scale(1.08);
}


.spin-result-area small {

    display: block;

    margin-top: 3px;

    color: #8b95a5;

    font-size: 0.44rem;
}


/* =========================================================
   REWARD ROW
========================================================= */

.spin-reward-row {

    margin-top: 7px;

    padding:
        6px
        9px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-radius: 9px;

    background:
        rgba(245, 158, 11, 0.05);

    border:
        1px solid
        rgba(251, 191, 36, 0.1);
}


.spin-reward-row small {

    display: block;

    color: #78808c;

    font-size: 0.36rem;

    font-weight: 700;
}


.spin-reward-row strong {

    display: block;

    margin-top: 2px;

    color: #fcd34d;

    font-size: 0.67rem;

    transition:
        transform 0.3s ease;
}


.spin-reward-row strong.won {

    color: #bef264;

    transform:
        scale(1.08);
}


.spin-status {

    display: flex;

    align-items: center;

    gap: 4px;

    color: #7b8491;

    font-size: 0.42rem;

    font-weight: 800;
}


.spin-status span:first-child {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #fbbf24;

    animation:
        spinStatusPulse
        1s
        infinite;
}


.spin-status.complete {

    color: #bef264;
}


.spin-status.complete span:first-child {

    background: #84cc16;

    box-shadow:
        0 0 8px
        rgba(132,204,22,0.7);
}


@keyframes spinStatusPulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }
}


/* =========================================================
   REGISTER
========================================================= */

.spin-register-btn {

    width: 100%;

    margin-top: 6px;

    padding:
        8px
        10px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border-radius: 9px;

    color: #fde68a;

    background:
        rgba(245, 158, 11, 0.07);

    border:
        1px solid
        rgba(251, 191, 36, 0.25);

    text-decoration: none;

    font-size: 0.54rem;

    font-weight: 800;

    transition:
        all 0.25s ease;
}


.spin-register-btn:hover {

    transform:
        translateY(-2px);

    background:
        rgba(245, 158, 11, 0.13);

    border-color:
        rgba(252, 211, 77, 0.55);

    box-shadow:
        0 7px 20px
        rgba(245, 158, 11, 0.1);
}


.spin-register-btn strong {

    transition:
        transform 0.2s ease;
}


.spin-register-btn:hover strong {

    transform:
        translateX(4px);
}


/* =========================================================
   LIVE STRIP
========================================================= */

.spin-live-strip {

    padding:
        6px
        10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border-top:
        1px solid
        rgba(255,255,255,0.04);

    border-bottom:
        1px solid
        rgba(255,255,255,0.04);

    color: #697281;

    font-size: 0.42rem;
}


.spin-live-strip strong {

    color: #fcd34d;

    font-weight: 800;
}


.spin-live-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #fbbf24;

    box-shadow:
        0 0 8px
        rgba(251,191,36,0.7);

    animation:
        spinLivePulse
        1.2s
        infinite;
}


/* =========================================================
   FOOTER
========================================================= */

.spin-footer {

    padding: 6px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    color: #575f6d;

    font-size: 0.38rem;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .spin-income-card {

        margin-top: 21px;

        border-radius: 17px;
    }


    .spin-card-header {

        padding:
            11px
            12px;
    }


    .spin-main-icon {

        width: 34px;

        height: 34px;

        border-radius: 10px;

        font-size: 0.9rem;
    }


    .spin-heading h3 {

        font-size: 0.88rem;
    }


    .spin-heading p {

        font-size: 0.48rem;
    }


    .spin-eyebrow {

        font-size: 0.38rem;
    }


    .spin-live-badge,
    .spin-mini-badge {

        padding:
            3px
            5px;

        font-size: 0.34rem;
    }


    .spin-content {

        padding:
            8px
            9px
            7px;
    }


    .spin-game-area {

        gap: 12px;
    }


    .spin-wheel-wrap {

        width: 105px;

        height: 105px;
    }


    .spin-wheel {

        width: 94px;

        height: 94px;
    }


    .spin-pointer {

        font-size: 15px;
    }


    .spin-wheel-center {

        width: 31px;

        height: 31px;

        font-size: 0.34rem;
    }


    .spin-segment-label {

        font-size: 0.4rem;
    }


    .spin-label-1 {
        top: 11px;
        left: 39px;
    }


    .spin-label-2 {
        top: 32px;
        right: 8px;
    }


    .spin-label-3 {
        bottom: 13px;
        right: 16px;
    }


    .spin-label-4 {
        bottom: 8px;
        left: 38px;
    }


    .spin-label-5 {
        bottom: 30px;
        left: 8px;
    }


    .spin-label-6 {
        top: 32px;
        left: 8px;
    }


    .spin-result-area {

        min-width: 110px;
    }


    .spin-result-area strong {

        font-size: 0.7rem;
    }


    .spin-register-btn {

        padding:
            7px
            9px;

        font-size: 0.49rem;
    }


    .spin-live-strip {

        font-size: 0.39rem;
    }


    .spin-footer {

        gap: 8px;

        font-size: 0.34rem;
    }

}

/* =========================================================
   AIBON — INCOME STREAM 09
   DAILY LOGIN BONUS
========================================================= */

.login-bonus-income-card {

    width: 100%;

    max-width: 900px;

    margin: 24px auto 0;

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #071a16,
            #0d211b,
            #18200c
        );

    border:
        1px solid
        rgba(163, 230, 53, 0.24);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.32),

        0 0 35px
        rgba(132, 204, 22, 0.05);
}


/* =========================================================
   HEADER
========================================================= */

.login-bonus-header {

    padding:
        13px
        16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    background:
        linear-gradient(
            110deg,
            #071b17,
            #0e251d,
            #18200d
        );

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);
}


.login-bonus-title {

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 0;
}


.login-bonus-icon {

    width: 37px;

    height: 37px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #84cc16,
            #eab308
        );

    box-shadow:
        0 7px 20px
        rgba(132, 204, 22, 0.2);

    font-size: 1rem;
}


.login-bonus-eyebrow {

    display: block;

    color: #bef264;

    font-size: 0.42rem;

    font-weight: 800;

    letter-spacing: 0.1em;
}


.login-bonus-title h3 {

    margin: 2px 0 0;

    color: #ffffff;

    font-size: 0.96rem;

    line-height: 1.15;
}


.login-bonus-title p {

    margin: 3px 0 0;

    color: #82918a;

    font-size: 0.53rem;
}


/* =========================================================
   BADGES
========================================================= */

.login-bonus-badges {

    display: flex;

    gap: 4px;

    flex-shrink: 0;
}


.login-bonus-live,
.login-bonus-streak-badge {

    padding:
        4px
        7px;

    border-radius: 15px;

    font-size: 0.38rem;

    font-weight: 800;

    white-space: nowrap;
}


.login-bonus-live {

    display: flex;

    align-items: center;

    gap: 4px;

    color: #d9f99d;

    background:
        rgba(132, 204, 22, 0.08);

    border:
        1px solid
        rgba(163, 230, 53, 0.25);
}


.login-bonus-live i {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #a3e635;

    animation:
        loginLivePulse
        1.2s
        infinite;
}


.login-bonus-streak-badge {

    color: #fde68a;

    background:
        rgba(234, 179, 8, 0.07);

    border:
        1px solid
        rgba(234, 179, 8, 0.2);
}


@keyframes loginLivePulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;

        box-shadow:
            0 0 10px
            rgba(163, 230, 53, 0.8);
    }
}


/* =========================================================
   CONTENT
========================================================= */

.login-bonus-content {

    padding:
        10px
        13px
        9px;
}


/* =========================================================
   STREAK TOP
========================================================= */

.login-bonus-streak-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        7px
        9px;

    border-radius: 10px;

    background:
        rgba(132, 204, 22, 0.055);

    border:
        1px solid
        rgba(163, 230, 53, 0.1);
}


.login-bonus-streak-top small {

    display: block;

    color: #718079;

    font-size: 0.37rem;

    font-weight: 700;
}


.login-bonus-streak-top strong {

    display: block;

    margin-top: 2px;

    color: #bef264;

    font-size: 0.7rem;
}


.login-bonus-today {

    text-align: right;
}


.login-bonus-today span {

    display: block;

    color: #718079;

    font-size: 0.37rem;

    font-weight: 700;
}


.login-bonus-today strong {

    display: block;

    margin-top: 2px;

    color: #fde68a;

    font-size: 0.7rem;

    transition:
        transform 0.3s ease;
}


.login-bonus-today strong.paid {

    color: #bef264;

    transform:
        scale(1.08);
}


/* =========================================================
   SEVEN DAYS
========================================================= */

.login-bonus-days {

    margin-top: 8px;

    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap: 5px;
}


.login-day {

    min-width: 0;

    padding:
        5px
        2px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 3px;

    border-radius: 8px;

    color: #65736d;

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid
        rgba(255, 255, 255, 0.05);

    font-size: 0.38rem;

    transition:
        all 0.3s ease;
}


.login-day strong {

    width: 20px;

    height: 20px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #63716a;

    background:
        rgba(255,255,255,0.04);

    font-size: 0.5rem;
}


.login-day.completed {

    color: #a3b59d;

    border-color:
        rgba(132,204,22,0.12);
}


.login-day.completed strong {

    color: #ffffff;

    background:
        #65a30d;
}


.login-day.active {

    color: #fef08a;

    background:
        linear-gradient(
            145deg,
            rgba(132,204,22,0.14),
            rgba(234,179,8,0.08)
        );

    border-color:
        rgba(190,242,100,0.4);

    box-shadow:
        0 0 18px
        rgba(132,204,22,0.08);
}


.login-day.active strong {

    color: #422006;

    background:
        #fde047;

    animation:
        loginGiftPulse
        1.2s
        infinite;
}


.login-day.claimed {

    color: #bef264;

    border-color:
        rgba(163,230,53,0.35);
}


.login-day.claimed strong {

    color: #ffffff;

    background:
        #16a34a;
}


@keyframes loginGiftPulse {

    0%,
    100% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1.12);

        box-shadow:
            0 0 12px
            rgba(253,224,71,0.5);
    }
}


/* =========================================================
   STATUS
========================================================= */

.login-bonus-status {

    min-height: 18px;

    margin-top: 5px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    color: #77857f;

    font-size: 0.43rem;

    transition:
        color 0.3s ease;
}


.login-bonus-status.claimed {

    color: #bef264;
}


.login-status-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #a3e635;

    animation:
        loginStatusPulse
        1s
        infinite;
}


.login-bonus-status.claimed
.login-status-dot {

    background: #84cc16;

    box-shadow:
        0 0 8px
        rgba(132,204,22,0.7);
}


@keyframes loginStatusPulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }
}


/* =========================================================
   CLAIM BUTTON
========================================================= */

.login-bonus-claim {

    width: 100%;

    margin-top: 4px;

    padding:
        8px
        10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border: none;

    border-radius: 9px;

    color: #17220b;

    background:
        linear-gradient(
            100deg,
            #a3e635,
            #facc15
        );

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.55rem;

    font-weight: 900;

    transition:
        all 0.25s ease;
}


.login-bonus-claim:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(163,230,53,0.15);
}


.login-bonus-claim.claimed {

    color: #ecfccb;

    background:
        linear-gradient(
            100deg,
            #4d7c0f,
            #15803d
        );

    cursor: default;
}


/* =========================================================
   REGISTER
========================================================= */

.login-bonus-register {

    width: 100%;

    margin-top: 6px;

    padding:
        7px
        10px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border-radius: 9px;

    color: #d9f99d;

    background:
        rgba(132,204,22,0.06);

    border:
        1px solid
        rgba(163,230,53,0.22);

    text-decoration: none;

    font-size: 0.51rem;

    font-weight: 800;

    transition:
        all 0.25s ease;
}


.login-bonus-register:hover {

    transform:
        translateY(-2px);

    background:
        rgba(132,204,22,0.12);

    border-color:
        rgba(190,242,100,0.5);

    box-shadow:
        0 7px 20px
        rgba(132,204,22,0.08);
}


.login-bonus-register strong {

    transition:
        transform 0.2s ease;
}


.login-bonus-register:hover strong {

    transform:
        translateX(4px);
}


/* =========================================================
   LIVE STRIP
========================================================= */

.login-bonus-live-strip {

    padding:
        6px
        10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border-top:
        1px solid
        rgba(255,255,255,0.04);

    border-bottom:
        1px solid
        rgba(255,255,255,0.04);

    color: #64716c;

    font-size: 0.42rem;
}


.login-bonus-live-strip strong {

    color: #bef264;

    font-weight: 800;
}


.login-bonus-live-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #a3e635;

    box-shadow:
        0 0 8px
        rgba(163,230,53,0.7);

    animation:
        loginLivePulse
        1.2s
        infinite;
}


/* =========================================================
   FOOTER
========================================================= */

.login-bonus-footer {

    padding: 6px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    color: #526059;

    font-size: 0.38rem;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .login-bonus-income-card {

        margin-top: 21px;

        border-radius: 17px;
    }


    .login-bonus-header {

        padding:
            11px
            12px;
    }


    .login-bonus-icon {

        width: 34px;

        height: 34px;

        border-radius: 10px;

        font-size: 0.9rem;
    }


    .login-bonus-title h3 {

        font-size: 0.88rem;
    }


    .login-bonus-title p {

        font-size: 0.48rem;
    }


    .login-bonus-eyebrow {

        font-size: 0.38rem;
    }


    .login-bonus-live,
    .login-bonus-streak-badge {

        padding:
            3px
            5px;

        font-size: 0.34rem;
    }


    .login-bonus-content {

        padding:
            8px
            9px
            7px;
    }


    .login-bonus-days {

        gap: 3px;
    }


    .login-day {

        padding:
            4px
            1px;

        font-size: 0.34rem;
    }


    .login-day strong {

        width: 18px;

        height: 18px;

        font-size: 0.45rem;
    }


    .login-bonus-claim {

        padding:
            7px
            9px;

        font-size: 0.5rem;
    }


    .login-bonus-register {

        padding:
            6px
            9px;

        font-size: 0.47rem;
    }


    .login-bonus-live-strip {

        font-size: 0.39rem;
    }


    .login-bonus-footer {

        gap: 8px;

        font-size: 0.34rem;
    }

}

/* =========================================================
   AIBON — INCOME STREAM 10
   AFFILIATE PROGRAM
========================================================= */

.affiliate-income-card {

    width: 100%;

    max-width: 900px;

    margin: 24px auto 0;

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #071525,
            #0b1e32,
            #07131f
        );

    border:
        1px solid
        rgba(56, 189, 248, 0.25);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.32),

        0 0 35px
        rgba(14, 165, 233, 0.06);
}


/* =========================================================
   HEADER
========================================================= */

.affiliate-header {

    padding:
        13px
        16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    background:
        linear-gradient(
            110deg,
            #081a2b,
            #0c253a,
            #07151f
        );

    border-bottom:
        1px solid
        rgba(255,255,255,0.05);
}


.affiliate-title {

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 0;
}


.affiliate-icon {

    width: 37px;

    height: 37px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0284c7,
            #06b6d4
        );

    box-shadow:
        0 7px 20px
        rgba(14,165,233,0.2);

    font-size: 1rem;
}


.affiliate-eyebrow {

    display: block;

    color: #7dd3fc;

    font-size: 0.42rem;

    font-weight: 800;

    letter-spacing: 0.1em;
}


.affiliate-title h3 {

    margin: 2px 0 0;

    color: #ffffff;

    font-size: 0.96rem;

    line-height: 1.15;
}


.affiliate-title p {

    margin: 3px 0 0;

    color: #7f8e9b;

    font-size: 0.53rem;
}


/* =========================================================
   BADGES
========================================================= */

.affiliate-badges {

    display: flex;

    gap: 4px;

    flex-shrink: 0;
}


.affiliate-live,
.affiliate-badge {

    padding:
        4px
        7px;

    border-radius: 15px;

    font-size: 0.38rem;

    font-weight: 800;

    white-space: nowrap;
}


.affiliate-live {

    display: flex;

    align-items: center;

    gap: 4px;

    color: #bae6fd;

    background:
        rgba(14,165,233,0.08);

    border:
        1px solid
        rgba(56,189,248,0.25);
}


.affiliate-live i {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #38bdf8;

    animation:
        affiliateLivePulse
        1.2s
        infinite;
}


.affiliate-badge {

    color: #a5f3fc;

    background:
        rgba(6,182,212,0.07);

    border:
        1px solid
        rgba(34,211,238,0.2);
}


@keyframes affiliateLivePulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;

        box-shadow:
            0 0 10px
            rgba(56,189,248,0.8);
    }
}


/* =========================================================
   CONTENT
========================================================= */

.affiliate-content {

    padding:
        10px
        13px
        9px;
}


/* =========================================================
   MAIN EARNING
========================================================= */

.affiliate-main-earning {

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        8px
        9px;

    border-radius: 11px;

    background:
        linear-gradient(
            100deg,
            rgba(14,165,233,0.09),
            rgba(6,182,212,0.045)
        );

    border:
        1px solid
        rgba(56,189,248,0.12);
}


.affiliate-earning-icon {

    width: 34px;

    height: 34px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 9px;

    color: #e0f2fe;

    background:
        rgba(14,165,233,0.14);

    font-size: 1rem;

    font-weight: 900;
}


.affiliate-earning-info {

    min-width: 0;

    flex: 1;
}


.affiliate-earning-info small {

    display: block;

    color: #718191;

    font-size: 0.36rem;

    font-weight: 700;
}


.affiliate-earning-info strong {

    display: block;

    margin-top: 2px;

    color: #7dd3fc;

    font-size: 0.82rem;

    transition:
        transform 0.3s ease;
}


.affiliate-earning-info strong.updated {

    color: #67e8f9;

    transform:
        scale(1.07);
}


.affiliate-growth {

    text-align: right;
}


.affiliate-growth span {

    display: block;

    color: #4ade80;

    font-size: 0.55rem;

    font-weight: 900;
}


.affiliate-growth small {

    display: block;

    margin-top: 2px;

    color: #657381;

    font-size: 0.34rem;
}


/* =========================================================
   REFERRAL ACTIVITY
========================================================= */

.affiliate-activity {

    margin-top: 7px;

    padding:
        7px
        9px;

    border-radius: 10px;

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid
        rgba(255,255,255,0.05);
}


.affiliate-activity-title {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 6px;
}


.affiliate-activity-title span {

    color: #687785;

    font-size: 0.38rem;

    font-weight: 700;
}


.affiliate-activity-title strong {

    color: #7dd3fc;

    font-size: 0.55rem;
}


.affiliate-referral-row {

    display: flex;

    align-items: center;

    gap: 7px;

    transition:
        opacity 0.25s ease;
}


.affiliate-avatar {

    width: 26px;

    height: 26px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0284c7,
            #06b6d4
        );

    font-size: 0.5rem;

    font-weight: 900;
}


.affiliate-user {

    min-width: 0;

    flex: 1;
}


.affiliate-user strong {

    display: block;

    color: #c9d7e2;

    font-size: 0.51rem;
}


.affiliate-user small {

    display: block;

    margin-top: 2px;

    color: #657482;

    font-size: 0.38rem;
}


.affiliate-earned {

    color: #67e8f9;

    font-size: 0.55rem;

    font-weight: 900;

    transition:
        transform 0.3s ease;
}


.affiliate-earned.new {

    transform:
        scale(1.1);

    color: #4ade80;
}


/* =========================================================
   LEVELS
========================================================= */

.affiliate-levels {

    margin-top: 7px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 5px;
}


.affiliate-level {

    padding:
        5px
        4px;

    text-align: center;

    border-radius: 8px;

    background:
        rgba(14,165,233,0.04);

    border:
        1px solid
        rgba(56,189,248,0.08);
}


.affiliate-level span {

    display: block;

    color: #647382;

    font-size: 0.34rem;
}


.affiliate-level strong {

    display: block;

    margin-top: 2px;

    color: #7dd3fc;

    font-size: 0.47rem;
}


/* =========================================================
   REGISTER
========================================================= */

.affiliate-register {

    width: 100%;

    margin-top: 7px;

    padding:
        8px
        10px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border-radius: 9px;

    color: #bae6fd;

    background:
        rgba(14,165,233,0.07);

    border:
        1px solid
        rgba(56,189,248,0.25);

    text-decoration: none;

    font-size: 0.54rem;

    font-weight: 800;

    transition:
        all 0.25s ease;
}


.affiliate-register:hover {

    transform:
        translateY(-2px);

    background:
        rgba(14,165,233,0.13);

    border-color:
        rgba(125,211,252,0.55);

    box-shadow:
        0 7px 20px
        rgba(14,165,233,0.1);
}


.affiliate-register strong {

    transition:
        transform 0.2s ease;
}


.affiliate-register:hover strong {

    transform:
        translateX(4px);
}


/* =========================================================
   LIVE STRIP
========================================================= */

.affiliate-live-strip {

    padding:
        6px
        10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border-top:
        1px solid
        rgba(255,255,255,0.04);

    border-bottom:
        1px solid
        rgba(255,255,255,0.04);

    color: #657381;

    font-size: 0.42rem;
}


.affiliate-live-strip strong {

    color: #7dd3fc;

    font-weight: 800;
}


.affiliate-live-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #38bdf8;

    box-shadow:
        0 0 8px
        rgba(56,189,248,0.7);

    animation:
        affiliateLivePulse
        1.2s
        infinite;
}


/* =========================================================
   FOOTER
========================================================= */

.affiliate-footer {

    padding: 6px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    color: #505e6a;

    font-size: 0.38rem;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .affiliate-income-card {

        margin-top: 21px;

        border-radius: 17px;
    }


    .affiliate-header {

        padding:
            11px
            12px;
    }


    .affiliate-icon {

        width: 34px;

        height: 34px;

        border-radius: 10px;

        font-size: 0.9rem;
    }


    .affiliate-title h3 {

        font-size: 0.88rem;
    }


    .affiliate-title p {

        font-size: 0.48rem;
    }


    .affiliate-eyebrow {

        font-size: 0.38rem;
    }


    .affiliate-live,
    .affiliate-badge {

        padding:
            3px
            5px;

        font-size: 0.34rem;
    }


    .affiliate-content {

        padding:
            8px
            9px
            7px;
    }


    .affiliate-main-earning {

        padding:
            7px
            8px;
    }


    .affiliate-earning-icon {

        width: 31px;

        height: 31px;
    }


    .affiliate-earning-info strong {

        font-size: 0.72rem;
    }


    .affiliate-levels {

        gap: 3px;
    }


    .affiliate-level {

        padding:
            5px
            2px;
    }


    .affiliate-level span {

        font-size: 0.31rem;
    }


    .affiliate-level strong {

        font-size: 0.42rem;
    }


    .affiliate-register {

        padding:
            7px
            9px;

        font-size: 0.49rem;
    }


    .affiliate-live-strip {

        font-size: 0.39rem;
    }


    .affiliate-footer {

        gap: 8px;

        font-size: 0.34rem;
    }

}

/* =========================================================
   AIBON — TESTIMONIALS / COMMUNITY FEEDBACK
========================================================= */

.aibon-testimonials-section {

    width: 100%;

    max-width: 1100px;

    margin: 55px auto 0;

    padding:
        0 15px 45px;

    box-sizing: border-box;
}


/* =========================================================
   INTRO
========================================================= */

.testimonials-intro {

    text-align: center;

    max-width: 650px;

    margin:
        0 auto 20px;
}


.testimonials-eyebrow {

    display: inline-block;

    color: #a78bfa;

    font-size: 0.52rem;

    font-weight: 800;

    letter-spacing: 0.12em;

    margin-bottom: 5px;
}


.testimonials-intro h2 {

    margin: 0;

    color: #ffffff;

    font-size: 1.55rem;

    line-height: 1.15;
}


.testimonials-intro p {

    margin:
        7px auto 0;

    max-width: 560px;

    color: #8b95a5;

    font-size: 0.65rem;

    line-height: 1.5;
}


/* =========================================================
   CAROUSEL
========================================================= */

.testimonials-carousel {

    width: 100%;

    overflow: hidden;

    position: relative;
}


.testimonials-track {

    display: flex;

    gap: 12px;

    width: max-content;

    transition:
        transform 0.65s
        cubic-bezier(
            0.22,
            0.61,
            0.36,
            1
        );
}


/* =========================================================
   CARD
========================================================= */

.testimonial-card {

    width: 285px;

    min-height: 126px;

    flex-shrink: 0;

    padding:
        12px;

    box-sizing: border-box;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.025)
        );

    border:
        1px solid
        rgba(255,255,255,0.08);

    box-shadow:
        0 12px 30px
        rgba(0,0,0,0.18);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}


.testimonial-card:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(167,139,250,0.35);
}


/* =========================================================
   TOP
========================================================= */

.testimonial-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;
}


.testimonial-person {

    display: flex;

    align-items: center;

    gap: 7px;
}


.testimonial-avatar {

    width: 34px;

    height: 34px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 0.52rem;

    font-weight: 900;

    box-shadow:
        0 5px 15px
        rgba(0,0,0,0.18);
}


.avatar-purple {
    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #c084fc
        );
}


.avatar-blue {
    background:
        linear-gradient(
            135deg,
            #2563eb,
            #38bdf8
        );
}


.avatar-green {
    background:
        linear-gradient(
            135deg,
            #059669,
            #34d399
        );
}


.avatar-orange {
    background:
        linear-gradient(
            135deg,
            #ea580c,
            #fb923c
        );
}


.avatar-pink {
    background:
        linear-gradient(
            135deg,
            #db2777,
            #f472b6
        );
}


.avatar-cyan {
    background:
        linear-gradient(
            135deg,
            #0891b2,
            #22d3ee
        );
}


.testimonial-person strong {

    display: block;

    color: #f3f4f6;

    font-size: 0.59rem;
}


.testimonial-person small {

    display: block;

    margin-top: 2px;

    color: #7f8a98;

    font-size: 0.43rem;
}


/* =========================================================
   STARS
========================================================= */

.testimonial-stars {

    color: #fbbf24;

    font-size: 0.54rem;

    letter-spacing: 0.03em;

    white-space: nowrap;
}


/* =========================================================
   TEXT
========================================================= */

.testimonial-text {

    margin:
        10px 0 7px;

    color: #c5cbd3;

    font-size: 0.56rem;

    line-height: 1.45;
}


.testimonial-label {

    display: inline-block;

    padding:
        3px 6px;

    border-radius: 10px;

    color: #a78bfa;

    background:
        rgba(139,92,246,0.07);

    border:
        1px solid
        rgba(139,92,246,0.14);

    font-size: 0.35rem;

    font-weight: 700;
}


/* =========================================================
   DOTS
========================================================= */

.testimonials-dots {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    margin-top: 13px;
}


.testimonial-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.2);

    transition:
        all 0.3s ease;
}


.testimonial-dot.active {

    width: 17px;

    border-radius: 10px;

    background:
        #a78bfa;
}


/* =========================================================
   CTA
========================================================= */

.testimonials-cta {

    margin:
        20px auto 0;

    padding:
        12px 15px;

    max-width: 620px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    flex-wrap: wrap;

    border-radius: 13px;

    background:
        rgba(139,92,246,0.05);

    border:
        1px solid
        rgba(139,92,246,0.12);

    text-align: center;
}


.testimonials-cta strong {

    color: #ddd6fe;

    font-size: 0.57rem;
}


.testimonials-cta span {

    color: #778292;

    font-size: 0.47rem;
}


.testimonials-cta a {

    padding:
        6px 9px;

    border-radius: 7px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7
        );

    text-decoration: none;

    font-size: 0.45rem;

    font-weight: 800;

    transition:
        transform 0.2s ease;
}


.testimonials-cta a:hover {

    transform:
        translateY(-2px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .aibon-testimonials-section {

        margin-top: 38px;

        padding:
            0 10px 35px;
    }


    .testimonials-intro {

        margin-bottom: 15px;
    }


    .testimonials-intro h2 {

        font-size: 1.2rem;
    }


    .testimonials-intro p {

        font-size: 0.54rem;

        max-width: 330px;
    }


    .testimonial-card {

        width: 260px;

        min-height: 119px;

        padding: 10px;

        border-radius: 13px;
    }


    .testimonial-avatar {

        width: 31px;

        height: 31px;
    }


    .testimonial-text {

        font-size: 0.52rem;

        margin-top: 8px;
    }


    .testimonial-stars {

        font-size: 0.48rem;
    }


    .testimonials-cta {

        margin-top: 16px;

        gap: 6px;
    }

}

/* =========================================================
   AIBON — FREQUENTLY ASKED QUESTIONS
========================================================= */

.aibon-faq-section {

    width: 100%;

    max-width: 850px;

    margin: 50px auto 0;

    padding:
        0 15px 45px;

    box-sizing: border-box;
}


/* =========================================================
   INTRO
========================================================= */

.faq-intro {

    max-width: 620px;

    margin:
        0 auto 18px;

    text-align: center;
}


.faq-eyebrow {

    display: inline-block;

    margin-bottom: 5px;

    color: #60a5fa;

    font-size: 0.5rem;

    font-weight: 800;

    letter-spacing: 0.12em;
}


.faq-intro h2 {

    margin: 0;

    color: #ffffff;

    font-size: 1.5rem;

    line-height: 1.15;
}


.faq-intro p {

    margin:
        7px auto 0;

    max-width: 520px;

    color: #87919f;

    font-size: 0.63rem;

    line-height: 1.5;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {

    display: flex;

    flex-direction: column;

    gap: 6px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item {

    overflow: hidden;

    border-radius: 11px;

    background:
        rgba(255,255,255,0.035);

    border:
        1px solid
        rgba(255,255,255,0.065);

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}


.faq-item.open {

    background:
        rgba(255,255,255,0.045);

    border-color:
        rgba(96,165,250,0.2);
}


/* =========================================================
   QUESTION
========================================================= */

.faq-question {

    width: 100%;

    padding:
        10px 12px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    border: none;

    outline: none;

    cursor: pointer;

    color: #e8edf3;

    background: transparent;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.6rem;

    font-weight: 700;

    text-align: left;
}


.faq-question-left {

    display: flex;

    align-items: center;

    gap: 8px;

    min-width: 0;
}


/* =========================================================
   FAQ ICON
========================================================= */

.faq-icon {

    width: 25px;

    height: 25px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 8px;

    color: #ffffff;

    font-size: 0.57rem;

    font-weight: 900;
}


.faq-purple {

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7
        );
}


.faq-blue {

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #38bdf8
        );
}


.faq-green {

    background:
        linear-gradient(
            135deg,
            #059669,
            #34d399
        );
}


.faq-orange {

    background:
        linear-gradient(
            135deg,
            #ea580c,
            #fb923c
        );
}


.faq-cyan {

    background:
        linear-gradient(
            135deg,
            #0891b2,
            #22d3ee
        );
}


.faq-pink {

    background:
        linear-gradient(
            135deg,
            #db2777,
            #f472b6
        );
}


.faq-yellow {

    background:
        linear-gradient(
            135deg,
            #ca8a04,
            #facc15
        );
}


.faq-indigo {

    background:
        linear-gradient(
            135deg,
            #4f46e5,
            #818cf8
        );
}


/* =========================================================
   ARROW
========================================================= */

.faq-arrow {

    width: 21px;

    height: 21px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #94a3b8;

    background:
        rgba(255,255,255,0.05);

    font-size: 0.72rem;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.faq-item.open .faq-arrow {

    transform:
        rotate(45deg);

    color: #ffffff;

    background:
        rgba(96,165,250,0.15);
}


/* =========================================================
   ANSWER
========================================================= */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease;
}


.faq-answer p {

    margin: 0;

    padding:
        0 43px 11px;

    color: #87919f;

    font-size: 0.53rem;

    line-height: 1.55;
}


.faq-item.open .faq-answer {

    max-height: 180px;

    opacity: 1;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.faq-bottom {

    margin:
        16px auto 0;

    padding:
        11px 13px;

    max-width: 620px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    border-radius: 12px;

    background:
        rgba(96,165,250,0.045);

    border:
        1px solid
        rgba(96,165,250,0.12);
}


.faq-bottom div {

    min-width: 0;
}


.faq-bottom strong {

    display: block;

    color: #dbeafe;

    font-size: 0.55rem;
}


.faq-bottom span {

    display: block;

    margin-top: 2px;

    color: #707b89;

    font-size: 0.44rem;
}


.faq-bottom a {

    flex-shrink: 0;

    padding:
        6px 9px;

    border-radius: 7px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #3b82f6
        );

    text-decoration: none;

    font-size: 0.43rem;

    font-weight: 800;

    transition:
        transform 0.2s ease;
}


.faq-bottom a:hover {

    transform:
        translateY(-2px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .aibon-faq-section {

        margin-top: 38px;

        padding:
            0 10px 35px;
    }


    .faq-intro {

        margin-bottom: 14px;
    }


    .faq-intro h2 {

        font-size: 1.2rem;
    }


    .faq-intro p {

        font-size: 0.53rem;

        max-width: 330px;
    }


    .faq-question {

        padding:
            9px 10px;

        font-size: 0.55rem;
    }


    .faq-icon {

        width: 23px;

        height: 23px;

        border-radius: 7px;

        font-size: 0.52rem;
    }


    .faq-arrow {

        width: 19px;

        height: 19px;

        font-size: 0.65rem;
    }


    .faq-answer p {

        padding:
            0 38px 10px;

        font-size: 0.49rem;
    }


    .faq-bottom {

        flex-direction: column;

        text-align: center;

        gap: 7px;
    }


    .faq-bottom strong {

        font-size: 0.52rem;
    }


    .faq-bottom span {

        font-size: 0.41rem;
    }

}

/* =========================================================
   AIBON — AFRICA NETWORK
========================================================= */

.aibon-africa-section {

    width: 100%;

    max-width: 1000px;

    margin: 45px auto 0;

    padding:
        0 15px 50px;

    box-sizing: border-box;
}


/* =========================================================
   INTRO
========================================================= */

.africa-intro {

    text-align: center;

    max-width: 650px;

    margin:
        0 auto 20px;
}


.africa-eyebrow {

    display: inline-block;

    color: #22d3ee;

    font-size: 0.48rem;

    font-weight: 900;

    letter-spacing: 0.14em;

    margin-bottom: 6px;
}


.africa-intro h2 {

    margin: 0;

    color: #ffffff;

    font-size: 1.55rem;

    line-height: 1.15;
}


.africa-intro h2 span {

    background:
        linear-gradient(
            90deg,
            #a78bfa,
            #22d3ee
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.africa-intro p {

    margin:
        7px auto 0;

    color: #818b9a;

    font-size: 0.61rem;

    line-height: 1.5;
}


/* =========================================================
   COUNTRY COUNTER
========================================================= */

.africa-counter {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-top: 10px;

    padding:
        5px 10px;

    border-radius: 20px;

    background:
        rgba(34,211,238,0.05);

    border:
        1px solid
        rgba(34,211,238,0.16);
}


.africa-counter strong {

    color: #67e8f9;

    font-size: 0.65rem;
}


.africa-counter span {

    color: #778494;

    font-size: 0.44rem;
}


/* =========================================================
   REGIONS
========================================================= */

.africa-regions {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}


.africa-region {

    position: relative;

    overflow: hidden;

    padding:
        13px;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.018)
        );

    border:
        1px solid
        rgba(255,255,255,0.075);

    box-shadow:
        0 12px 30px
        rgba(0,0,0,0.12);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}


.africa-region::after {

    content: "";

    position: absolute;

    width: 120px;

    height: 120px;

    right: -70px;

    bottom: -70px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(139,92,246,0.12),
            transparent 70%
        );

    pointer-events: none;
}


.africa-region:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(167,139,250,0.25);
}


/* =========================================================
   REGION COLORS
========================================================= */

.east-africa {

    border-top:
        1px solid
        rgba(34,211,238,0.28);
}


.west-africa {

    border-top:
        1px solid
        rgba(251,146,60,0.28);
}


.central-africa {

    border-top:
        1px solid
        rgba(167,139,250,0.28);
}


.southern-africa {

    border-top:
        1px solid
        rgba(74,222,128,0.28);
}


.additional-africa {

    border-top:
        1px solid
        rgba(244,114,182,0.28);

    grid-column:
        1 / -1;
}


/* =========================================================
   REGION HEADING
========================================================= */

.region-heading {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 10px;
}


.region-icon {

    width: 25px;

    height: 25px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 8px;

    color: #ffffff;

    background:
        rgba(139,92,246,0.12);

    font-size: 0.65rem;
}


.region-heading div:nth-child(2) {

    min-width: 0;

    flex: 1;
}


.region-heading strong {

    display: block;

    color: #dbe4ed;

    font-size: 0.58rem;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}


.region-heading small {

    display: block;

    margin-top: 2px;

    color: #657383;

    font-size: 0.4rem;
}


.region-status {

    padding:
        3px 6px;

    border-radius: 12px;

    color: #67e8f9;

    background:
        rgba(34,211,238,0.06);

    border:
        1px solid
        rgba(34,211,238,0.14);

    font-size: 0.34rem;

    font-weight: 800;
}


.region-status.expanding {

    color: #f9a8d4;

    background:
        rgba(244,114,182,0.06);

    border-color:
        rgba(244,114,182,0.14);
}


/* =========================================================
   COUNTRY GRID
========================================================= */

.country-grid {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;
}


.country-chip {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 4px;

    padding:
        5px 7px;

    border-radius: 8px;

    color: #b7c2ce;

    background:
        rgba(255,255,255,0.035);

    border:
        1px solid
        rgba(255,255,255,0.055);

    font-size: 0.43rem;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


.country-chip span {

    font-size: 0.72rem;

    line-height: 1;
}


.country-chip i {

    width: 4px;

    height: 4px;

    margin-left: 1px;

    border-radius: 50%;

    background: #4ade80;

    box-shadow:
        0 0 6px
        rgba(74,222,128,0.7);

    animation:
        countryPulse
        2s
        infinite;
}


.country-chip:hover {

    transform:
        translateY(-2px);

    color: #ffffff;

    background:
        rgba(139,92,246,0.08);

    border-color:
        rgba(167,139,250,0.22);
}


@keyframes countryPulse {

    0%,
    100% {

        opacity: 0.4;

    }

    50% {

        opacity: 1;

    }

}


/* =========================================================
   BOTTOM
========================================================= */

.africa-bottom {

    margin:
        14px auto 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    color: #687687;

    font-size: 0.45rem;
}


.africa-bottom strong {

    font-size: 0.65rem;
}


.africa-pulse {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #22d3ee;

    box-shadow:
        0 0 10px
        rgba(34,211,238,0.8);

    animation:
        africaPulse
        1.4s
        infinite;
}


@keyframes africaPulse {

    0%,
    100% {

        opacity: 0.35;

        transform: scale(0.8);

    }

    50% {

        opacity: 1;

        transform: scale(1.15);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .aibon-africa-section {

        margin-top: 38px;

        padding:
            0 10px 35px;
    }


    .africa-intro {

        margin-bottom: 15px;
    }


    .africa-intro h2 {

        font-size: 1.22rem;
    }


    .africa-intro p {

        max-width: 330px;

        font-size: 0.53rem;
    }


    .africa-regions {

        grid-template-columns: 1fr;

        gap: 8px;
    }


    .africa-region {

        padding:
            10px;

        border-radius: 13px;
    }


    .additional-africa {

        grid-column: auto;
    }


    .region-heading {

        margin-bottom: 8px;
    }


    .region-heading strong {

        font-size: 0.53rem;
    }


    .region-heading small {

        font-size: 0.37rem;
    }


    .region-status {

        font-size: 0.31rem;

        padding:
            3px 5px;
    }


    .country-chip {

        padding:
            5px 6px;

        font-size: 0.41rem;
    }


    .country-chip span {

        font-size: 0.67rem;
    }


    .africa-bottom {

        font-size: 0.41rem;
    }

}

.country-chip.country-active {

    border-color:
        rgba(34,211,238,0.35);

    background:
        rgba(34,211,238,0.07);

    box-shadow:
        0 0 16px
        rgba(34,211,238,0.06);

}

/* =========================================================
   AIBON — FINAL CTA
========================================================= */

.aibon-final-cta {

    position: relative;

    width: 100%;

    max-width: 950px;

    margin: 35px auto 0;

    padding:
        42px 20px 35px;

    box-sizing: border-box;

    overflow: hidden;

    text-align: center;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #09051a,
            #110725,
            #071522
        );

    border:
        1px solid
        rgba(167,139,250,0.16);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,0.28);
}


/* =========================================================
   GLOW
========================================================= */

.final-cta-glow {

    position: absolute;

    width: 320px;

    height: 320px;

    left: 50%;

    top: -190px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(168,85,247,0.18),
            rgba(34,211,238,0.06),
            transparent 70%
        );

    pointer-events: none;

    animation:
        finalCtaGlow
        5s
        ease-in-out
        infinite;
}


@keyframes finalCtaGlow {

    0%,
    100% {
        transform:
            translateX(-50%)
            scale(0.95);
    }

    50% {
        transform:
            translateX(-50%)
            scale(1.08);
    }

}


/* =========================================================
   TEXT
========================================================= */

.final-cta-eyebrow {

    position: relative;

    display: inline-block;

    color: #a78bfa;

    font-size: 0.48rem;

    font-weight: 900;

    letter-spacing: 0.14em;
}


.aibon-final-cta h2 {

    position: relative;

    margin:
        7px 0 0;

    color: #ffffff;

    font-size: 2rem;

    line-height: 1.1;
}


.aibon-final-cta h2 span {

    background:
        linear-gradient(
            90deg,
            #a855f7,
            #22d3ee
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.aibon-final-cta p {

    position: relative;

    max-width: 560px;

    margin:
        9px auto 0;

    color: #8791a0;

    font-size: 0.61rem;

    line-height: 1.55;
}


/* =========================================================
   BUTTONS
========================================================= */

.final-cta-buttons {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 17px;
}


.final-cta-buttons a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    min-width: 125px;

    padding:
        9px 13px;

    box-sizing: border-box;

    border-radius: 9px;

    text-decoration: none;

    font-size: 0.52rem;

    font-weight: 900;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.final-cta-primary {

    color: #ffffff;

    background:
        linear-gradient(
            110deg,
            #7c3aed,
            #a855f7,
            #db2777
        );

    box-shadow:
        0 8px 25px
        rgba(139,92,246,0.2);
}


.final-cta-secondary {

    color: #d8d1ff;

    background:
        rgba(139,92,246,0.06);

    border:
        1px solid
        rgba(167,139,250,0.25);
}


.final-cta-buttons a:hover {

    transform:
        translateY(-3px);
}


.final-cta-primary:hover {

    box-shadow:
        0 12px 30px
        rgba(139,92,246,0.32);
}


.final-cta-secondary:hover {

    background:
        rgba(139,92,246,0.11);
}


/* =========================================================
   NOTE
========================================================= */

.final-cta-note {

    position: relative;

    margin-top: 12px;

    color: #687485;

    font-size: 0.4rem;
}


.final-cta-note span {

    color: #4ade80;
}


.final-cta-note i {

    margin:
        0 5px;

    color: #3d4652;

    font-style: normal;
}


/* =========================================================
   FOOTER
========================================================= */

.aibon-footer {

    width: 100%;

    margin-top: 25px;

    padding:
        30px 15px 15px;

    box-sizing: border-box;

    background:
        linear-gradient(
            180deg,
            #05050c,
            #030308
        );

    border-top:
        1px solid
        rgba(255,255,255,0.06);
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {

    width: 100%;

    max-width: 1100px;

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        1.8fr
        1fr
        1fr
        1fr;

    gap: 30px;
}


/* =========================================================
   BRAND
========================================================= */

.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #ffffff;

    text-decoration: none;

    font-size: 1rem;

    font-weight: 900;
}


.footer-logo-icon {

    width: 31px;

    height: 31px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #06b6d4
        );

    font-size: 1.1rem;

    box-shadow:
        0 7px 20px
        rgba(124,58,237,0.2);
}


.footer-brand p {

    max-width: 280px;

    margin:
        9px 0 11px;

    color: #697484;

    font-size: 0.48rem;

    line-height: 1.6;
}


.footer-status {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding:
        4px 7px;

    border-radius: 12px;

    color: #778493;

    background:
        rgba(74,222,128,0.04);

    border:
        1px solid
        rgba(74,222,128,0.1);

    font-size: 0.38rem;
}


.footer-status-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #4ade80;

    box-shadow:
        0 0 8px
        rgba(74,222,128,0.7);

    animation:
        footerPulse
        1.5s
        infinite;
}


@keyframes footerPulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 7px;
}


.footer-column h4 {

    margin:
        0 0 3px;

    color: #dbe3ec;

    font-size: 0.53rem;
}


.footer-column a {

    color: #697483;

    text-decoration: none;

    font-size: 0.45rem;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.footer-column a:hover {

    color: #a78bfa;

    transform:
        translateX(3px);
}


/* =========================================================
   REGISTER BAR
========================================================= */

.footer-register-bar {

    width: 100%;

    max-width: 1100px;

    margin:
        25px auto 0;

    padding:
        11px 13px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    border-radius: 13px;

    background:
        linear-gradient(
            100deg,
            rgba(124,58,237,0.08),
            rgba(6,182,212,0.04)
        );

    border:
        1px solid
        rgba(167,139,250,0.1);
}


.footer-register-bar strong {

    display: block;

    color: #d8d1ff;

    font-size: 0.54rem;
}


.footer-register-bar span {

    display: block;

    margin-top: 2px;

    color: #697584;

    font-size: 0.42rem;
}


.footer-register-bar a {

    flex-shrink: 0;

    padding:
        7px 10px;

    border-radius: 7px;

    color: #ffffff;

    background:
        linear-gradient(
            110deg,
            #7c3aed,
            #a855f7
        );

    text-decoration: none;

    font-size: 0.43rem;

    font-weight: 900;

    transition:
        transform 0.2s ease;
}


.footer-register-bar a:hover {

    transform:
        translateY(-2px);
}


.footer-register-bar a span {

    display: inline;

    margin: 0 0 0 3px;

    color: inherit;

    font-size: inherit;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    width: 100%;

    max-width: 1100px;

    margin:
        17px auto 0;

    padding-top:
        11px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    border-top:
        1px solid
        rgba(255,255,255,0.04);

    color: #4f5965;

    font-size: 0.39rem;
}


.footer-bottom-links {

    display: flex;

    gap: 10px;
}


.footer-bottom-links a {

    color: #596471;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.footer-bottom-links a:hover {

    color: #a78bfa;
}


.footer-made span {

    color: #8b5cf6;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.aibon-back-top {

    position: fixed;

    right: 18px;

    bottom: 20px;

    z-index: 999;

    width: 35px;

    height: 35px;

    display: grid;

    place-items: center;

    border: 1px solid
        rgba(167,139,250,0.25);

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(10,7,22,0.85);

    backdrop-filter:
        blur(10px);

    cursor: pointer;

    font-size: 0.8rem;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        all 0.3s ease;
}


.aibon-back-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.aibon-back-top:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(167,139,250,0.55);

    box-shadow:
        0 8px 25px
        rgba(124,58,237,0.18);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .aibon-final-cta {

        margin-top: 28px;

        padding:
            32px 13px 27px;

        border-radius: 18px;
    }


    .final-cta-eyebrow {

        font-size: 0.4rem;
    }


    .aibon-final-cta h2 {

        font-size: 1.55rem;
    }


    .aibon-final-cta p {

        max-width: 340px;

        font-size: 0.53rem;
    }


    .final-cta-buttons {

        gap: 6px;

        margin-top: 14px;
    }


    .final-cta-buttons a {

        min-width: 108px;

        padding:
            8px 10px;

        font-size: 0.46rem;
    }


    .final-cta-note {

        font-size: 0.35rem;
    }


    /* FOOTER */

    .aibon-footer {

        margin-top: 20px;

        padding:
            25px 12px 12px;
    }


    .footer-main {

        grid-template-columns:
            1fr 1fr;

        gap:
            22px 15px;
    }


    .footer-brand {

        grid-column:
            1 / -1;
    }


    .footer-brand p {

        max-width: 330px;

        font-size: 0.45rem;
    }


    .footer-column {

        gap: 6px;
    }


    .footer-column h4 {

        font-size: 0.49rem;
    }


    .footer-column a {

        font-size: 0.41rem;
    }


    .footer-register-bar {

        margin-top: 21px;

        padding:
            9px 10px;
    }


    .footer-register-bar strong {

        font-size: 0.48rem;
    }


    .footer-register-bar span {

        font-size: 0.38rem;
    }


    .footer-register-bar a {

        padding:
            6px 8px;

        font-size: 0.39rem;
    }


    .footer-bottom {

        flex-direction: column;

        text-align: center;

        gap: 7px;

        font-size: 0.35rem;
    }


    .footer-bottom-links {

        order: -1;
    }


    .aibon-back-top {

        right: 12px;

        bottom: 14px;

        width: 32px;

        height: 32px;
    }

}

/* ==========================================================
   WHATSAPP CHANNEL FLOATING BUTTON
========================================================== */

.whatsapp-channel-button {

    position: fixed;

    left: 20px;
    bottom: 22px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #25d366,
            #12a94b
        );

    border:
        2px solid
        rgba(255,255,255,.25);

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.35),

        0 0 20px
        rgba(37,211,102,.35);

    text-decoration: none;

    z-index: 9999;

    animation:
        whatsappShake
        3.5s
        ease-in-out
        infinite;
}


/* ==========================================================
   WHATSAPP ICON
========================================================== */

.whatsapp-icon {

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;

    z-index: 3;
}


.whatsapp-icon svg {

    width: 100%;
    height: 100%;

    fill: #ffffff;

    display: block;
}


/* ==========================================================
   99+ NOTIFICATION BADGE
========================================================== */

.whatsapp-badge {

    position: absolute;

    top: -7px;
    right: -7px;

    min-width: 28px;
    height: 28px;

    padding: 0 6px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background:
        linear-gradient(
            145deg,
            #ff3030,
            #d90000
        );

    color: #ffffff;

    border:
        2px solid
        #09070f;

    font-size: 9px;

    font-weight: 950;

    line-height: 1;

    box-shadow:
        0 3px 12px
        rgba(255,0,0,.45);

    z-index: 5;

    animation:
        badgePulse
        1.5s
        ease-in-out
        infinite;
}


/* ==========================================================
   OUTWARD WAVES
========================================================== */

.whatsapp-wave {

    position: absolute;

    inset: 0;

    border-radius: 50%;

    border:
        2px solid
        rgba(37,211,102,.65);

    pointer-events: none;

    z-index: 1;
}


.whatsapp-wave-one {

    animation:
        whatsappWave
        2.4s
        ease-out
        infinite;
}


.whatsapp-wave-two {

    animation:
        whatsappWave
        2.4s
        ease-out
        infinite;

    animation-delay:
        1.2s;
}


@keyframes whatsappWave {

    0% {

        transform:
            scale(1);

        opacity: .75;
    }

    65% {

        opacity: .25;
    }

    100% {

        transform:
            scale(1.8);

        opacity: 0;
    }
}


/* ==========================================================
   BUTTON SHAKE
========================================================== */

@keyframes whatsappShake {

    0%,
    72%,
    100% {

        transform:
            translateX(0)
            rotate(0deg);
    }

    75% {

        transform:
            translateX(-2px)
            rotate(-3deg);
    }

    78% {

        transform:
            translateX(2px)
            rotate(3deg);
    }

    81% {

        transform:
            translateX(-2px)
            rotate(-2deg);
    }

    84% {

        transform:
            translateX(2px)
            rotate(2deg);
    }

    87% {

        transform:
            translateX(-1px)
            rotate(-1deg);
    }

    90% {

        transform:
            translateX(1px)
            rotate(1deg);
    }

    93% {

        transform:
            translateX(0)
            rotate(0);
    }
}


/* ==========================================================
   BADGE PULSE
========================================================== */

@keyframes badgePulse {

    0%,
    100% {

        transform:
            scale(1);
    }

    50% {

        transform:
            scale(1.12);
    }
}


/* ==========================================================
   HOVER
========================================================== */

@media (hover: hover) and (pointer: fine) {

    .whatsapp-channel-button:hover {

        transform:
            scale(1.08);

        box-shadow:
            0 10px 30px
            rgba(0,0,0,.4),

            0 0 28px
            rgba(37,211,102,.5);
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media screen and (max-width: 600px) {

    .whatsapp-channel-button {

        left: 14px;
        bottom: 18px;

        width: 54px;
        height: 54px;
    }


    .whatsapp-icon {

        width: 29px;
        height: 29px;
    }


    .whatsapp-badge {

        top: -6px;
        right: -6px;

        min-width: 26px;
        height: 26px;

        font-size: 8px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .whatsapp-channel-button,
    .whatsapp-wave,
    .whatsapp-badge {

        animation: none;
    }

}

/* ==========================================================
   TELEGRAM CHANNEL FLOATING BUTTON
========================================================== */

.telegram-channel-button {

    position: fixed;

    left: 20px;
    bottom: 94px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #38a9f2,
            #168bd0
        );

    border:
        2px solid
        rgba(255,255,255,.25);

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.35),

        0 0 20px
        rgba(42,164,255,.35);

    text-decoration: none;

    z-index: 9999;

    animation:
        telegramShake
        3.5s
        ease-in-out
        infinite;
}


/* ==========================================================
   TELEGRAM ICON
========================================================== */

.telegram-icon {

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;

    z-index: 3;
}


.telegram-icon svg {

    width: 100%;
    height: 100%;

    fill: #ffffff;

    display: block;
}


/* ==========================================================
   LIVE LABEL
========================================================== */

.telegram-live-label {

    position: absolute;

    top: -8px;
    right: -10px;

    padding:
        5px 7px;

    border-radius: 999px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #ff3b3b,
            #d90000
        );

    border:
        2px solid
        #08070e;

    font-size: 7px;

    font-weight: 950;

    letter-spacing: .6px;

    line-height: 1;

    box-shadow:
        0 3px 12px
        rgba(255,0,0,.45);

    z-index: 5;

    animation:
        telegramLivePulse
        1.3s
        ease-in-out
        infinite;
}


/* ==========================================================
   OUTWARD WAVES
========================================================== */

.telegram-wave {

    position: absolute;

    inset: 0;

    border-radius: 50%;

    border:
        2px solid
        rgba(52,169,240,.7);

    pointer-events: none;

    z-index: 1;
}


.telegram-wave-one {

    animation:
        telegramWave
        2.4s
        ease-out
        infinite;
}


.telegram-wave-two {

    animation:
        telegramWave
        2.4s
        ease-out
        infinite;

    animation-delay:
        1.2s;
}


@keyframes telegramWave {

    0% {

        transform:
            scale(1);

        opacity: .75;
    }

    65% {

        opacity: .25;
    }

    100% {

        transform:
            scale(1.8);

        opacity: 0;
    }
}


/* ==========================================================
   TELEGRAM SHAKE
========================================================== */

@keyframes telegramShake {

    0%,
    72%,
    100% {

        transform:
            translateX(0)
            rotate(0deg);
    }

    75% {

        transform:
            translateX(-2px)
            rotate(-3deg);
    }

    78% {

        transform:
            translateX(2px)
            rotate(3deg);
    }

    81% {

        transform:
            translateX(-2px)
            rotate(-2deg);
    }

    84% {

        transform:
            translateX(2px)
            rotate(2deg);
    }

    87% {

        transform:
            translateX(-1px)
            rotate(-1deg);
    }

    90% {

        transform:
            translateX(1px)
            rotate(1deg);
    }

    93% {

        transform:
            translateX(0)
            rotate(0);
    }
}


/* ==========================================================
   LIVE PULSE
========================================================== */

@keyframes telegramLivePulse {

    0%,
    100% {

        transform:
            scale(1);

        box-shadow:
            0 3px 10px
            rgba(255,0,0,.35);
    }

    50% {

        transform:
            scale(1.12);

        box-shadow:
            0 3px 17px
            rgba(255,0,0,.65);
    }
}


/* ==========================================================
   HOVER
========================================================== */

@media (hover: hover) and (pointer: fine) {

    .telegram-channel-button:hover {

        transform:
            scale(1.08);

        box-shadow:
            0 10px 30px
            rgba(0,0,0,.4),

            0 0 28px
            rgba(42,164,255,.55);
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media screen and (max-width: 600px) {

    .telegram-channel-button {

        left: 14px;
        bottom: 82px;

        width: 54px;
        height: 54px;
    }


    .telegram-icon {

        width: 28px;
        height: 28px;
    }


    .telegram-live-label {

        top: -7px;
        right: -9px;

        padding:
            4px 6px;

        font-size: 6px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .telegram-channel-button,
    .telegram-wave,
    .telegram-live-label {

        animation: none;
    }

}