.hero-side,
.split-hero {
    position: relative;
    display: flex;
    overflow: hidden
}

.hero-bg-overlay,
.hero-left::after,
.hero-right::after,
.hero-side::before {
    left: 0;
    transition: opacity .6s
}

.cta-modern::before,
.hero-divider {
    pointer-events: none
}

.split-hero {
    min-height: 100vh;
    background: #141414
}

.hero-side {
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    will-change: flex;
    transform: translateZ(0);
    transition: flex .5s cubic-bezier(.4, 0, .2, 1)
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1
}

.hero-data-line,
.hero-left::after,
.hero-right::after,
.hero-side::before {
    position: absolute;
    z-index: 2
}

.hero-side::before {
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(34, 211, 238, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 211, 238, .03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: .5;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 15%, black 30%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 15%, black 30%);
    transition: opacity .4s
}

.hero-left::after,
.hero-right::after {
    bottom: 0;
    opacity: 0;
    right: 0;
    transition: opacity .4s
}

.hero-side:hover {
    flex: 1.5
}

.hero-side:hover .hero-bg-overlay {
    opacity: .7
}

.hero-left:hover::after,
.hero-right:hover::after,
.hero-side:hover::before {
    opacity: 1
}

.hero-side:hover .hero-content {
    transform: scale(1.05)
}

.hero-left {
    background: linear-gradient(180deg, #141414 0, #0f0f0f 100%)
}

.hero-left::after {
    content: '';
    top: 0;
    background: radial-gradient(circle at 30% 50%, rgba(20, 184, 166, .15) 0, transparent 60%)
}

.hero-right {
    background: linear-gradient(180deg, #141414 0, #0f0f0f 100%)
}

.hero-right::after {
    content: '';
    top: 0;
    background: radial-gradient(circle at 70% 50%, rgba(34, 211, 238, .15) 0, transparent 60%)
}

.hero-right .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/esports-faker.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .6s;
    z-index: 2
}

.hero-right .hero-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #141414 0%, rgba(20, 20, 20, .85) 25%, rgba(20, 20, 20, .4) 60%, rgba(20, 20, 20, .3) 100%);
    z-index: 1
}

.hero-right:hover .hero-bg-image {
    opacity: .65
}

.hero-side .hero-bg-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 700px;
    height: 80%;
    opacity: .1;
    z-index: 3;
    pointer-events: none;
    transition: opacity .6s
}

.hero-side:hover .hero-bg-visual {
    opacity: .2
}

.hero-data-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, .4), transparent)
}

.hero-data-line:first-child {
    top: 25%;
    left: 0;
    right: 0;
    animation: 8s ease-in-out infinite dataFlow
}

.hero-data-line:nth-child(2) {
    top: 50%;
    left: 0;
    right: 0;
    animation: 10s ease-in-out 2s infinite dataFlow
}

.hero-data-line:nth-child(3) {
    top: 75%;
    left: 0;
    right: 0;
    animation: 12s ease-in-out 4s infinite dataFlow
}

@keyframes dataFlow {

    0%,
    100% {
        opacity: .2;
        transform: scaleX(.8)
    }

    50% {
        opacity: .6;
        transform: scaleX(1)
    }
}

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

    100% {
        transform: translateY(-20px) scale(1.05)
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 500px;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.hero-side-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #e5e7eb;
    transition: color .4s;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, .6)) drop-shadow(0 0 16px rgba(0, 0, 0, .3)) drop-shadow(0 0 24px rgba(0, 0, 0, .2))
}

.feature-label,
.partners-heading {
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase
}

.hero-left:hover .hero-side-title {
    color: #14b8a6
}

.hero-right:hover .hero-side-title {
    color: #22d3ee
}

.hero-side-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 2rem;
    transition: color .4s;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, .6)) drop-shadow(0 0 12px rgba(0, 0, 0, .3))
}

.hero-side:hover .hero-side-subtitle {
    color: #d1d5db
}

.hero-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #9ca3af;
    font-size: .85rem;
    transition: .3s;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, .6)) drop-shadow(0 0 8px rgba(0, 0, 0, .3));
    white-space: nowrap
}

.hero-side:hover .hero-features li {
    color: #d1d5db
}

.hero-features svg {
    width: 1rem;
    height: 1rem;
    color: #14b8a6;
    flex-shrink: 0
}

.hero-content .btn-modern {
    margin-top: 1rem;
    opacity: .8;
    transition: opacity .4s, transform .4s
}

.hero-side:hover .hero-content .btn-modern,
.partner-logo-item:hover {
    opacity: 1;
    transform: translateY(-2px)
}

.hero-divider {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    z-index: 20
}

.divider-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0, rgba(34, 211, 238, .3) 20%, rgba(34, 211, 238, .5) 50%, rgba(34, 211, 238, .3) 80%, transparent 100%)
}

.split-hero .scroll-indicator {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    animation: 2s infinite bounce;
    z-index: 25
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

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

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-left: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: rotate(-45deg)
}

@media (max-width:768px) {
    .split-hero {
        flex-direction: column;
        min-height: auto
    }

    .hero-side {
        min-height: 100vh;
        flex: none;
        padding: 4rem 1.5rem
    }

    .hero-side:hover {
        flex: none
    }

    .hero-divider {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px
    }

    .divider-line {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent 0, rgba(34, 211, 238, .3) 20%, rgba(34, 211, 238, .5) 50%, rgba(34, 211, 238, .3) 80%, transparent 100%)
    }

    .hero-content {
        max-width: 100%
    }

    .hero-side-title {
        font-size: 2rem
    }

    .hero-side-subtitle {
        font-size: 1rem
    }

    .split-hero .scroll-indicator {
        display: none
    }
}

.partners-section {
    padding: 3rem 2rem;
    background: #0f0f0f;
    border-bottom: none;
    position: relative
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1
}

.partners-heading {
    font-size: .75rem;
    color: #9ca3af;
    margin-bottom: 1rem
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap
}

.partner-logo-item {
    display: flex;
    align-items: center;
    opacity: .7;
    transition: opacity .3s, transform .3s
}

.partner-logo-item img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(.9);
    transition: filter .3s
}

.partner-logo-item:hover img {
    filter: brightness(1)
}

.partner-logo-grid img {
    height: 50px;
    max-width: 180px
}

.partner-logo-betfair img {
    height: 165px;
    max-width: 600px
}

.partner-logo-lolesports img {
    height: 40px;
    max-width: 150px
}

.section-spacer {
    height: 150px;
    background: linear-gradient(180deg, #0f0f0f 0%, rgba(15, 15, 15, 0.5) 30%, rgba(20, 20, 20, 0.5) 70%, #141414 100%);
    margin: 0;
    position: relative;
    overflow: hidden;
    --parallax-y: 0px
}

.section-spacer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(20, 184, 166, 0.08) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(34, 211, 238, 0.08) 0%, transparent 50%);
    pointer-events: none;
    will-change: transform;
    transform: translateY(var(--parallax-y))
}

.feature-section {
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden
}

.feature-dark {
    background: linear-gradient(180deg, #141414 0, #0f0f0f 100%)
}

.feature-light {
    background: #242424
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2
}

.feature-content {
    max-width: 600px
}

.feature-label {
    display: inline-block;
    font-size: .875rem;
    color: #14b8a6;
    margin-bottom: 1rem
}

.cta-badge,
.league-text {
    letter-spacing: .05em;
    font-weight: 600
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #e5e7eb
}

.feature-description {
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 2rem
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: #d1d5db
}

.feature-list svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #14b8a6;
    flex-shrink: 0;
    margin-top: .125rem
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center
}

.visual-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: rgba(34, 211, 238, .05);
    border: 1px solid rgba(34, 211, 238, .15);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.visual-placeholder svg {
    width: 6rem;
    height: 6rem;
    color: rgba(34, 211, 238, .2)
}

.integrations-section {
    background: linear-gradient(180deg, #0a1a1a 0, #1a2a2a 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden
}

.integrations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 45% 25%, rgba(34, 211, 238, 0.08) 0%, transparent 55%), radial-gradient(circle at 65% 75%, rgba(20, 184, 166, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0
}

.integrations-container {
    position: relative;
    z-index: 1
}

.integrations-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center
}

.integrations-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(34, 211, 238, .1);
    border: 1px solid rgba(34, 211, 238, .3);
    border-radius: 50px;
    color: #14b8a6;
    font-size: .875rem;
    font-weight: 500;
    margin-bottom: 1.5rem
}

.integrations-badge svg {
    width: 16px;
    height: 16px
}

.integrations-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2
}

.integrations-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6
}

.leagues-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    scroll-behavior: smooth;
    margin-bottom: 3rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch
}

.leagues-carousel-wrapper::-webkit-scrollbar {
    display: none
}

.leagues-carousel {
    display: flex;
    gap: 1.5rem;
    padding: .5rem 0
}

.integration-icon {
    min-width: 70px;
    height: 50px;
    padding: 0 .875rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0
}

.league-text {
    font-size: .75rem;
    color: rgba(255, 255, 255, .9);
    white-space: nowrap
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto
}

.testimonial-card {
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: .3s;
    display: flex;
    flex-direction: column;
    min-height: 280px
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(34, 211, 238, .3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(34, 211, 238, .15)
}

.testimonial-stars {
    display: flex;
    gap: .25rem;
    margin-bottom: 1.25rem
}

.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #14b8a6
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 1.25rem;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: .25rem
}

.testimonial-author-name {
    font-weight: 600;
    color: #e5e7eb;
    font-size: 1rem
}

.testimonial-author-role {
    font-size: .875rem;
    color: #9ca3af
}

.cta-modern {
    padding: 8rem 1.5rem;
    background: linear-gradient(135deg, #0f0f0f 0, #0f0f0f 100%);
    position: relative;
    overflow: hidden
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, .1) 0, transparent 45%), radial-gradient(circle at 30% 50%, rgba(20, 184, 166, 0.08) 0%, transparent 35%), radial-gradient(circle at 70% 80%, rgba(34, 211, 238, 0.08) 0%, transparent 35%)
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10
}

.cta-badge {
    display: inline-block;
    padding: .5rem 1.25rem;
    background: rgba(34, 211, 238, .1);
    border: 1px solid rgba(34, 211, 238, .3);
    border-radius: 2rem;
    color: #14b8a6;
    font-size: .875rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #e5e7eb
}

.cta-description {
    font-size: 1.25rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 3rem
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(34, 211, 238, .1)
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #9ca3af;
    font-size: .9375rem
}

.cta-feature-item svg {
    width: 1.125rem;
    height: 1.125rem;
    color: #14b8a6;
    flex-shrink: 0
}

@media (min-width:768px) {
    .leagues-carousel-wrapper {
        perspective: 1000px;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%)
    }

    .leagues-carousel {
        transform-style: preserve-3d
    }

    .integration-icon {
        backdrop-filter: blur(10px);
        transition: transform .15s ease-out, opacity .2s ease-out
    }

    .hero-title {
        font-size: 4rem
    }

    .hero-subtitle {
        font-size: 1.375rem
    }

    .hero-stats-row {
        grid-template-columns: repeat(3, 1fr)
    }

    .feature-container {
        grid-template-columns: 1fr 1fr
    }

    .feature-reverse {
        direction: rtl
    }

    .feature-reverse>* {
        direction: ltr
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .integrations-title {
        font-size: 3.5rem
    }

    .integrations-icons {
        gap: 2.5rem
    }
}

@media (min-width:1024px) {
    .hero-title {
        font-size: 4.5rem
    }

    .feature-title {
        font-size: 3rem
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:767px) {
    .leagues-carousel-wrapper {
        padding: 1.5rem 0
    }

    .leagues-carousel {
        gap: 1rem
    }

    .immersive-hero {
        min-height: 100svh;
        padding: 5rem 1rem 3rem
    }

    .cta-title,
    .hero-title,
    .integrations-title {
        font-size: 2rem
    }

    .cta-description,
    .hero-subtitle {
        font-size: 1.125rem
    }

    .btn-modern {
        padding: .75rem 1.5rem;
        font-size: .9375rem;
        width: 100%
    }

    .hero-stats-row {
        gap: 1.5rem
    }

    .hero-stat-value {
        font-size: 1.5rem
    }

    .feature-section {
        padding: 4rem 1rem
    }

    .feature-container {
        gap: 2.5rem
    }

    .feature-title {
        font-size: 1.875rem
    }

    .feature-description {
        font-size: 1rem
    }

    .visual-placeholder {
        max-width: 100%
    }

    .visual-placeholder svg {
        width: 4rem;
        height: 4rem
    }

    .cta-modern {
        padding: 5rem 1rem
    }

    .cta-buttons {
        flex-direction: column
    }

    .btn-large {
        width: 100%
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center
    }

    .partners-section {
        padding: 1rem
    }

    .partners-logos {
        gap: 2rem
    }

    .partner-logo-item img,
    .partner-logo-lolesports img {
        height: 32px;
        max-width: 120px
    }

    .partner-logo-grid img {
        height: 40px;
        max-width: 140px
    }

    .partner-logo-betfair img {
        height: 124px;
        max-width: 450px
    }

    .integrations-section {
        padding: 5rem 1.5rem
    }

    .integrations-description {
        font-size: 1rem;
        margin-bottom: 3rem
    }

    .leagues-carousel {
        gap: .875rem
    }

    .integration-icon {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        min-width: 60px;
        height: 44px;
        padding: 0 .75rem
    }

    .league-text {
        font-size: .65rem
    }

    .integration-icon svg {
        width: 28px;
        height: 28px
    }

    .integrations-button {
        width: 100%;
        justify-content: center
    }

    .testimonial-card {
        padding: 1.25rem
    }

    .testimonial-text {
        font-size: .9375rem
    }
}