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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: #FAF9F6;
}

/* Video Background */
#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#player {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.25); /* adjust */
  z-index: 1;
}
.hero-text-band h1 {
  font-size: 48px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-text-band p {
  opacity: 0.9;
}
/* Additional grain/texture overlay for vintage effect */
.video-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

/* Sound Toggle Button */
.sound-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(26, 26, 26, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sound-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sound-toggle .icon {
    color: #1A1A1A;
    display: none;
    transition: all 0.3s ease;
}

.sound-toggle .icon.active {
    display: block;
}

/* Main Content */
.content {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1;
}

.countdown-container {
    text-align: center;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: #9A8C98;
    margin-bottom: 15px;
    font-weight: 400;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    color: #1A1A1A;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #4A4A4A;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.launch-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: #9A8C98;
    margin-bottom: 30px;
    font-weight: 400;
    animation: fadeIn 0.8s ease-out 0.8s both;
}

/* Countdown */
.countdown {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease-out 1s both;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: #1A1A1A;
    line-height: 1;
    transition: all 0.3s ease;
}

.count-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #9A8C98;
    margin-top: 10px;
    font-weight: 400;
}

.separator {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    color: #d1d5db;
    margin-top: 5px;
}

/* Decorative Line */
.decorative-line {
    width: 100px;
    height: 1px;
    background: #d1d5db;
    margin: 0 auto;
    animation: expandLine 1.2s ease-out 1.2s both;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sound-toggle {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .count-label {
        font-size: 8px;
    }
    
    .coming-soon,
    .launch-label {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .countdown {
        gap: 0.5rem;
    }
    
    .separator {
        margin: 0 -5px;
    }
}