/* Believe Text Effect */
.slide-believe {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.slide-2-logo {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 10;
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    opacity: 0.9;
    pointer-events: none;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transform: rotate(180deg);
}

/* Lighting Animation Background */
.slide-believe .lighting-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.lighting-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 170, 170, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: lightPulse1 4s ease-in-out infinite;
    filter: blur(40px);
}

.lighting-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 200, 200, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: lightPulse2 5s ease-in-out infinite;
    filter: blur(50px);
}

@keyframes lightPulse1 {

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

    25% {
        transform: translate(30px, -20px) scale(1.2);
        opacity: 0.5;
    }

    50% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.4;
    }

    75% {
        transform: translate(20px, 20px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes lightPulse2 {

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

    33% {
        transform: translate(-40px, -30px) scale(1.3);
        opacity: 0.4;
    }

    66% {
        transform: translate(30px, 40px) scale(0.8);
        opacity: 0.3;
    }
}

/* CRT Scanline Effect */
.slide-believe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.15) 0px,
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px);
    z-index: 5;
    pointer-events: none;
    animation: scanlineFlicker 0.15s infinite;
}

@keyframes scanlineFlicker {
    0% {
        opacity: 0.03;
    }

    50% {
        opacity: 0.05;
    }

    100% {
        opacity: 0.03;
    }
}

/* Moving scanline effect (CRT beam) with lightning */
.slide-believe::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    z-index: 6;
    pointer-events: none;
    animation: scanlineMove 8s linear infinite, lightningFlickerMain 0.09s linear infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease;
}

@keyframes lightningFlickerMain {

    0%,
    100% {
        opacity: 0.5;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    }
}

/* Enhanced opacity keyframes for click effect - much brighter */
@keyframes lightningFlickerMainEnhanced {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.9), 0 0 50px rgba(255, 200, 200, 0.7);
    }

    20% {
        opacity: 1;
        box-shadow: 0 0 40px rgba(255, 255, 255, 1), 0 0 60px rgba(255, 180, 180, 0.8), 0 0 80px rgba(255, 150, 150, 0.6);
    }

    40% {
        opacity: 0.95;
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.8), 0 0 45px rgba(255, 200, 200, 0.6);
    }

    60% {
        opacity: 1;
        box-shadow: 0 0 35px rgba(255, 255, 255, 0.95), 0 0 55px rgba(255, 190, 190, 0.75);
    }

    80% {
        opacity: 1;
        box-shadow: 0 0 28px rgba(255, 255, 255, 0.85), 0 0 48px rgba(255, 200, 200, 0.65);
    }
}

.slide-believe.opacity-enhanced::after {
    animation: scanlineMove 8s linear infinite, lightningFlickerMainEnhanced 0.09s linear infinite !important;
    opacity: 1 !important;
}

@keyframes scanlineMove {
    0% {
        top: 0%;
    }

    100% {
        top: 100%;
    }
}

/* Additional moving vertical scanlines with lightning effect */
.scanline-beam {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.15),
            transparent);
    z-index: 6;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.scanline-beam-1 {
    animation: scanlineMove1 6s linear infinite, lightningFlicker1 0.1s linear infinite;
    opacity: 0.8;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.scanline-beam-2 {
    animation: scanlineMove2 7s linear infinite, lightningFlicker2 0.08s linear infinite;
    opacity: 0.6;
    height: 2px;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.scanline-beam-3 {
    animation: scanlineMove3 9s linear infinite, lightningFlicker3 0.12s linear infinite;
    opacity: 0.7;
    height: 2.5px;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.scanline-beam-4 {
    animation: scanlineMove4 10s linear infinite, lightningFlicker4 0.15s linear infinite;
    opacity: 0.5;
    height: 1.5px;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

/* Enhanced opacity state when clicking on slide - much brighter */
.slide-believe.opacity-enhanced .scanline-beam-1 {
    opacity: 1 !important;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 50px rgba(255, 200, 200, 0.6) !important;
}

.slide-believe.opacity-enhanced .scanline-beam-2 {
    opacity: 1 !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.7), 0 0 40px rgba(255, 180, 180, 0.5) !important;
}

.slide-believe.opacity-enhanced .scanline-beam-3 {
    opacity: 1 !important;
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.75), 0 0 45px rgba(255, 190, 190, 0.55) !important;
}

.slide-believe.opacity-enhanced .scanline-beam-4 {
    opacity: 1 !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 35px rgba(255, 170, 170, 0.4) !important;
}

/* Enhance lighting background on click */
.slide-believe.opacity-enhanced .lighting-bg {
    opacity: 0.6 !important;
}

.slide-believe.opacity-enhanced .lighting-bg::before {
    opacity: 0.8 !important;
    filter: blur(30px) !important;
}

.slide-believe.opacity-enhanced .lighting-bg::after {
    opacity: 0.7 !important;
    filter: blur(40px) !important;
}

@keyframes scanlineMove1 {
    0% {
        top: -10px;
    }

    100% {
        top: 100%;
    }
}

@keyframes scanlineMove2 {
    0% {
        top: -20px;
    }

    100% {
        top: 100%;
    }
}

@keyframes scanlineMove3 {
    0% {
        top: -15px;
    }

    100% {
        top: 100%;
    }
}

@keyframes scanlineMove4 {
    0% {
        top: -25px;
    }

    100% {
        top: 100%;
    }
}

/* Lightning flicker effects */
@keyframes lightningFlicker1 {

    0%,
    100% {
        opacity: 0.6;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    }

    10% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 170, 170, 0.3);
    }

    20% {
        opacity: 0.4;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    }

    30% {
        opacity: 0.9;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    }

    70% {
        opacity: 1;
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.5), 0 0 35px rgba(255, 200, 200, 0.4);
    }

    80% {
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    }

    90% {
        opacity: 0.8;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
    }
}

@keyframes lightningFlicker2 {

    0%,
    100% {
        opacity: 0.4;
        box-shadow: 0 0 3px rgba(255, 255, 255, 0.08);
    }

    15% {
        opacity: 0.9;
        box-shadow: 0 0 18px rgba(255, 255, 255, 0.35), 0 0 25px rgba(255, 180, 180, 0.25);
    }

    25% {
        opacity: 0.3;
        box-shadow: 0 0 3px rgba(255, 255, 255, 0.08);
    }

    40% {
        opacity: 1;
        box-shadow: 0 0 22px rgba(255, 255, 255, 0.45);
    }

    60% {
        opacity: 0.5;
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.15);
    }

    75% {
        opacity: 0.85;
        box-shadow: 0 0 16px rgba(255, 255, 255, 0.3);
    }

    85% {
        opacity: 0.35;
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
    }
}

@keyframes lightningFlicker3 {

    0%,
    100% {
        opacity: 0.5;
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
    }

    12% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 28px rgba(255, 190, 190, 0.3);
    }

    22% {
        opacity: 0.35;
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
    }

    35% {
        opacity: 0.95;
        box-shadow: 0 0 17px rgba(255, 255, 255, 0.35);
    }

    55% {
        opacity: 0.45;
        box-shadow: 0 0 7px rgba(255, 255, 255, 0.18);
    }

    72% {
        opacity: 1;
        box-shadow: 0 0 24px rgba(255, 255, 255, 0.5), 0 0 32px rgba(255, 210, 210, 0.4);
    }

    82% {
        opacity: 0.4;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.12);
    }

    92% {
        opacity: 0.75;
        box-shadow: 0 0 14px rgba(255, 255, 255, 0.28);
    }
}

@keyframes lightningFlicker4 {

    0%,
    100% {
        opacity: 0.3;
        box-shadow: 0 0 2px rgba(255, 255, 255, 0.06);
    }

    18% {
        opacity: 0.85;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3), 0 0 22px rgba(255, 170, 170, 0.25);
    }

    28% {
        opacity: 0.25;
        box-shadow: 0 0 2px rgba(255, 255, 255, 0.06);
    }

    42% {
        opacity: 0.9;
        box-shadow: 0 0 19px rgba(255, 255, 255, 0.38);
    }

    62% {
        opacity: 0.4;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.12);
    }

    78% {
        opacity: 0.8;
        box-shadow: 0 0 13px rgba(255, 255, 255, 0.26);
    }

    88% {
        opacity: 0.3;
        box-shadow: 0 0 3px rgba(255, 255, 255, 0.08);
    }
}

.slide-believe .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100vw;
    min-height: 100vh;
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.believe-content {
    position: absolute;
    top: 54vh;
    right: 0;
    transform: translateY(-50%);
    width: 60%;
    max-width: 800px;
    z-index: 2;
    opacity: 0;
    padding: 0 40px;
    box-sizing: border-box;
}

.believe-content.animate {
    animation: slideInFromRightWithFade 1.2s ease-out 0.3s forwards;
}

.believe-video-title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 0;
    margin-top: 0;
}

.video-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.7);
}

.believe-video-title .o-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    vertical-align: top;
    height: 45px !important;
    width: 45px !important;
    margin: 0 5px 0 5px;
    object-fit: contain;
    align-self: flex-start;
}

.believe-video-title .o-clickable:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px rgba(255, 170, 170, 0.9));
}

.believe-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 10px 0 15px 0;
}

.believe-quote {
    position: relative;
    font-size: 1rem;
    color: rgba(255, 255, 255, 1);
    text-align: justify;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
    margin-top: 0;
    padding-top: 0;
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(0, 0, 0, 0.5);
}

.believe-text {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6em;
    color: transparent;
    text-transform: uppercase;
    font-weight: 900;
    z-index: 2;
}

.believe-text span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    color: #ffffff;
    transition: 0.5s;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    overflow: hidden;
}

.slide-believe:hover .believe-text span:nth-child(1) {
    transform: translateY(-18px);
}

.believe-text span:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    color: #ffffff;
    transition: 0.5s;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    overflow: hidden;
}

.slide-believe:hover .believe-text span:nth-child(2) {
    transform: translateY(18px);
}

.believe-text span:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) scaleY(0);
    width: 91%;
    color: #000000;
    background: #ffaaaa;
    font-size: 0.25em;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-align: center;
    padding-left: 20px;
    margin-left: 5px;
    transition: 0.5s;
    white-space: nowrap;
    overflow: hidden;
}

.slide-believe:hover .believe-text span:nth-child(3) {
    transform: translateY(-50%) scaleY(1);
}

/* Believe CTA Button */
.believe-cta-btn {
    position: absolute;
    top: calc(35% + 80px);
    left: 50%;
    transform: translate(-50%, 150vh);
    padding: 12px 35px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    cursor: pointer;
    z-index: 7;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.believe-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.believe-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.believe-cta-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, 0) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.believe-cta-btn:active {
    transform: translate(-50%, 0) scale(0.98);
}

.believe-cta-btn.animate {
    animation: slideUpFromBottom 0.8s ease-out 1.1s forwards,
        fadeInAfterSlide 0.6s ease-out 1.1s forwards;
}

@keyframes slideUpFromBottom {
    0% {
        transform: translate(-50%, 150vh);
    }

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

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

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

@keyframes slideInFromRightWithFade {
    0% {
        transform: translateY(-50%) translateX(100%);
        opacity: 0;
    }

    60% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInAfterSlide {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Desktop - Fixed positioning to prevent movement on zoom */
@media (min-width: 1024px) {
    .believe-content {
        position: absolute;
        top: 56vh;
        right: 0;
        transform: translateY(-50%);
    }

    .slide-believe .connecting-line {
        position: absolute;
        top: 50vh;
        left: 0;
        transform: translateY(-1px);
    }
}

@media (max-width: 768px) {
    .believe-content {
        width: 60%;
        max-width: 100%;
        padding: 0 20px;
    }

    /* .believe-video-title {
        margin-bottom: 15px;
    } */

    .video-text {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }

    .believe-video-title .o-clickable {
        height: 35px !important;
        width: 35px !important;
    }

    .believe-divider {
        margin: 8px 0 12px 0;
    }

    .believe-quote {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: left;
    }

    .slide-2-logo {
        top: 20px;
        max-width: 150px;
        max-height: 150px;
    }

    .slide-believe .connecting-line {
        position: absolute !important;
        top: 75% !important;
        left: 0 !important;
        width: 58% !important;
        transform: translateY(-1px) !important;
    }
}

@media (max-width: 480px) {
    .believe-content {
        width: 45%;
        padding: 0 15px;
    }
    .believe-content {
        top: 58vh;
    }

    /* .believe-video-title {
        margin-bottom: 12px;
    } */

    .video-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .believe-video-title .o-clickable {
        height: 26px !important;
        width: 26px !important;
        margin: 0 3px;
    }

    .believe-divider {
        margin: 6px 0 10px 0;
    }

    .slide-2-logo {
        top: 15px;
        max-width: 120px;
        max-height: 120px;
    }

    .believe-quote {
        font-size: 0.85rem;
        line-height: 1.5;
        text-align: left;
    }

    .slide-believe .connecting-line {
        position: absolute !important;
        top: 75% !important;
        left: 0 !important;
        width: 50% !important;
        transform: translateY(-1px) !important;
    }
}

/* Connecting Line Animation - Slide 2 */
.slide-believe .connecting-line {
    position: absolute;
    top: 50vh;
    left: 0;
    width: 42%;
    /* Extended to reach VIDE text */
    height: 2px;
    background: #ff0000;
    /* Red color */
    z-index: 10;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(-1px);
    transform-origin: left;
    animation: slideInLineRight 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

@keyframes slideInLineRight {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }

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