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

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

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.logo-svg {
    width: 300px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.3));
}

@media (max-width: 768px) {
    .logo-svg {
        width: 200px;
    }
}

.description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.stay-tuned {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    letter-spacing: 6px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
    50% {
        opacity: 0.7;
        text-shadow: 0 0 50px rgba(255, 255, 255, 0.8);
    }
}

@media (max-width: 768px) {
    .logo-svg {
        width: 200px;
    }
    .stay-tuned {
        font-size: 2rem;
    }
}
