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

body {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460);
    color: #f4f4f4;
    height: 100vh;
    overflow: hidden;
}

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

.spotlight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,248,220,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: flicker 4s ease-in-out infinite alternate;
}

@keyframes flicker {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.4; }
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    z-index: 10;
}

.subtitle {
    font-size: 1.5rem;
    color: #f4f4f4;
    margin-bottom: 3rem;
    font-style: italic;
    z-index: 10;
}

.curtain-left, .curtain-right {
    position: absolute;
    top: 0;
    width: 20%;
    height: 100vh;
    background: linear-gradient(to bottom, #8b0000 0%, #a52a2a 50%, #dc143c 100%);
    z-index: 5;
}

.curtain-left::before, .curtain-right::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        rgba(0,0,0,0.3) 15px,
        transparent 30px
    );
}

.curtain-left {
    left: 0;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.curtain-right {
    right: 0;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.coming-soon {
    z-index: 10;
}

.coming-soon h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ff6b6b;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.coming-soon p {
    font-size: 1.2rem;
    color: #cccccc;
    font-style: italic;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .curtain-left, .curtain-right {
        width: 10%;
    }
}
