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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #f0f0f0;
    background: #0a0c10;
    height: 100dvh;
    width: 100vw;
}

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

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.5s ease-in;
}

.video-bg video.playing {
    opacity: 1;
}

/* Hide native play button (webkit/blink + firefox) */
.video-bg video::-webkit-media-controls {
    display: none !important;
}

.video-bg video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.video-bg video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(5, 8, 12, 0.25) 0%,
        rgba(5, 8, 12, 0.15) 30%,
        rgba(5, 8, 12, 0.15) 70%,
        rgba(5, 8, 12, 0.45) 100%
    );
}

/* Fallback gradient — video-bg already has dark body behind it */

main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    text-align: center;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.4);
}

footer {
    padding: 2.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.dot {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.8rem;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
        letter-spacing: 0.08em;
    }

    .tagline {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        padding: 2rem 2rem 3rem;
        font-size: 0.75rem;
    }

    .dot {
        display: none;
    }
}
