body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Splash screen styles */
#enter-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFDEE9 0%, #B5FFFC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    font-family: 'Georgia', serif;
    color: #333;
    text-align: center;
}

#enter-screen h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#enter-screen button {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    border: none;
    border-radius: 25px;
    background: #FF6B6B;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: background 0.3s;
}

#enter-screen button:hover {
    background: #FF4757;
}

/* Hide main content before enter */
#main-content {
    display: none;
}