.home__container{
    position: relative;
    height: 905px;
    background: #000000;
    overflow: hidden;
}

/* Crypto Cyberpunk Background - Dark Theme */
.home__cyber-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../extras/crypto-dark.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark theme subtle overlay with bottom vignette */
.home__cyber-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(255, 0, 132, 0.05) 50%,
            rgba(0, 255, 136, 0.05) 80%,
            rgba(0, 0, 0, 0.8) 95%,
            rgba(0, 0, 0, 1) 100%
        );
    pointer-events: none;
}

/* Subtle glow effect */
.home__cyber-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 50% 30%,
        rgba(255, 0, 132, 0.08) 0%,
        transparent 50%
    ),
    radial-gradient(
        ellipse at 80% 70%,
        rgba(0, 255, 136, 0.08) 0%,
        transparent 50%
    );
    animation: cyberpunkGlow 8s ease-in-out infinite;
}

/* Light Theme - Bright Crypto */
[data-theme="light"] .home__cyber-bg {
    background-image: url('../extras/crypto-light.jpg');
}

[data-theme="light"] .home__cyber-bg::before {
    background: 
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(74, 21, 128, 0.03) 50%,
            rgba(26, 77, 46, 0.03) 80%,
            rgba(250, 250, 250, 0.8) 95%,
            rgba(250, 250, 250, 1) 100%
        );
}

[data-theme="light"] .home__cyber-bg::after {
    background: radial-gradient(
        ellipse at 50% 20%,
        rgba(255, 200, 0, 0.1) 0%,
        transparent 60%
    ),
    radial-gradient(
        ellipse at 70% 80%,
        rgba(74, 21, 128, 0.05) 0%,
        transparent 50%
    );
}

@keyframes cyberpunkGlow {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.home__bottom-bef{
    position: absolute;
    bottom: 35px;
    left: 50%;
    background-image: url('../images/home/bef.svg');
    width: 172px;
    height: 52.5px;
    z-index: 100;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    padding: 25px 0 0 0;
}


.home__bottom-bef svg{
    animation: jump 1s 2s infinite ease-out;
}

.home__content{
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-content: flex-end;
    flex-direction: column;
    padding-bottom: 180px;
}

/* French language: push hero content down slightly */
html[lang="fr"] .home__content {
    padding-top: 40px;
}
.home__content-title{
    font-family: 'Russo One', sans-serif !important;
    font-weight: 400;
    font-size: 79px;
    line-height: 130%;
    padding: 0 15px;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 0, 132, 0.2),
        0 0 30px rgba(0, 255, 136, 0.2);
}
.home__content-title span{
    font-family: 'Russo One', sans-serif !important;
    font-weight: 400;
    background-image: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 0, 132, 0.5)) drop-shadow(0 0 15px rgba(0, 255, 136, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 132, 0.8)) drop-shadow(0 0 30px rgba(0, 255, 136, 0.6));
    }
}

.home__content-des{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin: 33px 0 61px;
    max-width: 652px;
    line-height: 172.69%;
    color: var(--text-secondary);
    /*height: 76px;*/
}

.home__slider-left{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    column-gap: 30px;
    animation: slideCoins 20s infinite linear;
    width: max-content;
}

.home__slider-wrapper {
    display: flex;
    column-gap: 40px;
    justify-content: flex-start;
    width: max-content;
}

.home__slider-box{
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 50px;
    margin-bottom: 0;
    overflow: hidden;
    z-index: 10;
}

.home__slider-card{
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 172.69%;
    color: var(--text-primary);
    min-width: 240px;
    flex-shrink: 0;
    column-gap: 8px;
}

.home__slider-right{
    margin-left: auto;
}

.home__slider-img{
    width: 40px;
    height: 40px;
}

.home__slider-title{
    white-space: nowrap;
}

.home__slider-prise{
    white-space: nowrap;
}

.home__slider-present{
    white-space: nowrap;
}

.home__present-red{
    color: var(--error);
}

.home__present-yellow{
    color: var(--warning);
}

.home__slider-mobile{
    display: none;
}

@keyframes jump {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(2px);
    }
}


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




@media (max-width: 1900px) {
    .home__video {
        object-position: center center;
    }
    .home__container{
        height: 90vh;
    }
}

@media (max-width: 1330px) {
    @keyframes slider {
        0%{
            transform: translateY(0);
        }

        20%{
            transform: translateY(0);
        }

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

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

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

        70%{
            transform: translateY(-100px);
        }

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

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

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

    .home__slider-left{
        animation: slideCoins 20s infinite linear;
    }
    .home__slider-box.home__slider-tablet{
        display: block;
        width: 907px;
    }

    .home__slider-desktop{
        display: none;
    }
}

@media (max-width: 1000px) {
    .home__content-title {
        font-size: 54px;
    }
    .home__slider-box.home__slider-tablet {
        width: 620px;
    }
    .home__content-des {
        font-size: 16px;
        max-width: 370px;
        padding: 0 15px;
    }
}

@media (max-width: 700px) {
    .home__slider-box.home__slider-tablet {
        width: 530px;
    }
}

@media (max-width: 600px) {
    @keyframes slider {
        0%{
            transform: translateY(0);
        }

        10%{
            transform: translateY(0);
        }

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

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

        25%{
            transform: translateY(-100px);
        }

        35%{
            transform: translateY(-100px);
        }

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

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

        50%{
            transform: translateY(-200px);
        }
        60%{
            transform: translateY(-200px);
        }
        62.5%{
            transform: translateY(-250px);
        }
        72.5%{
            transform: translateY(-250px);
        }
        75%{
            transform: translateY(-300px);
        }
        85%{
            transform: translateY(-300px);
        }
        87.5%{
            transform: translateY(-350px);
        }
        97.5%{
            transform: translateY(-350px);
        }
        100%{
            transform: translateY(-400px);
        }
    }

    .header__nav-menu svg{
        width: 40px;
        height: 40px;
    }
    .home__slider-left{
        animation: slideCoins 20s infinite linear;
    }
    .home__slider-mobile{
        width: fit-content;
        display: block;
    }
    .home__slider-box.home__slider-tablet{
        display: none;
    }
    .home__content-title {
        font-size: 33px;
    }
    .home__container {
        height: 637px;
    }
    .home__slider-box {
        margin-bottom: 60px;
    }
    .home__content-des {
        max-width: 330px;
        line-height: 146.69%;
        margin: 22px 0 32px;
    }
}
