* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    color: #ffffff;
    height: 100vh;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#bgVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 900px;
    animation: fadeIn 2s ease-out;
}

.logo {
    font-size: 5rem;
    font-weight: bold;
    letter-spacing: 8px;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #00ff88, #00d4ff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
}

.pulsate {
    animation: pulsate 2s ease-in-out infinite;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.3);
    }
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.tagline h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.claims-carousel {
    position: relative;
    min-height: 120px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.claim-wrapper {
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.claim-item {
    position: absolute;
    font-size: 1.1rem;
    color: #00ff88;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(100px) scale(0.8);
    filter: blur(10px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    white-space: normal;
    text-align: center;
    max-width: 90%;
    line-height: 1.4;
}

.claim-item.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.5),
                     0 0 60px rgba(0, 212, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(0, 255, 136, 0.8),
                     0 0 80px rgba(0, 212, 255, 0.5);
    }
}

.glitch-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
}

.glitch-lines.glitch-active {
    animation: glitchEffect 0.3s linear;
}

@keyframes glitchEffect {
    0%, 100% {
        opacity: 0;
    }
    10%, 30%, 50%, 70%, 90% {
        opacity: 1;
        background: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 136, 0.1) 2px,
            rgba(0, 255, 136, 0.1) 4px
        );
        transform: translateX(random() * 10px - 5px);
        filter: hue-rotate(random() * 360deg);
    }
    20%, 40%, 60%, 80% {
        opacity: 0;
    }
}

.coming-soon {
    margin-bottom: 40px;
}

.coming-soon h3 {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 5px;
    margin-bottom: 10px;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}

.subtitle {
    font-size: 1rem;
    color: #888888;
    letter-spacing: 1px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .tagline h2 {
        font-size: 1.5rem;
    }
    
    .claims-carousel {
        min-height: 100px;
    }
    
    .claim-wrapper {
        min-height: 100px;
    }
    
    .claim-item {
        font-size: 0.95rem;
        max-width: 95%;
    }
    
    .coming-soon h3 {
        font-size: 2rem;
    }
    
}

@media (max-width: 480px) {
    .logo {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .tagline h2 {
        font-size: 1.2rem;
    }
    
    .claims-carousel {
        min-height: 90px;
        padding: 0 10px;
    }
    
    .claim-wrapper {
        min-height: 90px;
    }
    
    .claim-item {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        max-width: 100%;
    }
    
    .coming-soon h3 {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
}