:root {
    --bg-color: #F5F2EB;
    --text-main: #1E3F2D;
    --text-muted: #567362;
    --accent: #D4A373;
    --accent-gradient: linear-gradient(135deg, #D4A373, #B87B41, #D4A373);
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(30, 63, 45, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, .logo, .time-val {
    font-family: 'Playfair Display', serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Background animated blobs */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    filter: blur(100px);
    opacity: 0.5;
    animation: move 20s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #d4af37, transparent 70%);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #22573a, transparent 70%);
    animation-delay: -5s;
}

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 20%) scale(1.2); }
}

/* Main Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 1rem 0;
    text-align: center;
    animation: fadeInDown 1s ease-out forwards;
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content Area */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.6;
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    background: var(--glass-bg);
    padding: 2rem 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.time-val {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.time-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.separator {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: -1.5rem;
    animation: pulse 1s infinite alternate;
}

/* Notify Form */
.notify-form {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 450px;
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.notify-form input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.notify-form button {
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    background: var(--text-main);
    color: var(--bg-color);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .title { font-size: 3rem; }
    .countdown { gap: 1rem; padding: 1.5rem; }
    .time-val { font-size: 2rem; }
    .time-box { min-width: 60px; }
    .separator { font-size: 2rem; }
    .notify-form { flex-direction: column; }
    .logo { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .title { font-size: 2.5rem; }
    .countdown { gap: 0.5rem; padding: 1rem; }
    .time-val { font-size: 1.5rem; }
    .time-box { min-width: 50px; }
    .separator { font-size: 1.5rem; }
    .logo { font-size: 1.5rem; }
}
