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

body {
    overflow: hidden;
    color: white;
}

/* Font Classes */
.orbitron-400 { font-family: "Orbitron", sans-serif; font-weight: 400; }
.orbitron-500 { font-family: "Orbitron", sans-serif; font-weight: 500; }
.orbitron-600 { font-family: "Orbitron", sans-serif; font-weight: 600; }
.orbitron-900 { font-family: "Orbitron", sans-serif; font-weight: 900; }

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Content */
.content {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
}

h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    background: linear-gradient(45deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

.lead {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

.coming-soon {
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 1;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

/* Net Container */
.net-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

#netCanvas {
    width: 100%;
    height: 100%;
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                     0 0 20px rgba(255, 255, 255, 0.6),
                     0 0 30px rgba(255, 255, 255, 0.4);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.9),
                     0 0 30px rgba(255, 255, 255, 0.7),
                     0 0 40px rgba(255, 255, 255, 0.5);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
} 