@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

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

body {
    background: #000000;
    color: #00ff5f;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: linear-gradient(to bottom, #000000, #090909);
}

/* Zusätzlicher dunkler Overlay für tieferen Schwarzton */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
    pointer-events: none;
}

.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: radial-gradient(circle at center, rgba(0,255,95,0.05) 0%, rgba(0,0,0,0) 60%);
}

h1 {
    font-size: clamp(3rem, 15vw, 8rem);
    letter-spacing: 0.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #00ff5f,
                 0 0 20px #00ff5f,
                 0 0 30px #00ff5f;
    animation: glow 2s ease-in-out infinite alternate;
}

.teaser {
    font-size: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.6;
    opacity: 0.8;
}

.teaser p {
    margin: 0.5rem 0;
    text-shadow: 0 0 5px #00ff5f;
}

.coming-soon {
    margin-top: 2rem !important;
    font-size: clamp(1.2rem, 4vw, 2rem);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #00ff5f,
                     0 0 20px #00ff5f,
                     0 0 30px #00ff5f;
    }
    to {
        text-shadow: 0 0 20px #00ff5f,
                     0 0 30px #00ff5f,
                     0 0 40px #00ff5f;
    }
}

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

@media (max-width: 768px) {
    h1 {
        letter-spacing: 0.3rem;
    }
    .teaser {
        padding: 0 20px;
    }
}
