:root {
    --primary-color: #d4af37; /* Gold finish */
    --primary-hover: #e5c358;
    --secondary-color: #1a2332; /* Deep Blue base */
    --secondary-hover: #212c3f;
    --bg-color: #0d121c; /* Almost black */
    --text-color: #f0f4f8;
    --card-bg: #151d2a;
    --card-border: rgba(255, 255, 255, 0.05);
    
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.8s ease-out forwards;
}

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

/* Hero & Flyer Layout */
.hero-section {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 4rem;
}

.flyer-container {
    width: 100%;
}

.flyer-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.hero-section:hover img {
    filter: brightness(0.75);
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem 3rem 3rem;
    background: linear-gradient(to top, rgba(13,18,28,1) 0%, rgba(13,18,28,0.7) 40%, rgba(13,18,28,0) 100%);
    pointer-events: none;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
    letter-spacing: -1px;
}

.hero-overlay p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
}

/* Content Area */
.content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
}

/* Countdown Components */
.countdown-wrapper h3 {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.time-box {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    opacity: 0.7;
}

.time-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.time-box span {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(255,255,255,0.1);
}

.time-box small {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Buttons */
.action-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-4px);
}

.btn-disabled {
    background-color: #1e293b;
    color: #64748b;
    cursor: not-allowed;
    border: 2px solid transparent;
}

/* Footer Element */
footer {
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 2rem;
    color: #475569;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .landing-container { padding: 1rem; }
    .hero-section { margin-bottom: 2rem; border-radius: 12px; }
    .content-section { gap: 2rem; }
    .countdown-wrapper h3 { font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
    .time-box { min-width: 100px; padding: 1.25rem; }
    .time-box span { font-size: 2.5rem; }
    footer { padding-top: 2rem; }
}

@media (max-width: 600px) {
    .landing-container { padding: 0.75rem; }
    .hero-section { border-radius: 10px; margin-bottom: 1.5rem; }
    .content-section { gap: 1.5rem; }
    .countdown-wrapper h3 { font-size: 0.85rem; margin-bottom: 0.75rem; }
    .countdown-timer { gap: 0.5rem; }
    .time-box { min-width: 70px; padding: 0.75rem; border-radius: 10px; }
    .time-box span { font-size: 1.6rem; margin-bottom: 0.25rem; }
    .time-box small { font-size: 0.65rem; letter-spacing: 1px; }
    .action-buttons { flex-direction: column; width: 100%; gap: 0.75rem; }
    .btn { width: 100%; padding: 0.9rem 1.5rem; font-size: 1rem; }
    footer { padding-top: 1.5rem; font-size: 0.85rem; }
}
