body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #050505;
    font-family: 'Inter', sans-serif;
}

/* Background gradient for extra premium feel */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1f2029 0%, #050505 80%);
    z-index: 0;
}

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

.overlay {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    pointer-events: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.artist-name {
    font-size: 2.2rem;
    font-weight: 200;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    animation: fadeIn 2.5s ease-out forwards;
    opacity: 0;
}

.subtitle {
    font-size: 0.85rem;
    font-weight: 300;
    margin-top: 15px;
    letter-spacing: 0.4em;
    color: #999;
    animation: fadeIn 3.5s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); filter: blur(4px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Optional noise overlay for a more cinematic feel */
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 3;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Enter Screen */
.enter-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #050505;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-in-out, visibility 1s;
}

.enter-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.enter-logo {
    width: 280px;
    max-width: 80vw;
    margin-bottom: 40px;
    opacity: 0.85;
}

.enter-btn {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 40px;
    font-size: 1rem;
    letter-spacing: 0.2em;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enter-btn:hover {
    background: white;
    color: black;
}

.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
