@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@300;400&display=swap');

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

body {
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('back.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

#countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.time-section {
    text-align: center;
}

.time-section span {
    font-size: 3.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.time-section p {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coming-soon {
    font-size: 1.5rem;
    font-style: italic;
    margin-top: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    min-width: 64px;
    max-width: 120px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: background 0.2s;
    color: #222;
    padding: 0;
    overflow: hidden;
}

.play-icon {
    width: 60%;
    height: 60%;
    display: block;
}

.play-btn:hover {
    background: rgba(255,255,255,1);
}

@media (max-width: 600px) {
    .play-btn {
        width: 56px;
        height: 56px;
        min-width: 48px;
        max-width: 72px;
    }
    .play-icon {
        width: 70%;
        height: 70%;
    }
}

.video-section {
    text-align: center;
    margin-bottom: 40px;
}

.video-section video {
    width: 100%;
    max-width: 640px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    #countdown {
        gap: 1rem;
    }
    
    .time-section span {
        font-size: 2rem;
    }
    
    .time-section p {
        font-size: 0.9rem;
    }
    
    .play-btn {
        width: 60px;
        max-width: 80px;
        font-size: 2rem;
    }
    
    .video-section video {
        width: 100vw;
        max-width: 100vw;
        height: auto;
    }
}
