    :root {
        --zoogaboog-blue: #01aade;
        --zoogaboog-dark-blue: #0085ae;
        --green: #10B981;
        --purple: #8B5CF6;
        --orange: #F59E0B;
        --red: #EF4444;
    }


    /* SECTION 1: HERO */
    .hero {
        padding: 6rem 0 0 0;
        text-align: center;
        background: white;
    }

    .hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        color: #1e293b;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero h1 .highlight {
        color: var(--zoogaboog-blue);
    }

    .hero .tagline {
        font-size: 2rem;
        color: #64748b;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .hero .tagline strong {
        color: var(--zoogaboog-blue);
        font-weight: 800;
    }

    /* FLIP ANIMATION STYLES - BASE */
    .flip-line {
        perspective: 1000px;
        min-height: 2.5rem;
    }

    .flip-slot {
        display: inline-block;
        position: relative;
        transition: transform 0.6s;
        transform-style: preserve-3d;
        font-weight: 800;
        text-align: center;
    }

    .flip-slot.flipping {
        animation: flip 0.6s ease-in-out;
    }

    .flip-to {
        color: #1e293b;
        font-weight: 600;
        margin: 0 0.5rem;
    }

    .flip-comma {
        color: #1e293b;
        margin-right: 0.5rem;
    }

    @keyframes flip {
        0% {
            transform: rotateX(0deg);
        }

        50% {
            transform: rotateX(90deg);
            opacity: 0;
        }

        51% {
            transform: rotateX(-90deg);
        }

        100% {
            transform: rotateX(0deg);
            opacity: 1;
        }
    }

    /* === 1. HOLLYWOOD SQUARES === */
    .hollywood-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 500px;
        margin: 2rem auto;
    }

    .hollywood-square {
        aspect-ratio: 1;
        background: linear-gradient(135deg, var(--zoogaboog-blue) 0%, #0085ae 100%);
        border: 4px solid #1e293b;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 900;
        color: white;
        cursor: pointer;
        animation: hollywoodPop 0.6s ease-out forwards;
        animation-delay: calc(var(--square-index, 0) * 0.1s);
        opacity: 0;
        transform: scale(0);
    }

    .hollywood-square::before {
        content: attr(data-text);
    }

    .hollywood-square:hover {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 15px 40px rgba(1, 170, 222, 0.5);
    }

    @keyframes hollywoodPop {
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .hollywood-square:nth-child(1) {
        --square-index: 0;
    }

    .hollywood-square:nth-child(2) {
        --square-index: 1;
    }

    .hollywood-square:nth-child(3) {
        --square-index: 2;
    }

    .hollywood-square:nth-child(4) {
        --square-index: 3;
    }

    .hollywood-square:nth-child(5) {
        --square-index: 4;
    }

    .hollywood-square:nth-child(6) {
        --square-index: 5;
    }

    .hollywood-square:nth-child(7) {
        --square-index: 6;
    }

    .hollywood-square:nth-child(8) {
        --square-index: 7;
    }

    .hollywood-square:nth-child(9) {
        --square-index: 8;
    }

    /* === 2. SLOT MACHINE === */
    .slot-machine {
        display: flex;
        gap: 2rem;
        justify-content: center;
        margin: 2rem auto;
        padding: 2rem;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-radius: 24px;
        max-width: 600px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .slot-reel {
        width: 150px;
        height: 150px;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        border: 6px solid #01aade;
    }

    .slot-item {
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--zoogaboog-blue);
        animation: slotSpin 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    }

    @keyframes slotSpin {

        0%,
        100% {
            transform: translateY(0);
        }

        33% {
            transform: translateY(-150px);
        }

        66% {
            transform: translateY(-300px);
        }
    }

    #reel1 .slot-item {
        animation-duration: 1.5s;
    }

    #reel2 .slot-item {
        animation-duration: 2s;
    }

    #reel3 .slot-item {
        animation-duration: 2.5s;
    }

    /* === 3. CAROUSEL === */
    .carousel-container {
        overflow: hidden;
        margin: 2rem 0;
        padding: 2rem 0;
    }

    .carousel-track {
        display: flex;
        gap: 2rem;
        animation: carouselScroll 15s linear infinite;
    }

    .carousel-item {
        min-width: 250px;
        padding: 2rem 3rem;
        background: linear-gradient(135deg, rgba(1, 170, 222, 0.1) 0%, rgba(1, 170, 222, 0.2) 100%);
        border: 3px solid var(--zoogaboog-blue);
        border-radius: 20px;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--zoogaboog-blue);
        text-align: center;
        flex-shrink: 0;
    }

    @keyframes carouselScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-270px * 5));
        }
    }

    /* === 4. CARD SHUFFLE === */
    .card-stack {
        position: relative;
        height: 250px;
        margin: 2rem auto;
        max-width: 400px;
    }

    .shuffle-card {
        position: absolute;
        width: 100%;
        padding: 3rem;
        background: linear-gradient(135deg, var(--zoogaboog-blue) 0%, #0085ae 100%);
        color: white;
        border-radius: 20px;
        font-size: 1.8rem;
        font-weight: 900;
        text-align: center;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        animation: cardShuffle 8s ease-in-out infinite;
        animation-delay: calc(var(--index) * 1.6s);
    }

    @keyframes cardShuffle {

        0%,
        80%,
        100% {
            transform: translateY(0) rotate(0deg);
            z-index: 5;
            opacity: 1;
        }

        10% {
            transform: translateY(-100px) rotate(-10deg);
            z-index: 10;
        }

        20% {
            transform: translateY(0) rotate(0deg);
            z-index: 1;
            opacity: 0.7;
        }
    }

    /* === 5. NEON SIGN === */
    .neon-sign {
        margin: 2rem 0;
        padding: 3rem;
        background: #0f172a;
        border-radius: 24px;
    }

    .neon-text {
        font-size: 4rem;
        font-weight: 900;
        color: #01aade;
        text-shadow:
            0 0 10px #01aade,
            0 0 20px #01aade,
            0 0 30px #01aade,
            0 0 40px #01aade;
        animation: neonFlicker 3s ease-in-out infinite;
    }

    @keyframes neonFlicker {

        0%,
        19%,
        21%,
        23%,
        25%,
        54%,
        56%,
        100% {
            text-shadow:
                0 0 10px #01aade,
                0 0 20px #01aade,
                0 0 30px #01aade,
                0 0 40px #01aade;
        }

        20%,
        24%,
        55% {
            text-shadow: none;
        }
    }

    /* === 6. MATRIX RAIN === */
    .matrix-container {
        position: relative;
        height: 300px;
        background: #000;
        border-radius: 16px;
        overflow: hidden;
        margin: 2rem 0;
    }

    #matrix-canvas {
        width: 100%;
        height: 100%;
    }

    .matrix-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }

    /* === 7. BINGO BOARD === */
    .bingo-board {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
        max-width: 550px;
        margin: 2rem auto;
        padding: 1.5rem;
        background: #1e293b;
        border-radius: 16px;
    }

    .bingo-cell {
        aspect-ratio: 1;
        background: white;
        border: 3px solid var(--zoogaboog-blue);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 800;
        color: var(--zoogaboog-blue);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .bingo-cell:hover {
        background: var(--zoogaboog-blue);
        color: white;
        transform: scale(1.1);
    }

    .bingo-free {
        background: var(--zoogaboog-blue);
        color: white;
        font-size: 0.75rem;
        line-height: 1.2;
    }

    /* === 8. SPEEDOMETER === */
    .speedometer {
        max-width: 400px;
        margin: 2rem auto;
        text-align: center;
    }

    .speedo-svg {
        width: 100%;
        height: auto;
    }

    #speedo-needle {
        transform-origin: 100px 100px;
        animation: speedoRotate 4s ease-in-out infinite;
    }

    @keyframes speedoRotate {

        0%,
        100% {
            transform: rotate(-90deg);
        }

        50% {
            transform: rotate(90deg);
        }
    }

    .speedo-label {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--zoogaboog-blue);
        margin-top: 1rem;
    }

    /* === 9. BADGE COLLECTION === */
    .badge-container {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        margin: 2rem 0;
    }

    .badge {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, rgba(1, 170, 222, 0.1) 0%, rgba(1, 170, 222, 0.2) 100%);
        border: 4px solid var(--zoogaboog-blue);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        animation: badgeBounce 2s ease-in-out infinite;
        animation-delay: calc(var(--badge-index, 0) * 0.2s);
    }

    .badge small {
        font-size: 0.7rem;
        font-weight: 800;
        color: var(--zoogaboog-blue);
        margin-top: 0.25rem;
    }

    @keyframes badgeBounce {

        0%,
        100% {
            transform: translateY(0);
        }

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

    .badge:nth-child(1) {
        --badge-index: 0;
    }

    .badge:nth-child(2) {
        --badge-index: 1;
    }

    .badge:nth-child(3) {
        --badge-index: 2;
    }

    .badge:nth-child(4) {
        --badge-index: 3;
    }

    .badge:nth-child(5) {
        --badge-index: 4;
    }

    .badge:nth-child(6) {
        --badge-index: 5;
    }

    .hero .subtitle {
        font-size: 1.3rem;
        color: #64748b;
        margin-bottom: 3rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.3rem 2.75rem;
        background: var(--zoogaboog-blue);
        color: white;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 800;
        font-size: 1.3rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 35px rgba(1, 170, 222, 0.3);
    }

    .hero-cta:hover {
        background: var(--zoogaboog-dark-blue);
        transform: translateY(-4px);
        box-shadow: 0 15px 50px rgba(1, 170, 222, 0.4);
        color: white;
    }

    .hero-cta-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.3rem 2.75rem;
        background: white;
        color: var(--zoogaboog-blue);
        border: 3px solid var(--zoogaboog-blue);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 800;
        font-size: 1.3rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(1, 170, 222, 0.15);
    }

    .hero-cta-secondary:hover {
        background: var(--zoogaboog-blue);
        color: white;
        transform: translateY(-4px);
        box-shadow: 0 10px 35px rgba(1, 170, 222, 0.3);
    }

    /* SECTION 2: VIDEO */
    .video-section {
        padding: 5rem 0 0 0;
        background: transparent;
        margin-bottom: 0;
    }

    .video-container {
        background: #0f172a;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
        aspect-ratio: 16/9;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 10;
        border: 4px solid white;
        max-width: 1200px;
        margin: 0 auto;
    }

    .video-embed {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
    }

    .video-embed video {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 20px;
        object-fit: cover;
        display: block;
    }

    .video-embed video:not(.controls-shown)::-webkit-media-controls {
        display: none !important;
    }

    .video-embed video:not(.controls-shown)::-webkit-media-controls-panel {
        display: none !important;
    }

    .video-embed video:not(.controls-shown)::-webkit-media-controls-play-button {
        display: none !important;
    }

    .video-embed video:not(.controls-shown)::-webkit-media-controls-timeline {
        display: none !important;
    }

    .video-embed video:not(.controls-shown)::-webkit-media-controls-current-time-display {
        display: none !important;
    }

    .video-embed video:not(.controls-shown)::-webkit-media-controls-time-remaining-display {
        display: none !important;
    }

    .video-embed video:not(.controls-shown)::-webkit-media-controls-mute-button {
        display: none !important;
    }

    .video-embed video:not(.controls-shown)::-webkit-media-controls-volume-slider {
        display: none !important;
    }

    .video-embed video:not(.controls-shown)::-webkit-media-controls-fullscreen-button {
        display: none !important;
    }

    .video-play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 140px;
        height: 140px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        border: 6px solid #01aade;
    }

    .video-play-button:hover {
        background: rgba(255, 255, 255, 1);
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .video-play-button i {
        font-size: 4rem;
        color: var(--zoogaboog-blue);
        margin-left: 10px;
        /* Slight offset to center the triangle visually */
        font-weight: bold;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .video-play-button.playing {
        opacity: 0;
        pointer-events: none;
    }

    .video-placeholder {
        color: white;
        text-align: center;
    }

    .video-placeholder i {
        font-size: 6rem;
        margin-bottom: 1.5rem;
        opacity: 0.6;
        color: var(--zoogaboog-blue);
    }

    .video-placeholder p {
        font-size: 1.4rem;
        opacity: 0.8;
        margin-bottom: 0.75rem;
    }

    .video-placeholder small {
        display: block;
        margin-top: 0.5rem;
        opacity: 0.5;
        font-size: 0.9rem;
    }

    /* UNIFIED SECTION WITH STATIONARY TRIANGLE BACKGROUND */
    .unified-triangle-section {
        background: url('/assets/images/pages/home/bg-gray-white-triangles.jpg') center center / cover;
        background-attachment: fixed;
        position: relative;
        padding: 5rem 0;
    }

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 800;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: #64748b;
        margin-bottom: 4rem;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .feature-card {
        text-align: center;
        padding: 3rem 2rem;
        background: white;
        border-radius: 20px;
        border: 3px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        border-color: var(--zoogaboog-blue);
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
        width: 90px;
        height: 90px;
        border-radius: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: white;
        margin: 0 auto 2rem;
    }

    .feature-card:nth-child(1) .feature-icon {
        background: var(--purple);
    }

    .feature-card:nth-child(2) .feature-icon {
        background: var(--green);
    }

    .feature-card:nth-child(3) .feature-icon {
        background: var(--orange);
    }

    .feature-card h3 {
        font-size: 1.6rem;
        font-weight: 800;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .feature-card p {
        color: #64748b;
        line-height: 1.7;
        font-size: 1.05rem;
    }

    /* SECTION 4: HOW IT WORKS (QUICK) - Now part of unified section */

    .flow-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        position: relative;
    }

    /* Connector Arrows */
    .flow-grid::before {
        content: '';
        position: absolute;
        top: 80px;
        left: 22%;
        right: 22%;
        height: 3px;
        background: linear-gradient(90deg, var(--zoogaboog-blue) 0%, var(--zoogaboog-blue) 33%, var(--green) 33%, var(--green) 66%, var(--purple) 66%, var(--purple) 100%);
        z-index: 0;
    }

    .flow-card {
        background: white;
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 2px solid #e2e8f0;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
    }

    .flow-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    }

    .flow-card:nth-child(1) {
        border-color: var(--zoogaboog-blue);
    }

    .flow-card:nth-child(2) {
        border-color: var(--green);
    }

    .flow-card:nth-child(3) {
        border-color: var(--purple);
    }

    .flow-card:nth-child(4) {
        border-color: var(--orange);
    }

    .flow-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin: 0 auto 1.5rem;
        color: white;
    }

    .flow-card:nth-child(1) .flow-icon {
        background: var(--zoogaboog-blue);
    }

    .flow-card:nth-child(2) .flow-icon {
        background: var(--green);
    }

    .flow-card:nth-child(3) .flow-icon {
        background: var(--purple);
    }

    .flow-card:nth-child(4) .flow-icon {
        background: var(--orange);
    }

    .flow-number {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 35px;
        height: 35px;
        background: white;
        border: 3px solid;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1.1rem;
    }

    .flow-card:nth-child(1) .flow-number {
        border-color: var(--zoogaboog-blue);
        color: var(--zoogaboog-blue);
    }

    .flow-card:nth-child(2) .flow-number {
        border-color: var(--green);
        color: var(--green);
    }

    .flow-card:nth-child(3) .flow-number {
        border-color: var(--purple);
        color: var(--purple);
    }

    .flow-card:nth-child(4) .flow-number {
        border-color: var(--orange);
        color: var(--orange);
    }

    .flow-card h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .flow-card p {
        color: #64748b;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .flow-highlight {
        background: #FEF3C7;
        color: #92400e;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        margin-top: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* SECTION 5: PRODUCT SHOWCASE */
    .product-showcase {
        padding: 5rem 0;
        background: white;
    }

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

    .product-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    }

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        border-color: var(--zoogaboog-blue);
    }

    .product-image {
        background: white;
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #cbd5e1;
        font-size: 4rem;
        border-bottom: 2px solid #e2e8f0;
    }

    .product-content {
        padding: 2rem;
    }

    .product-category {
        color: var(--zoogaboog-blue);
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.75rem;
    }

    .product-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 0.75rem;
    }

    .product-price {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--zoogaboog-blue);
        margin-bottom: 1.5rem;
    }

    .product-btn {
        display: block;
        width: 100%;
        padding: 0.9rem;
        background: var(--zoogaboog-blue);
        color: white;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        transition: all 0.3s ease;
    }

    .product-btn:hover {
        background: var(--zoogaboog-dark-blue);
        transform: translateY(-2px);
        color: white;
    }

    /* SECTION 6: LIVEDESIGN TEASER */
    .livedesign-teaser {
        padding: 5rem 0;
        background: linear-gradient(135deg, var(--orange) 0%, #D97706 100%);
        color: white;
    }

    .livedesign-content {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .livedesign-content h2 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
    }

    .livedesign-content p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        opacity: 0.95;
        line-height: 1.6;
    }

    .livedesign-video {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 16px;
        aspect-ratio: 16/9;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        opacity: 0.7;
    }

    .livedesign-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.1rem 2.25rem;
        background: white;
        color: var(--orange);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 800;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .livedesign-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
    }

    /* SECTION 7: TESTIMONIALS */
    .testimonials {
        padding: 5rem 0;
        background: white;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        margin-top: 3rem;
    }

    .testimonial-card {
        background: white;
        padding: 2.5rem;
        border-radius: 16px;
        border: 2px solid #e2e8f0;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
        background: var(--zoogaboog-blue);
        color: white;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-text {
        color: #1e293b;
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

    .testimonial-author strong {
        color: #1e293b;
        font-weight: 700;
        display: block;
        margin-bottom: 0.25rem;
    }

    .testimonial-author span {
        color: #94a3b8;
        font-size: 0.85rem;
    }

    /* SECTION 8: BUNDLES */
    .bundles-section {
        padding: 5rem 0;
        background: white;
    }

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

    .bundle-card-small {
        background: white;
        padding: 2.5rem;
        border-radius: 20px;
        border: 3px solid var(--orange);
        text-align: center;
        transition: all 0.3s ease;
    }

    .bundle-card-small:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 45px rgba(245, 158, 11, 0.2);
    }

    .bundle-icon {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .bundle-card-small h4 {
        font-size: 1.4rem;
        font-weight: 800;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .bundle-price-display {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--orange);
        margin: 1.5rem 0;
    }

    .bundle-savings {
        color: var(--green);
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .bundle-btn {
        display: block;
        width: 100%;
        padding: 1rem;
        background: var(--orange);
        color: white;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .bundle-btn:hover {
        background: #D97706;
        transform: translateY(-2px);
        color: white;
    }

    /* SECTION 9: RESOURCES TEASER */
    .resources-teaser {
        padding: 5rem 0;
        background: white;
    }

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

    .resource-card {
        background: white;
        padding: 2rem;
        border-radius: 16px;
        border: 2px solid #e2e8f0;
        text-align: center;
        transition: all 0.3s ease;
    }

    .resource-card:hover {
        border-color: var(--zoogaboog-blue);
        transform: translateY(-4px);
    }

    .resource-icon {
        font-size: 3.5rem;
        color: var(--zoogaboog-blue);
        margin-bottom: 1.5rem;
    }

    .resource-card h4 {
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .resource-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: var(--zoogaboog-blue);
        color: white;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .resource-btn:hover {
        background: var(--zoogaboog-dark-blue);
        color: white;
    }

    /* SECTION 10: FINAL CTA */
    .final-cta {
        padding: 6rem 0;
        background: var(--zoogaboog-blue);
        color: white;
        text-align: center;
    }

    .final-cta h2 {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
    }

    .final-cta .tagline {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        font-weight: 700;
    }

    .final-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.4rem 3rem;
        background: white;
        color: var(--zoogaboog-blue);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 800;
        font-size: 1.4rem;
        transition: all 0.3s ease;
        box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);
    }

    .final-cta-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    }

    .container-custom {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

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

    /* ============================================ */
    /* HOME PAGE RESPONSIVE - prevent overflow on mobile */
    /* ============================================ */
    @media (max-width: 992px) {
        .unified-triangle-section {
            padding: 3rem 0;
        }
        .features-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .feature-card {
            padding: 2rem 1.5rem;
        }
        .feature-card h3 {
            font-size: 1.35rem;
        }
        .flow-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        .flow-grid::before {
            display: none;
        }
        .flow-card {
            padding: 1.75rem 1rem;
        }
        .flow-card h3 {
            font-size: 1.2rem;
        }
        .flow-number {
            width: 30px;
            height: 30px;
            font-size: 0.95rem;
        }
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
        }
        .product-image {
            height: 160px;
            font-size: 3rem;
        }
        .product-content {
            padding: 1.25rem;
        }
        .bundles-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .resources-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .unified-triangle-section {
            padding: 2rem 0;
            background-attachment: scroll;
        }
        .section-title {
            font-size: 1.75rem;
        }
        .section-subtitle {
            font-size: 1rem;
            margin-bottom: 2rem;
        }
        .container-custom,
        .container {
            padding: 0 1rem;
            max-width: 100%;
        }
        .flow-grid {
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }
        .flow-card {
            padding: 1.5rem 1rem;
        }
        .flow-icon {
            width: 60px;
            height: 60px;
            font-size: 2rem;
        }
        .products-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        .product-image {
            height: 180px;
            font-size: 3.5rem;
        }
        .flow-section-spacer {
            margin-top: 2rem !important;
        }
    }

    @media (max-width: 576px) {
        .container-custom,
        .container {
            padding: 0 0.75rem;
        }
        .section-title {
            font-size: 1.5rem;
        }
        .feature-card {
            padding: 1.5rem 1rem;
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            font-size: 2.25rem;
        }
        .feature-card h3 {
            font-size: 1.2rem;
        }
        .feature-card p {
            font-size: 0.95rem;
        }
        .flow-highlight {
            font-size: 0.85rem;
            padding: 0.6rem 0.75rem;
        }
        .bundle-card-small {
            padding: 1.5rem 1rem;
        }
        .bundle-card-small h4 {
            font-size: 1.2rem;
        }
        .bundle-price-display {
            font-size: 2rem;
        }
        .resource-card {
            padding: 1.5rem 1rem;
        }
        .resource-card h4 {
            font-size: 1.1rem;
        }
    }

    /* Fears section grid - responsive so it doesn't overflow on mobile */
    .fears-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    @media (min-width: 900px) {
        .fears-grid {
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        }
    }

    /* CLIENT LOGOS CAROUSEL */
    .client-logos-section {
        padding: 4rem 0;
        background: white;
        overflow: hidden;
    }

    .logos-tagline {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 800;
        color: #1e293b;
        margin-bottom: 3rem;
    }

    .logos-marquee-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .logos-marquee {
        overflow: hidden;
        position: relative;
    }

    .logos-track {
        display: flex;
        gap: 3rem;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    .logos-marquee-left .logos-track {
        animation: marqueeLeft 30s linear infinite;
    }

    .logos-marquee-right .logos-track {
        animation: marqueeRight 30s linear infinite;
    }

    @keyframes marqueeLeft {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes marqueeRight {
        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(0);
        }
    }

    .logo-item {
        flex-shrink: 0;
    }

    .logo-placeholder {
        width: 180px;
        height: 90px;
        background: #f1f5f9;
        border: 2px dashed #cbd5e1;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 600;
        color: #94a3b8;
        text-align: center;
        transition: all 0.3s ease;
    }

    .logo-placeholder:hover {
        background: white;
        border-color: var(--zoogaboog-blue);
        color: var(--zoogaboog-blue);
        transform: scale(1.05);
    }

    /* COMPARISON TABLE SECTION */
    .comparison-section {
        padding: 6rem 0;
        background: white;
    }

    .comparison-title {
        text-align: center;
        font-size: 3.5rem;
        font-weight: 900;
        color: #1e293b;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .comparison-subtitle {
        text-align: center;
        font-size: 1.4rem;
        color: #64748b;
        margin-bottom: 4rem;
        font-weight: 600;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
        margin-bottom: 3rem;
    }

    .comparison-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .comparison-table thead {
        background: #1e293b;
        color: white;
    }

    .comparison-table th {
        padding: 1.5rem;
        font-weight: 800;
        font-size: 1.2rem;
        text-align: left;
    }

    .comparison-header-left {
        width: 30%;
    }

    .comparison-header-old {
        width: 35%;
        background: #EF4444;
    }

    .comparison-header-new {
        width: 35%;
        background: var(--zoogaboog-blue);
    }

    .comparison-table th .sub {
        font-size: 0.85rem;
        font-weight: 600;
        opacity: 0.9;
    }

    .comparison-table tbody tr {
        border-bottom: 1px solid #e2e8f0;
    }

    .comparison-table tbody tr:last-child {
        border-bottom: none;
    }

    .comparison-table td {
        padding: 1.25rem 1.5rem;
        vertical-align: middle;
    }

    .comparison-label {
        font-weight: 600;
        color: #1e293b;
        font-size: 1rem;
        background: white;
    }

    .comparison-old {
        background: #FEE2E2;
        color: #991B1B;
        font-size: 0.95rem;
    }

    .comparison-new {
        background: #DBEAFE;
        color: #1e40af;
        font-weight: 700;
        font-size: 1rem;
    }

    .comparison-new i {
        color: #10B981;
        font-size: 1.2rem;
        margin-right: 0.5rem;
    }

    .vendor-name {
        font-style: italic;
    }

    .comparison-highlight-row {
        background: #f9fafb;
    }

    .comparison-highlight-row .comparison-label {
        background: #f9fafb;
        font-weight: 700;
    }

    .comparison-summary-row {
        background: #fef3c7;
    }

    .comparison-summary-row .comparison-label {
        background: #fef3c7;
    }

    .comparison-summary-row .comparison-old {
        background: #fecaca;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .comparison-summary-row .comparison-new {
        background: #bfdbfe;
        font-weight: 800;
        font-size: 1.1rem;
    }

    .comparison-cta {
        text-align: center;
        padding: 3rem 2rem;
        background: #f9fafb;
        border-radius: 20px;
        margin-top: 3rem;
    }

    .comparison-tagline {
        font-size: 1.8rem;
        font-weight: 800;
        color: #1e293b;
        margin-bottom: 2rem;
    }

    .comparison-btn {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 3rem;
        background: var(--zoogaboog-blue);
        color: white;
        border-radius: 15px;
        text-decoration: none;
        font-weight: 800;
        font-size: 1.3rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 35px rgba(1, 170, 222, 0.3);
    }

    .comparison-btn:hover {
        background: var(--zoogaboog-dark-blue);
        transform: translateY(-4px);
        box-shadow: 0 15px 50px rgba(1, 170, 222, 0.4);
        color: white;
    }

    .comparison-subtext {
        margin-top: 1.5rem;
        color: #64748b;
        font-size: 1rem;
    }

    /* Baby Rocket styles have been moved to public/css/baby-rocket.css for global use */

    /* FLOATING PAINTBRUSH DIVIDER - 50/50 SPLIT */
    .floating-paintbrush-divider {
        height: 200px;
        overflow: hidden;
        position: relative;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -100px 0;
        /* Negative margin to center between sections */
        z-index: 10;
        /* Float above other content */
    }

    .paintbrush-container {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .paintbrush-image {
        height: 200px;
        width: auto;
        transform: translateX(-1200px);
        transition: transform 0.1s ease-out;
        will-change: transform;
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
        .paintbrush-divider {
            height: 150px;
        }

        .paintbrush-image {
            height: 150px;
            transform: translateX(-450px);
        }
    }

    /* ============================================ */
    /* 13 HERO ANIMATION STYLES */
    /* ============================================ */

    .hero-version {
        min-height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    /* VERSION 1: SPLIT-FLAP DISPLAY */
    .split-flap-container {
        text-align: center;
    }

    .split-flap-board {
        display: inline-flex;
        gap: 4px;
        background: #1e293b;
        padding: 20px 30px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .flap-char {
        width: 40px;
        height: 60px;
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 800;
        color: #1e293b;
        font-family: 'Courier New', monospace;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .flap-char.flipping {
        animation: flapFlip 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes flapFlip {

        0%,
        100% {
            transform: scaleY(1);
        }

        50% {
            transform: scaleY(0.1);
        }
    }

    /* VERSION 2: GET AGGRESSIVE */
    .get-aggressive {
        text-align: center;
    }

    .cursor-blink {
        animation: blink 1s infinite;
        color: #01aade;
        font-weight: 800;
        margin-left: 4px;
    }

    @keyframes blink {

        0%,
        49% {
            opacity: 1;
        }

        50%,
        100% {
            opacity: 0;
        }
    }

    #get-product {
        display: inline-block;
        min-width: 300px;
        text-align: center;
    }

    /* VERSION 3: CONVEYOR BELT */
    .conveyor-container {
        width: 100%;
        max-width: 800px;
        overflow: hidden;
        background: linear-gradient(to bottom, #e2e8f0, #cbd5e1);
        border: 3px solid #94a3b8;
        border-radius: 12px;
        padding: 20px 0;
        position: relative;
    }

    .conveyor-belt {
        display: flex;
        gap: 2rem;
        animation: conveyorMove 20s linear infinite;
        will-change: transform;
    }

    .conveyor-item {
        background: white;
        padding: 15px 30px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 1.3rem;
        color: #01aade;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        flex-shrink: 0;
    }

    @keyframes conveyorMove {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* VERSION 4: MOUSE SPOTLIGHT */
    .spotlight-container {
        position: relative;
        background: #0f172a;
        padding: 60px 40px;
        border-radius: 16px;
        overflow: hidden;
        cursor: none;
    }

    .spotlight-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 600px;
        margin: 0 auto;
    }

    .spotlight-item {
        background: rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.2);
        font-weight: 700;
        text-align: center;
        transition: all 0.3s ease;
    }

    .spotlight-item.revealed {
        color: #01aade;
        background: rgba(1, 170, 222, 0.1);
        transform: scale(1.05);
    }

    .spotlight-circle {
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(1, 170, 222, 0.3) 0%, transparent 70%);
        pointer-events: none;
        transform: translate(-50%, -50%);
        transition: opacity 0.3s;
    }

    /* VERSION 5: PAIN â†’ SOLUTION */
    .pain-solution {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .pain-text {
        animation: fadeOut 3s ease-in-out infinite;
    }

    @keyframes fadeOut {

        0%,
        40% {
            opacity: 1;
        }

        50% {
            opacity: 0.3;
        }

        60%,
        100% {
            opacity: 1;
        }
    }

    /* VERSION 6: NEED IT? WE PRINT IT */
    #need-it-product {
        display: inline-block;
        min-width: 200px;
        text-align: center;
    }

    /* VERSION 7: STAMP EFFECT */
    .stamp-container {
        position: relative;
        padding: 40px;
    }

    .stamp-text {
        font-size: 3rem;
        font-weight: 900;
        color: #dc2626;
        transform: rotate(-5deg);
        border: 6px solid #dc2626;
        padding: 20px 40px;
        display: inline-block;
        position: relative;
        z-index: 2;
        animation: stampDown 2s ease-in-out infinite;
    }

    @keyframes stampDown {

        0%,
        90% {
            transform: rotate(-5deg) translateY(0);
            opacity: 1;
        }

        95% {
            transform: rotate(-5deg) translateY(-20px);
            opacity: 0.5;
        }

        100% {
            transform: rotate(-5deg) translateY(0);
            opacity: 1;
        }
    }

    .ink-splatter {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
        z-index: 1;
        animation: splatterPulse 2s ease-in-out infinite;
    }

    @keyframes splatterPulse {

        0%,
        90% {
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 0;
        }

        95% {
            transform: translate(-50%, -50%) scale(1.2);
            opacity: 0.6;
        }

        100% {
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 0;
        }
    }

    /* VERSION 8: STACKED CARDS */
    .card-stack-container {
        position: relative;
        height: 200px;
        width: 400px;
        margin: 0 auto;
    }

    .card-stack-container .product-card {
        position: absolute;
        width: 100%;
        background: white;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        font-size: 1.5rem;
        font-weight: 700;
        color: #01aade;
        text-align: center;
        transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .card-stack-container .product-card:hover {
        transform: rotate(0deg) translateY(0) !important;
        z-index: 10;
    }

    /* VERSION 9: PARTICLE EXPLOSION (Canvas) */
    .particle-container {
        text-align: center;
    }

    #particle-canvas {
        border-radius: 12px;
        background: #0f172a;
    }

    /* VERSION 10: TIMELINE */
    .timeline-container {
        text-align: center;
    }

    .timeline-item {
        font-size: 2rem;
        font-weight: 700;
        color: #1e293b;
    }

    .timeline-day {
        color: #64748b;
        margin-right: 10px;
    }

    .timeline-product {
        color: #01aade;
        font-weight: 800;
    }

    /* VERSION 11: LOAD BAR */
    .loadbar-container {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .progress-bar-wrapper {
        position: relative;
        margin-bottom: 20px;
    }

    .progress-bar {
        width: 100%;
        height: 40px;
        background: #e2e8f0;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #01aade, #0ea5d4, #01aade);
        background-size: 200% 100%;
        animation: progressShine 2s linear infinite;
        transition: width 0.3s ease;
        border-radius: 20px;
    }

    @keyframes progressShine {
        0% {
            background-position: 200% 0;
        }

        100% {
            background-position: -200% 0;
        }
    }

    .progress-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: 800;
        font-size: 1.2rem;
        color: #1e293b;
        z-index: 10;
    }

    .loaded-products {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-top: 20px;
    }

    .loaded-product-tag {
        background: #01aade;
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9rem;
        animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    @keyframes popIn {
        0% {
            transform: scale(0);
            opacity: 0;
        }

        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    /* VERSION 12: VENDING MACHINE */
    .vending-machine {
        max-width: 600px;
        margin: 0 auto;
    }

    .vending-window {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border: 4px solid #475569;
        border-radius: 16px;
        padding: 30px;
        position: relative;
        overflow: hidden;
    }

    .vending-slots {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .vending-slot {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 8px;
        color: #94a3b8;
        font-weight: 600;
        text-align: center;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .vending-slot.selected {
        background: #01aade;
        color: white;
        transform: scale(0.95);
    }

    .vending-dispenser {
        height: 80px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .dropped-item {
        background: white;
        color: #01aade;
        padding: 15px 30px;
        border-radius: 8px;
        font-weight: 800;
        font-size: 1.3rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        animation: itemDrop 2s ease-in-out infinite;
    }

    @keyframes itemDrop {
        0% {
            transform: translateY(-200px);
            opacity: 0;
        }

        20% {
            transform: translateY(0);
            opacity: 1;
        }

        80% {
            transform: translateY(0);
            opacity: 1;
        }

        100% {
            transform: translateY(-200px);
            opacity: 0;
        }
    }

    /* VERSION 13: PARTICLE BURST ENHANCED */
    .particle-burst-container {
        position: relative;
        text-align: center;
    }

    .burst-center {
        position: relative;
        z-index: 10;
        margin-bottom: 20px;
    }

    .burst-word {
        font-size: 3rem;
        font-weight: 900;
        color: #01aade;
        animation: burstPulse 2s ease-in-out infinite;
    }

    @keyframes burstPulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }
    }

    .burst-svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .burst-particle {
        fill: #01aade;
        opacity: 0.7;
        animation: burstParticle 3s ease-out infinite;
    }

    @keyframes burstParticle {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 0.7;
        }

        100% {
            transform: translate(var(--tx), var(--ty)) scale(0);
            opacity: 0;
        }
    }
