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

/* BODY */
body {
    font-family: 'Helvetica Neue', sans-serif;
    background: #050508;
    color: #ffffff;
}

/* VIDEO CONTAINER */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* VIDEO BACKGROUND */
.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;

    filter: brightness(0.45) contrast(1.2) saturate(1.3);
}

/* DARK PURPLE OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;

    background: radial-gradient(
        circle at center,
        rgba(100, 0, 200, 0.4),
        rgba(0, 0, 0, 0.9)
    );

    z-index: 1;
}

/* CONTENT */
.content {
    position: relative;
    z-index: 2;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 20px;

    animation: fadeIn 1.5s ease;
}

/* TITLE */
h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;

    color: #c084ff;

    animation: glow 3s infinite ease-in-out;
}

/* SUBTITLE */
p {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #b0b0ff;
}

/* ANIMATIONS */
@keyframes glow {
    0% { text-shadow: 0 0 10px #7a00ff; }
    50% { text-shadow: 0 0 25px #c084ff; }
    100% { text-shadow: 0 0 10px #7a00ff; }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}