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

body {
    background-color: #000;
    color: #0f0;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    position: relative;
    height: 100vh;
}

#matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.coming-soon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    text-shadow: 0 0 10px #0f0, 0 0 20px #0f0, 0 0 30px #0f0;
    animation: pulse 2s infinite;
}

.coming-soon h1 {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
    color: #0f0;
    text-transform: uppercase;
}

.coming-soon .subtitle {
    font-size: 1.2rem;
    color: #0a0;
    letter-spacing: 0.2rem;
    opacity: 0.8;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px #0f0, 0 0 20px #0f0, 0 0 30px #0f0;
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 15px #0f0, 0 0 25px #0f0, 0 0 35px #0f0;
    }
}

.matrix-char {
    transition: all 0.3s ease;
    cursor: pointer;
}

.matrix-char:hover {
    color: #fff;
    text-shadow: 0 0 20px #fff, 0 0 40px #fff;
    transform: scale(1.5);
    font-weight: bold;
}

@media (max-width: 768px) {
    .coming-soon h1 {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }
    
    .coming-soon .subtitle {
        font-size: 1rem;
    }
}