/* Style system for Studio Second Innings Landing Page */
:root {
    --gold-primary: #dfba49;
    --gold-light: #fbeea8;
    --gold-dark: #b89025;
    --gold-accent: #d4af37;
    --gold-muted: #bfa15f;
    --blue-logo: #0035a5;
    --bg-card: rgba(13, 13, 13, 0.72);
    --border-card: rgba(223, 186, 73, 0.3);
    --text-main: #ffffff;
    --text-muted: #cccccc;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: #050505;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Coming Soon Container */
.coming-soon-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.85) 100%), url('studio_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    text-align: center;
}


/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Top Subtitle */
.top-subtitle {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 6.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Brand Logo Container */
.logo-container {
    width: 320px;
    max-width: 90%;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6));
    transition: transform 0.4s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.brand-logo-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Countdown Grid */
.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 620px;
    margin-bottom: 35px;
}

/* Countdown Card */
.countdown-card {
    flex: 1;
    background-color: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 24px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.countdown-card:hover {
    transform: translateY(-4px);
    border-color: rgba(223, 186, 73, 0.6);
    box-shadow: 0 15px 35px rgba(223, 186, 73, 0.15), 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Countdown Numbers */
.countdown-number {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(135deg, #ffe082 0%, #e5c158 50%, #b38728 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    display: inline-block;
}

/* Countdown Labels */
.countdown-label {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold-muted);
    margin-top: 10px;
    text-transform: uppercase;
}

/* Description Text */
.description-text {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 30px;
    letter-spacing: 0.8px;
    opacity: 0.95;
}

/* Bottom CTA Button */
.cta-button {
    background-color: transparent;
    border: 1px solid rgba(223, 186, 73, 0.55);
    border-radius: 4px;
    color: var(--gold-primary);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 5px;
    padding: 15px 44px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    background-color: rgba(223, 186, 73, 0.08);
    border-color: var(--gold-primary);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(223, 186, 73, 0.35);
    transform: translateY(-1px);
}

.cta-button:active {
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 650px) {
    .coming-soon-container {
        padding: 40px 15px;
    }
    
    .top-subtitle {
        font-size: 12px;
        letter-spacing: 4.5px;
        margin-bottom: 20px;
    }
    
    .logo-container {
        width: 240px;
        margin-bottom: 25px;
    }
    
    .countdown-grid {
        gap: 10px;
    }
    
    .countdown-card {
        padding: 16px 6px;
        border-radius: 8px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-label {
        font-size: 8px;
        letter-spacing: 2px;
        margin-top: 6px;
    }
    
    .description-text {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        font-size: 12px;
        letter-spacing: 4px;
        padding: 12px 32px;
    }
}

@media (max-width: 450px) {
    .countdown-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 300px;
    }
    
    .countdown-card {
        padding: 20px 10px;
    }
    
    .countdown-number {
        font-size: 2.8rem;
    }
    
    .description-text {
        font-size: 13px;
        padding: 0 10px;
    }
}
