body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #b026ff; /* Purple */
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden; /* Prevent scrollbars from canvas */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.container {
    position: relative;
    z-index: 1; /* Above the matrix rain */
    text-align: center;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background for readability */
    padding: 40px;
    border: 1px solid #b026ff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
    max-width: 800px;
    width: 90%;
    backdrop-filter: blur(5px);
}

.logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(176, 38, 255, 0.5));
}

.message h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px #b026ff;
    border-bottom: 1px solid #b026ff;
    display: inline-block;
    padding-bottom: 10px;
}

.message .main-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.message .details {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d48aff; /* Slightly lighter purple for details */
    margin-bottom: 1.5rem;
}

.message .note {
    font-size: 1rem;
    line-height: 1.6;
    color: #ff8c00; /* DarkOrange */
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    font-style: italic;
}

.message .discord-invite {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0b0ff; /* Light purple/lavender to fit theme but distinct */
    margin-top: 1.5rem;
}

.message .music-credits {
    font-size: 0.9rem;
    margin-top: 2rem;
    color: #87CEFA; /* Light Blue */
}

.message .music-credits a {
    color: #87CEFA;
    text-decoration: none;
    border-bottom: 1px dashed #87CEFA;
    transition: all 0.3s ease;
}

.message .music-credits a:hover {
    color: #fff;
    border-bottom-style: solid;
    text-shadow: 0 0 5px #87CEFA;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    .logo {
        max-width: 250px;
    }

    .message h1 {
        font-size: 1.2rem;
    }

    .message .main-text {
        font-size: 1rem;
    }
}