* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif
}

html,
body {
    width: 100%;
    height: 100%
}

/* Splash Screen Opening Animation - Premium Version */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #2d0066 0%, #14104e 100%);
    overflow: hidden;
}

.splash-screen::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(125, 5, 189, 0.2) 0%, transparent 70%);
    animation: splashGlowMove 8s ease-in-out infinite alternate;
}

.splash-logo {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.3));
}

.splash-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: logoEntrance 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Elegant loading bar */
.splash-loader {
    position: absolute;
    bottom: 25%;
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
}

.splash-loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.8);
    animation: fillLoader 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.splash-text {
    position: absolute;
    bottom: 20%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    animation: fadeInText 0.8s ease-in 0.5s both;
    z-index: 2;
}

/* Animations */
@keyframes logoEntrance {
    0% {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
        filter: blur(10px);
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes splashGlowMove {
    0% {
        transform: translate(-5%, -5%) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

@keyframes fillLoader {
    0% {
        width: 0%;
    }

    30% {
        width: 40%;
    }

    60% {
        width: 45%;
    }

    100% {
        width: 100%;
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splashExit {
    0% {
        opacity: 1;
        filter: blur(0);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
        filter: blur(10px);
    }
}

.splash-screen.fade-out {
    animation: splashExit 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: none;
}

.container-main {
    width: 100%;
    height: 100vh;
    position: relative
}

.cuadrados {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.cuadrados .cuadrado1 {
    width: 40%;
    height: 200vh;
    background-color: #7c3aed8c;
    position: absolute;
    top: -36rem;
    left: -3rem;
    transform: rotate(49deg)
}

.cuadrados .cuadrado2 {
    width: 40%;
    height: 114vh;
    background-color: #7c3aed8c;
    position: absolute;
    top: -31rem;
    left: -6rem;
    transform: rotate(49deg)
}

.imagenPrincipalDiv {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex
}

.imagenPrincipalDiv::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #14104ee0;
    position: absolute
}

.imagenPrincipal {
    width: 100%;
    height: 100%;
    margin: auto
}

.text-main {
    width: 100%;
    height: 100%;
    display: flex
}

.text-front-h2 {
    margin: auto;
    font-size: 9.8rem;
    width: 31rem;
    line-height: 10.5rem;
    font-weight: 500;
    color: white;
    top: 0rem;
    border-bottom: .15rem solid #a78bfa;
    padding-bottom: 2rem;
    position: relative;
    left: 4rem;
    text-align: left
}

.text-rear-h1 {
    color: transparent;
    -webkit-text-stroke-width: .15rem;
    font-weight: 400;
    -webkit-text-stroke-color: #a78bfa;
    position: absolute;
    top: 5rem;
    right: -24rem;
    transform: rotate(90deg);
    font-size: 10rem;
    line-height: 10.4rem;
    width: 30rem;
}

.rear-letter {
    display: inline-block;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: transform, opacity;
    animation-name: fadeUpBounce;
    animation-duration: var(--letter-cycle, 5000ms);
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(.22, .88, .28, 1);
    animation-iteration-count: infinite
}

.text-front-h2 .letter {
    display: inline-block;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: transform, opacity
}

.letter {
    animation-name: fadeUpBounce;
    animation-duration: var(--letter-cycle, 5000ms);
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(.22, .88, .28, 1);
    animation-iteration-count: infinite;
    animation-direction: normal
}

.color-white {
    color: white !important;
}

/* Heartbeat group: synchronized heartbeat sequence for the whole heading */
.hb-group {
    display: inline-block;
    transform-origin: center center;
    will-change: transform;
    animation-name: heartSequence;
    animation-duration: var(--hb-cycle, 9450ms);
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out
}

.hb-group .letter {
    animation: none !important
}

/* disable per-letter anim when group heartbeat active */

@keyframes heartSequence {
    0% {
        transform: scale(1)
    }

    2% {
        transform: scale(1.06)
    }

    /* 1st beat up (subtle) */
    6% {
        transform: scale(1)
    }

    8% {
        transform: scale(1.07)
    }

    /* 2nd beat up (subtle) */
    12% {
        transform: scale(1)
    }

    /* long sleep ~4s (approx 12% -> 48% of ~9.45s) */
    48% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.075)
    }

    /* single heartbeat (subtle) */
    54% {
        transform: scale(1)
    }

    /* long sleep ~5s (rest of cycle) */
    100% {
        transform: scale(1)
    }
}

@keyframes fadeUpBounce {

    /* Idle for most of the cycle, then a gentle smooth pulse */
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1)
    }

    75% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1)
    }

    84% {
        opacity: 1;
        transform: translate3d(0, -6px, 0) scale(1.015)
    }

    90% {
        opacity: 1;
        transform: translate3d(0, 2.5px, 0) scale(0.997)
    }

    95% {
        opacity: 1;
        transform: translate3d(0, -1px, 0) scale(1.003)
    }

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

.topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0)
}

.topbar-logo img {
    height: 1.8rem;
    width: auto
}

.topbar-menu {
    display: flex;
    gap: 2rem
}

.topbar-menu a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 300;
    transition: color .3s;
    letter-spacing: .06rem
}

.topbar-menu a:hover {
    color: #a78bfa
}

/* Mobile topbar and menu */
.mobile-topbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4.4rem;
    padding: 0 1rem;
    align-items: center;
    justify-content: space-between;
    z-index: 60;
    background: transparent;
    transition: background-color .45s cubic-bezier(.2, .9, .2, 1), box-shadow .35s
}

.mobile-topbar.colored {
    background: linear-gradient(180deg, rgba(20, 16, 78, .95), rgba(20, 16, 78, .98));
    box-shadow: 0 6px 18px rgba(0, 0, 0, .45)
}

.mobile-topbar .hamburger {
    background: transparent;
    border: 0;
    padding: .4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 44px;
    height: 44px
}

/* Hamburger 3-bars that morph to X */
.hamburger-icon {
    position: relative;
    width: 22px;
    height: 16px;
    display: inline-block
}

.hamburger-icon span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: white;
    border-radius: 2px;
    display: block;
    transform-origin: center;
    transition: transform .35s cubic-bezier(.2, .9, .2, 1), opacity .25s, top .35s
}

.hamburger-icon span.top {
    top: 0
}

.hamburger-icon span.mid {
    top: 7px
}

.hamburger-icon span.bot {
    top: 14px
}

/* open state */
.mobile-topbar.open .hamburger-icon span.top {
    transform: translateY(7px) rotate(45deg)
}

.mobile-topbar.open .hamburger-icon span.mid {
    opacity: 0;
    transform: scaleX(.8)
}

.mobile-topbar.open .hamburger-icon span.bot {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-topbar .mobile-logo img {
    height: 1.6rem;
    transition: opacity .3s
}

/* slide-down menu */
.mobile-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    transform: translateY(-110%);
    background: rgba(3, 3, 5, 0.92);
    color: white;
    z-index: 55;
    transition: transform .35s cubic-bezier(.2, .9, .2, 1);
    padding-top: 4.4rem;
    height: 100%;
}

.mobile-menu.open {
    transform: translateY(0)
}

.mobile-menu .menu-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .38s cubic-bezier(.2, .9, .2, 1), transform .38s cubic-bezier(.2, .9, .2, 1)
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.mobile-menu .close-btn {
    position: absolute;
    top: .6rem;
    right: 1rem;
    background: transparent;
    border: 0;
    color: white;
    font-size: 1.2rem
}

/* when menu opens, animate inner content in (fade + slight slide) */
.mobile-menu.open .menu-inner {
    opacity: 1;
    transform: translateY(0)
}

.subtitle {
    color: #fffffff2;
    font-size: .8rem;
    font-weight: 300;
    letter-spacing: .05rem;
    margin-left: 5rem;
    margin-top: 1rem
}

.first-container {
    padding-bottom: 14rem;
    z-index: 9;
    background-color: #14104e;
    position: relative;
    overflow: hidden
}

.first-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15rem;
    background: linear-gradient(to bottom, rgba(20, 16, 78, 0) 0%, rgba(20, 16, 78, 0.3) 30%, rgba(20, 16, 78, 0.7) 60%, rgba(20, 16, 78, 1) 100%);
    z-index: 10;
    pointer-events: none
}

.second-container {
    background-color: #14104e
}

.btn-primary {
    background-color: rgb(139, 92, 246) !important;
    border-color: rgb(139, 92, 246) !important;
}

.second-container .title::after {
    content: '';
    width: 9.5rem;
    height: 0.5rem;
    margin-top: 0.5rem;
    margin-left: 13.5rem;
    background-color: #8b5cf6;
    position: absolute;
}

body {
    background-color: #14104e;
    position: relative;
    overflow-x: hidden;
    --spot1-x: 20%;
    --spot1-y: 30%;
    --spot1-color: rgba(139, 92, 246, 0.8);
    --spot2-x: 80%;
    --spot2-y: 70%;
    --spot2-color: rgba(99, 102, 241, 0.7);
}

/* Animated background with moving color spots - Brighter */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle 500px at var(--spot1-x) var(--spot1-y),
            var(--spot1-color) 0%,
            transparent 65%),
        radial-gradient(circle 450px at var(--spot2-x) var(--spot2-y),
            var(--spot2-color) 0%,
            transparent 65%),
        #14104e;
}

/* Glass morphism effect for all sections - Brighter */
.glass-section {
    background: rgba(20, 16, 78, 0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.3);
    position: relative;
    z-index: 1;
}

.text-container {
    display: flex;
    margin: auto;
    position: relative;
    flex-direction: column
}

.helper-widget {
    position: fixed;
    left: -5rem;
    bottom: 7rem;
    z-index: 120;
    cursor: pointer;
    padding-top: 0.6rem !important;
    padding: 0.8rem 2rem;
    user-select: none;
    transform: rotate(90deg);
    background: rgba(20, 16, 78, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.6);
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    transition: border-radius .35s, box-shadow .35s, background .3s;
}

.helper-widget:hover {
    background: rgba(60, 40, 110, 0.9);
}

.helper-widget .chip {
    color: white;
    font-weight: 300;
    letter-spacing: 0.07rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
    padding-bottom: 0.5rem;
    padding-top: 0rem;
}

.helper-widget:hover {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .45);
}

.helper-widget:hover .chip {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .45)
}

/* Fullscreen modal */
.full-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(3, 3, 5, 0.92);
    z-index: 200;
    overflow: auto
}

.full-modal.open {
    display: flex
}

.full-modal .modal-inner {
    color: white;
    max-width: 1100px;
    padding: 2rem;
    border-radius: 10px;
    text-align: center
}

.full-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: 0;
    color: white;
    font-size: 1.6rem
}

.text-front-div {
    margin-top: 13rem;
}

.text-rear-h1 {
    color: transparent;
    -webkit-text-stroke-width: .15rem;
    font-weight: 400;
    -webkit-text-stroke-color: #a78bfa;
    position: absolute;
    top: 11rem;
    right: 0rem;
    transform: rotate(90deg);
    font-size: 10rem;
    line-height: 10.4rem;
    width: 30rem;
}

.mobile-only {
    display: none !important;
}

.cuadrado-acerca1 {
    width: 12rem;
    height: 10rem;
    background-color: #8b5cf6;
    position: absolute;
    top: -1.5rem;
    left: -0.8rem;
    transform: skew(8deg, 6deg);
}

.cuadrado-acerca2 {
    width: 12rem;
    height: 10rem;
    background-color: #8b5cf6;
    position: absolute;
    top: -1.2rem;
    right: -0.6rem;
    transform: skew(16deg, -3deg);
}

.third-cuadrado1 {
    position: absolute;
    width: 18rem;
    height: 11rem;
    background-color: #5113cccf;
    top: 4rem;
    left: 4rem;
    transform: skewX(10deg);
}

.third-cuadrado2 {
    position: absolute;
    width: 18rem;
    height: 12rem;
    background-color: #2d0b71c7;
    bottom: 5rem;
    right: 3rem;
    transform: skewX(10deg);
}

.form-control {
    background-color: rgba(20, 16, 78, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    border: 0.1rem solid rgba(167, 139, 250, 0.5);
    padding: 0.7rem;
    font-weight: 100;
}

.form-control::-webkit-input-placeholder {
    color: #d3d3d38b;
}

.form-control:-moz-placeholder {
    color: #d3d3d388;
}

.form-control::-moz-placeholder {
    color: #d3d3d388;
}

.form-control:-ms-input-placeholder {
    color: #d3d3d388;
}

.form-control:focus {
    color: white !important;
    background-color: rgba(20, 16, 78, 0.85) !important;
    border: 0.1rem solid rgba(167, 139, 250, 0.7) !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.3);
}

/* Middle container: streamer CTA */
.middle-container {
    background: rgba(20, 16, 78, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(167, 139, 250, 0.3);
    border-bottom: 1px solid rgba(167, 139, 250, 0.3);
}

.middle-cta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 1rem
}

.cta-chip {
    background: linear-gradient(90deg, #a78bfa, #8b5cf6);
    padding: .6rem 1rem;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    letter-spacing: .04rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, .3)
}

.cta-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 700
}

.cta-sub {
    color: #cfc7ffcc;
    font-size: 0.95rem
}

.cta-actions {
    display: flex;
    gap: .75rem;
    align-items: center
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .12);
    color: white;
    padding: .6rem .9rem;
    border-radius: 10px
}

.btn-primary-cta {
    background: linear-gradient(90deg, #a78bfa, #8b5cf6);
    border: 0;
    padding: .7rem 1rem;
    color: white;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(139, 92, 246, .4)
}

.benefits {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    justify-content: center
}

.benefit {
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
    border-radius: 12px;
    padding: 1rem 1.25rem;
    min-width: 11rem;
    text-align: center
}

.benefit h4 {
    color: white;
    margin-bottom: .25rem;
    font-size: 1rem
}

.benefit p {
    color: #bfb3ffcc;
    font-size: .85rem;
    margin: 0
}


/* Modernized streamer CTA styles */
.modern-cta {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 1rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 12px
}

.modern-cta .cta-copy {
    flex: 1;
    min-width: 0
}

.modern-cta .cta-chip {
    display: inline-block;
    background: transparent;
    color: #cfc7ff;
    font-weight: 600;
    padding: .25rem .6rem;
    border-radius: 8px;
    border: 1px solid rgba(127, 82, 255, 0.12);
    margin-bottom: .6rem
}

.modern-cta .cta-title {
    font-size: 1.6rem;
    margin: 0 0 .5rem;
    color: white;
    font-weight: 700
}

.modern-cta .cta-sub {
    color: #d7cfffcc;
    margin: 0 0 .6rem;
    font-size: 1rem;
    line-height: 1.4
}

.modern-cta .cta-actions {
    display: flex;
    gap: .75rem
}

.modern-cta .btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: white;
    padding: .6rem .9rem;
    border-radius: 8px
}

.modern-cta .btn-primary-cta {
    padding: .65rem 1rem;
    border-radius: 8px
}

.cta-features {
    max-width: 1100px;
    margin: 1rem auto 0;
    display: flex;
    gap: 1rem;
    justify-content: space-between
}

/* Modern Feature Cards - Card Design like images - Brighter colors */
.feature-card {
    background: rgba(20, 16, 78, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(167, 139, 250, 0.5);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 240px;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(167, 139, 250, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(167, 139, 250, 0.7);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4), 0 0 30px rgba(196, 181, 253, 0.3);
    background: rgba(20, 16, 78, 0.75);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.5) 0%, rgba(139, 92, 246, 0.6) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(167, 139, 250, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #a78bfa;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.5) 0%, rgba(139, 92, 246, 0.6) 100%);
    border-color: rgba(167, 139, 250, 0.7);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(167, 139, 250, 0.3);
}

.feature-card-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.02rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-card-title {
    color: #c4b5fd;
}

.feature-card-description {
    color: #e9d5ff;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.01rem;
}

/* Old feature-item styles for compatibility */
.feature-item {
    flex: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.008));
    padding: 1rem;
    border-radius: 10px;
    min-height: 68px;
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.feature-item strong {
    color: white
}

.feature-item span {
    color: #d7cfffcc;
    font-size: .95rem
}

.streamer-illustration {
    position: absolute;
    right: 0rem;
    bottom: 0rem;
    width: 19rem;
    z-index: 0;
    opacity: 0.9;
}

/* Sticky mockup behavior inside features container */
.features-mockup {
    position: sticky;
    top: 6rem;
    align-self: flex-start;
    z-index: 2;
}

.features-mockup img {
    width: 100%;
    max-width: 60rem;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(139, 92, 246, 0.5));
}

@media (max-width:768px) {
    .features-container .row {
        display: block;
        position: relative;
    }

    .features-container .row>[class*='col-'] {
        width: 100%;
        max-width: 100%;
    }

    .features-mockup-wrapper {
        height: 80rem;
        position: relative;
        margin-bottom: 0;
        z-index: 3;
        margin-top: 0;
        padding-bottom: 1rem;
    }

    .features-mockup {
        position: sticky;
        top: 11rem;
        margin: 0 auto;
        margin-top: -4rem;
        max-width: 85vw;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.15s ease-out;
        will-change: transform;
        z-index: 3;
        padding-bottom: 3rem;
    }

    .features-mockup img {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
    }

    /* La columna de tarjetas empieza después del mockup */
    .features-container .row>.col-lg-8.col-md-12 {
        position: relative;
        z-index: 1;
        margin-top: -68rem;
        padding-top: 68rem;
    }

    .features-grid {
        position: relative;
        z-index: 1;
        margin-top: 0;
        row-gap: 2rem !important;
    }

    .features-grid::before {
        display: none;
    }
}

/* Ensure features container works properly - Brighter */
.features-container {
    position: relative;
    overflow: visible;
    padding: 4rem 2rem !important;
    background: rgba(20, 16, 78, 0.65) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(167, 139, 250, 0.4);
    border-bottom: 1px solid rgba(167, 139, 250, 0.4);
}

/* New Layout for Scrolling Features */
.new-feature-item {
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    border-left: 3px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    opacity: 1;
}

.new-feature-item:last-child {
    margin-bottom: 0;
}

/* Mobile: Scroll Spy Behavior */
@media (max-width: 991px) {
    .new-feature-item {
        opacity: 0.3;
    }

    .new-feature-item.active {
        opacity: 1;
        border-left: 3px solid #a78bfa;
        padding-left: 2.5rem;
    }
}

/* Desktop: Hover Behavior */
@media (min-width: 992px) {
    .new-feature-item {
        opacity: 0.6;
    }

    .new-feature-item:hover {
        opacity: 1;
        transform: translateY(-5px);
    }

    .new-feature-item.active {
        border-left: none;
        padding-left: 1.5rem;
    }
}

.new-feature-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.new-feature-desc {
    color: #e9d5ff;
    font-size: 1.1rem;
    font-weight: 300;
}

.new-feature-content-area {
    margin-top: 1rem;
}

/* New Section Elements - Requested by User */
.div-main {
    width: 100%;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.3rem;
    border: 1px solid transparent;
    background: linear-gradient(rgb(20 30 103 / 67%), rgb(21 29 89 / 80%)) padding-box,
        linear-gradient(311deg, rgb(255 255 255 / 9%), rgb(255 255 255 / 0%), rgb(255 255 255 / 10%)) border-box;
}

/* Matchmaking Ripple Button */
.btn-ripple {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    font-size: 0.7rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin: 0.5rem auto;
    display: block;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-ripple:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}

.btn-ripple:active {
    transform: translateY(0);
}

.btn-ripple .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Auto-Ripple Animation for Demo */
.btn-ripple.auto-press {
    animation: btn-press-sequence 3s infinite;
}

.btn-ripple.auto-press .ripple-effect-auto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 200%;
    padding-bottom: 200%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: ripple-auto-anim 3s infinite;
    pointer-events: none;
}

@keyframes btn-press-sequence {

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

    50% {
        transform: scale(0.95);
    }

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

@keyframes ripple-auto-anim {

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

    51% {
        opacity: 1;
    }

    70% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }

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

/* Game Logos Infinite Scroll Section - Brighter */
.game-logos-section {
    background: rgba(20, 16, 78, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(167, 139, 250, 0.35);
    border-bottom: 1px solid rgba(167, 139, 250, 0.35);
}

.game-logos-section::before,
.game-logos-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    pointer-events: none;
    z-index: 10;
}

.game-logos-section::before {
    left: 0;
    background: linear-gradient(90deg, rgba(20, 16, 78, 1) 0%, rgba(20, 16, 78, 0) 100%);
}

.game-logos-section::after {
    right: 0;
    background: linear-gradient(270deg, rgba(20, 16, 78, 1) 0%, rgba(20, 16, 78, 0) 100%);
}

.game-logos-title {
    text-align: center;
    margin-bottom: 3rem;
}

.game-logos-title h2 {
    color: white;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.game-logos-title p {
    color: #e9d5ff;
    font-size: 1rem;
    font-weight: 300;
}

.logos-track-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.logos-track-right {
    animation-name: scrollRight;
    animation-duration: 40s;
}

.logos-track-left {
    animation-name: scrollLeft;
    animation-duration: 45s;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 16, 78, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(167, 139, 250, 0.4);
    border-radius: 12px;
    padding: 0.6rem;
    transition: transform 0.3s ease, filter 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    filter: grayscale(1) opacity(0.6);
}

.logo-item:hover {
    filter: grayscale(0) opacity(1);
    border-color: rgba(167, 139, 250, 0.6);
    background: rgba(20, 16, 78, 0.85);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.6), 0 0 40px rgba(196, 181, 253, 0.5);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

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

    100% {
        transform: translateX(calc(-120px * 8 - 3rem * 8));
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(calc(-120px * 8 - 3rem * 8));
    }

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

@media (max-width: 768px) {
    .game-logos-section {
        padding: 3rem 0;
    }

    .game-logos-section::before,
    .game-logos-section::after {
        width: 80px;
    }

    /* Optimizar animaciones en mobile para evitar lag */
    .logos-track {
        will-change: auto;
        transform: translateZ(0);
    }

    .logos-track-right {
        animation-duration: 60s;
    }

    .logos-track-left {
        animation-duration: 65s;
    }
}

/* Mock Games Section - Tarjetas vacías sin logos */
.mock-games-section {
    background: rgba(20, 16, 78, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(167, 139, 250, 0.35);
    border-bottom: 1px solid rgba(167, 139, 250, 0.35);
}

.mock-games-section::before,
.mock-games-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    pointer-events: none;
    z-index: 10;
}

.mock-games-section::before {
    left: 0;
    background: linear-gradient(90deg, rgba(20, 16, 78, 1) 0%, rgba(20, 16, 78, 0) 100%);
}

.mock-games-section::after {
    right: 0;
    background: linear-gradient(270deg, rgba(20, 16, 78, 1) 0%, rgba(20, 16, 78, 0) 100%);
}

.mock-games-title {
    text-align: center;
    margin-bottom: 3rem;
}

.mock-games-title h2 {
    color: white;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.mock-games-title p {
    color: #e9d5ff;
    font-size: 1rem;
    font-weight: 300;
}

.mock-cards-track-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.mock-cards-track-right {
    animation-name: scrollRightMock;
    animation-duration: 40s;
}

.mock-cards-track-left {
    animation-name: scrollLeftMock;
    animation-duration: 45s;
}

.mock-cards-track:hover {
    animation-play-state: paused;
}

.mock-card-item {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 16, 78, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(167, 139, 250, 0.4);
    border-radius: 12px;
    padding: 0.6rem;
    transition: transform 0.3s ease, filter 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    opacity: 0.6;
}

.mock-card-item:hover {
    opacity: 1;
    border-color: rgba(167, 139, 250, 0.6);
    background: rgba(20, 16, 78, 0.85);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.6), 0 0 40px rgba(196, 181, 253, 0.5);
}

.mock-card-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-card-placeholder i {
    font-size: 2rem;
    color: rgba(167, 139, 250, 0.6);
    opacity: 0.7;
}

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

    100% {
        transform: translateX(calc(-120px * 10 - 3rem * 10));
    }
}

@keyframes scrollLeftMock {
    0% {
        transform: translateX(calc(-120px * 10 - 3rem * 10));
    }

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

@media (max-width: 768px) {
    .mock-games-section {
        padding: 3rem 0;
    }

    .mock-games-section::before,
    .mock-games-section::after {
        width: 80px;
    }

    .mock-cards-track {
        will-change: auto;
        transform: translateZ(0);
    }

    .mock-cards-track-right {
        animation-duration: 60s;
    }

    .mock-cards-track-left {
        animation-duration: 65s;
    }
}

.logo-item {
    width: 100px;
    height: 70px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}


/* Reveal animation for feature cards */
.features-grid {
    display: flex;
    flex-wrap: wrap
}

.features-grid .col-12,
.features-grid .col-md-6 {
    display: flex
}

.features-grid .feature-card {
    opacity: 0;
    transform: translateY(24px) scale(0.95);
    transition: transform .6s cubic-bezier(.2, .9, .2, 1), opacity .6s, box-shadow .4s ease
}

.features-grid .feature-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1)
}

/* Also keep old animation for backwards compatibility */
.features-grid .feature-item {
    opacity: 0;
    transform: translateY(18px);
    transition: transform .6s cubic-bezier(.2, .9, .2, 1), opacity .6s
}

.features-grid .feature-item.revealed {
    opacity: 1;
    transform: translateY(0)
}

/* Interactive Journey Timeline Section Styles - Bright Color Palette */
.experience-section {
    position: relative;
    background: linear-gradient(180deg, rgba(167, 139, 250, 0.15) 0%, rgba(139, 92, 246, 0.2) 50%, rgba(196, 181, 253, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.journey-container {
    position: relative;
    padding: 2rem 0;
}

/* Animated central line - Brighter colors */
.journey-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(167, 139, 250, 0.5) 10%,
            rgba(139, 92, 246, 0.8) 50%,
            rgba(167, 139, 250, 0.5) 90%,
            transparent 100%);
    transform: translateX(-50%);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

.journey-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, #c4b5fd 0%, transparent 100%);
    animation: journeyFlow 3s ease-in-out infinite;
}

@keyframes journeyFlow {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(calc(100vh + 100px));
        opacity: 0;
    }
}

/* Journey steps - No cards, clean design */
.journey-step {
    position: relative;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-step.revealed {
    opacity: 1;
    transform: translateY(0);
}

.step-left .step-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: calc(50% + 4rem);
    gap: 2rem;
}

.step-right .step-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: calc(50% + 4rem);
    flex-direction: row-reverse;
    gap: 2rem;
}

.step-center .step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
}

/* Step number badge - Brighter */
.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 0 0 8px rgba(167, 139, 250, 0.3),
        0 8px 32px rgba(139, 92, 246, 0.5);
    z-index: 10;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

.journey-step.revealed .step-number {
    opacity: 1;
    visibility: visible;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(167, 139, 250, 0.3),
            0 8px 32px rgba(139, 92, 246, 0.5);
        transform: translateX(-50%) scale(1);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(167, 139, 250, 0.4),
            0 12px 40px rgba(139, 92, 246, 0.7);
        transform: translateX(-50%) scale(1.08);
    }
}

/* Large icon (no card) - Direct display */
.step-icon-large {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #c4b5fd;
    transition: all 0.5s ease;
    filter: drop-shadow(0 8px 24px rgba(167, 139, 250, 0.4));
}

.journey-step.revealed .step-icon-large {
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {

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

    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

.step-icon-large:hover {
    transform: scale(1.2) rotate(10deg);
    color: #a78bfa;
    filter: drop-shadow(0 12px 32px rgba(167, 139, 250, 0.6));
}

/* Step info content - Cleaner, no background */
.step-info {
    max-width: 450px;
}

.step-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #f5f3ff;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

.step-info p {
    font-size: 1.05rem;
    color: #e9d5ff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Feature items - No tags, list style */
.step-features {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ddd6fe;
    font-size: 1rem;
}

.feature-item i {
    color: #a78bfa;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Legend final step - Purple theme (app colors) */
.legend-visual {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 2rem auto;
}

.legend-circle {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.4), rgba(139, 92, 246, 0.5));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(167, 139, 250, 0.8);
    box-shadow: 0 0 0 12px rgba(167, 139, 250, 0.15),
        0 20px 60px rgba(139, 92, 246, 0.5);
    animation: legendPulse 3s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.legend-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.5) 0%, transparent 70%);
    animation: glowPulse 2s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes legendPulse {

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

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

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

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .journey-line {
        left: 35px;
    }

    .step-left .step-content,
    .step-right .step-content {
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 120px;
        padding-right: 2rem;
        gap: 1.5rem;
    }

    .step-number {
        left: 35px;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .step-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .journey-container {
        margin-left: -2.4rem;
    }

    .journey-line {
        left: 0;
        transform: none;
        width: 0.5rem;
    }

    .step-number {
        display: none !important;
    }

    .step-left .step-content,
    .step-right .step-content {
        padding-left: 1rem;
    }

    .step-center .step-content {
        padding-left: 2rem;
        padding-right: 0;
    }

    .imagenPrincipal {
        object-fit: cover;
        object-position: -48rem center;
    }

    .journey-step {
        margin-bottom: 4rem;
    }

    .journey-step:not(.step-center) {
        margin-left: 2.4rem;
    }

    .step-info h3 {
        font-size: 1.6rem;
    }

    .step-info p {
        font-size: 1rem;
    }

    .step-icon-large {
        display: none;
    }

    .step-icon-large i {
        display: none;
    }

    .legend-visual {
        width: 180px;
        height: 180px;
    }

    .legend-circle i {
        font-size: 3.5rem !important;
    }
}

@media (min-width:1440px) {
    .logos-track-container {
        margin-left: 15rem !important;
    }
}

/* Card stack styles */
.card-stack {
    width: 220px;
    height: 390px;
    display: block
}

.card-stack .stack-card {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 220px;
    height: 390px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: transform .75s cubic-bezier(.2, .9, .2, 1), opacity .6s
}

.card-stack .stack-card {
    touch-action: none;
    cursor: grab
}

.card-stack .stack-card.dragging {
    transition: none;
    cursor: grabbing
}

/* utility: disable transitions/animations temporarily */
.card-stack .stack-card.no-anim {
    transition: none !important;
    animation: none !important
}

/* initial back-of-stack positions: lower on the screen, varied rotations and scales for a natural stack
    Use CSS variables so JavaScript can set per-card random offsets without fighting inline transform styles.
    --card-tx / --card-ty / --card-rot are used to compose the final transform. When a card becomes top
    we clear these variables so the nth-child transform rules take over. */
.card-stack .stack-card {
    --card-tx: 0px;
    --card-ty: 34vh;
    --card-rot: -3deg;
    transform-origin: center bottom
}

.card-stack .stack-card:nth-child(1) {
    z-index: 30;
    /* front-of-stack base values */
}

.card-stack .stack-card:nth-child(2) {
    z-index: 20;
    top: 12px
}

.card-stack .stack-card:nth-child(3) {
    z-index: 10;
    top: 24px
}

.card-stack .stack-card {
    transform: translateX(var(--card-tx)) translateY(var(--card-ty)) rotate(var(--card-rot)) scale(.95)
}

/* revealed state returns card near center but keeps a subtle tilt for dynamism */
.card-stack .stack-card:nth-child(1).revealed {
    transform: translateY(0) rotate(-4deg) scale(1);
    opacity: 1
}

.card-stack .stack-card:nth-child(2).revealed {
    transform: translateY(8px) rotate(3deg) scale(1);
    opacity: 1
}

.card-stack .stack-card:nth-child(3).revealed {
    transform: translateY(16px) rotate(-1deg) scale(1);
    opacity: 1
}

/* small idle float (very subtle) for revealed cards to feel alive */
@keyframes cardIdle {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-4px)
    }

    100% {
        transform: translateY(0)
    }
}

.card-stack .stack-card.revealed:not(.dragging) {
    animation: cardIdle 6s ease-in-out infinite;
    animation-delay: 0.2s
}

/* active/top card visual: subtle halftone dots fading downwards */
.card-stack .stack-card.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -6%;
    height: 28%;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, rgba(255, 255, 255, 0) 1.5px);
    background-size: 6px 6px;
    opacity: .95;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.02));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.02));
    transform-origin: center top;
}

/* Swiper card carousel styles for GamerUp - clean slide-based carousel */
.swiper-container-custom {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
}

.swiper-container-custom .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Card inside slide - maintains aspect ratio */
.swiper-container-custom .swiper-slide .card {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16/9;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Active slide - full opacity and slight lift */
.swiper-container-custom .swiper-slide-active .card {
    transform: scale(1);
    box-shadow: 0 28px 80px rgba(81, 19, 204, 0.4);
}

/* Slide info overlay */
.swiper-container-custom .swiper-slide .slide-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 70%);
    padding: 1.5rem;
    color: #fff;
    z-index: 10;
}

.swiper-container-custom .swiper-slide .slide-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.swiper-container-custom .swiper-slide .slide-info p {
    margin: 0;
    opacity: 0.92;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Navigation buttons */
.swiper-button-prev,
.swiper-button-next {
    color: #fff !important;
    background: rgba(81, 19, 204, 0.7);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(81, 19, 204, 0.95);
    transform: scale(1.1);
}

/* Pagination bullets */
.swiper-container-custom .swiper-pagination {
    bottom: 0 !important;
}

.swiper-container-custom .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.swiper-container-custom .swiper-pagination-bullet-active {
    opacity: 1;
    background: #5113cc;
    transform: scale(1.3);
}

/* Responsive adjustments */
@media (max-width:768px) {
    .swiper-container-custom {
        max-width: 100%;
        padding: 1rem 0;
    }

    .swiper-container-custom .swiper-slide .card {
        max-width: 90%;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 36px;
        height: 36px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 14px;
    }
}

@media (max-width:768px) {
    .card-stack {
        width: 160px;
        height: 284px
    }

    .card-stack .stack-card {
        width: 160px;
        height: 284px
    }
}

/* Swap state: when .features-container.swapped is present we nudge the mockup to the right */
.features-container.swapped .sticky-mockup {
    transform: translateX(110%);
    transition: transform .9s cubic-bezier(.2, .9, .2, 1)
}

.features-container.swapped .col-md-7 {
    transform: translateX(-6%);
    transition: transform .9s cubic-bezier(.2, .9, .2, 1)
}

@media (max-width: 768px) {
    .features-container.swapped .sticky-mockup {
        transform: none
    }

    .features-container.swapped .col-md-7 {
        transform: none
    }
}

.tienes-dudas {
    color: white;
    font-size: 2.8rem;
    margin-top: 0rem;
}

/* GamerUp Stats Section - Horizontal Design */
.gu-stats-section {
    width: 100%;
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, rgba(20, 16, 78, 0.95) 0%, rgba(15, 12, 58, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #f5f5f7;
    position: relative;
    border-top: 1px solid rgba(167, 139, 250, 0.15);
    border-bottom: 1px solid rgba(167, 139, 250, 0.15);
}

.gu-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gu-stats-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.gu-stats-intro {
    flex: 0 0 280px;
}

.gu-stats-intro-title {
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    line-height: 1.3;
    margin: 0;
    color: white;
    font-weight: 600;
}

.gu-highlight-text {
    color: #a78bfa;
    font-weight: 700;
}

.gu-stats-numbers {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.gu-stat-card {
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
}

.gu-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    border-radius: 2px;
}

.gu-stat-value {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.gu-stat-suffix {
    font-size: 2rem;
    margin-left: 0.1rem;
    color: #a78bfa;
}

.gu-stat-label {
    font-size: 0.75rem;
    color: #e9d5ff;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.gu-cta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(167, 139, 250, 0.2);
}

.gu-cta-question {
    font-size: 0.95rem;
    color: #e9d5ff;
    opacity: 0.85;
}

.gu-cta-action {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.gu-cta-btn {
    border: none;
    outline: none;
    padding: 0.85rem 2.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.gu-cta-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.gu-cta-btn:active {
    transform: translateY(0);
}

/* Responsivo para Stats Section */
@media (max-width: 1024px) {
    .gu-stats-container {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .gu-stats-intro {
        flex: 1;
    }

    .gu-stats-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .gu-stats-section {
        padding: 3rem 1.25rem;
    }

    .gu-stats-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gu-stat-value {
        font-size: 2.2rem;
    }

    .gu-cta-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .gu-cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gu-stats-intro-title {
        font-size: 1.4rem;
    }

    .gu-stats-numbers {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gu-stat-value {
        font-size: 2.5rem;
    }
}

/* Footer styles - modern and organized - Brighter */
.footer-wrapper {
    position: relative;
    padding-bottom: 19rem;
}

.main-footer {
    position: relative;
    z-index: 2;
    background: rgba(20, 16, 78, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 4rem 2rem 3rem;
    margin: 0;
    border-top: 1px solid rgba(139, 92, 246, 0.25);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.25);
}

.footer-brand {
    flex: 1;
    min-width: 280px;
}

.logo-footer {
    width: 12rem;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-tagline {
    color: #e9d5ff;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: rgba(139, 92, 246, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.footer-subscribe {
    flex: 1;
    min-width: 280px;
}

.footer-subscribe h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.subscribe-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.subscribe-box input {
    background-color: rgba(20, 16, 78, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(167, 139, 250, 0.5);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.subscribe-box input:focus {
    border-color: rgba(122, 76, 255, 0.8);
    background-color: rgba(20, 16, 78, 0.8);
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

.subscribe-box input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.subscribe-btn {
    background: linear-gradient(90deg, #7a4cff, #5113cc) !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.6) !important;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    letter-spacing: 0.05rem;
}

.footer-column a {
    display: block;
    color: #d7cfffcc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    letter-spacing: 0.03rem;
}

.footer-column a:hover {
    color: #7a4cff;
    padding-left: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(81, 19, 204, 0.15);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Fixed back footer with GamerUp text */
.back-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 21rem;
    z-index: -1;
    background: rgb(9 9 18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2.5rem 0.5rem 0.4rem rgba(0, 0, 0, 0.3);
}

.back-footer-text {
    color: transparent;
    font-size: 8rem;
    font-weight: 700;
    text-align: center;
    -webkit-text-stroke: 0.1rem;
    -webkit-text-stroke-color: rgb(81 19 204 / 73%);
    user-select: none;
    letter-spacing: 0.5rem;
}

@media (max-width: 768px) {
    .modern-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem
    }

    .modern-cta .cta-actions {
        width: 100%;
        justify-content: flex-start
    }

    .cta-features {
        flex-direction: column;
        gap: .75rem
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-brand,
    .footer-subscribe {
        min-width: 100%;
    }

    .footer-links {
        gap: 2rem;
    }

    .back-footer-text {
        font-size: 4rem;
        -webkit-text-stroke: 0.08rem;
    }

    .main-footer {
        padding: 3rem 1.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .tienes-dudas {
        color: white;
        font-size: 2.8rem;
        margin-top: 2rem;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none !important;
    }

    .text-front-div {
        margin-top: 0rem;
    }

    .cuadrados .cuadrado1 {
        width: 100%;
        height: 100vh;
        background-color: #5113cc8c;
        position: absolute;
        top: -19rem;
        left: -15rem;
        transform: rotate(36deg);
    }

    .cuadrados .cuadrado2 {
        width: 100%;
        height: 58vh;
        background-color: #5113cc8c;
        position: absolute;
        top: -20rem;
        left: -11rem;
        transform: rotate(37deg);
    }

    body {
        width: 100%;
        overflow-x: hidden;
    }


    .text-front-h2 {
        margin: auto;
        font-size: 5rem;
        width: 91%;
        line-height: 5.7rem;
        font-weight: 500;
        color: white;
        top: 14rem;
        border-bottom: 1.05rem solid #5113ccc7;
        padding-bottom: 1.7rem;
        position: relative;
        left: 0rem;
        text-align: left;
    }

    .subtitle {
        color: #fffffff2;
        font-size: 0.9rem;
        font-weight: 300;
        letter-spacing: .05rem;
        margin-left: 2rem;
        margin-top: 13rem;
        width: 78%;
    }

    .text-front-div {
        padding: 2rem;
    }

    .text-rear-h1 {
        color: transparent;
        -webkit-text-stroke-width: .15rem;
        font-weight: 400;
        -webkit-text-stroke-color: #a78bfa;
        position: absolute;
        top: 5rem;
        right: -4rem;
        transform: rotate(90deg);
        font-size: 8rem;
        line-height: 8.7rem;
        width: 26rem;
    }

    .topbar {
        display: none !important;
    }

    .text-container {
        display: flex;
        margin: auto;
        position: relative;
        flex-direction: column;
        margin-top: 7rem;
    }

    .second-container .title::after {
        margin-left: 3.5rem;
    }

    .cuadrado-acerca2 {
        bottom: -2.2rem;
    }

    .third-cuadrado1 {
        position: absolute;
        width: 18rem;
        height: 11rem;
        background-color: #a78bfa;
        top: -2rem;
        left: 2rem;
        transform: skewX(10deg);
    }

    .third-cuadrado2 {
        position: absolute;
        width: 18rem;
        height: 12rem;
        background-color: #2d0b71c7;
        bottom: -2rem;
        right: 0rem;
        transform: skewX(10deg);
    }

    .streamer-illustration {
        position: absolute;
        right: 0rem;
        bottom: 0rem;
        width: 13rem;
        z-index: 0;
        opacity: 0.6;
    }

}

.btn-contact-success {
    background: #10b981 !important;
    background-color: #10b981 !important;
    border-color: #10b981 !important;
    color: white !important;
}