:root {
    --primary-orange: #f26f21;
    --dark-text: #2a1b12;
    --light-text: #8a837f;
    --bg-color: #ffffff;
    --box-bg: #ffffff;
    --shadow-color: rgba(242, 111, 33, 0.15);
    --border-color: rgba(242, 111, 33, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--dark-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Subtle background glows */
body::before, body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 111, 33, 0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
}

body::before {
    top: -200px;
    right: -200px;
}

body::after {
    bottom: -200px;
    left: -200px;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    margin-top: 5vh;
}

/* Header & Typography */
.header {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

.title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.title .orange-text {
    color: var(--primary-orange);
    text-transform: uppercase;
}

.title .dark-text {
    color: var(--dark-text);
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--light-text);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.time-box {
    background-color: var(--box-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    min-width: 120px;
    box-shadow: 0 10px 30px var(--shadow-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
}

.time-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.time-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--light-text);
    letter-spacing: 2px;
}

/* Subscription Form */
.subscription {
    width: 100%;
    max-width: 500px;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
}

.subscribe-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    color: var(--dark-text);
    outline: none;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.subscribe-form input::placeholder {
    color: #c4beb9;
}

.subscribe-form input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(242, 111, 33, 0.1);
}

.submit-btn {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background-color: #e05e10;
    transform: translateY(-2px);
}

.submit-btn i {
    font-size: 1rem;
}

/* Footer & Social */
.footer {
    padding: 2rem;
    text-align: center;
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.copyright {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--light-text);
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .countdown {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .time-box {
        min-width: calc(50% - 0.5rem);
        padding: 1rem;
    }

    .time-value {
        font-size: 2.5rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .submit-btn {
        padding: 1rem;
        justify-content: center;
    }
}
