:root {
    --bg-light: #f8fbff;
    --primary-blue: #0070f3;
    --text-dark: #000000;
    --text-gray: #71717a;
    --border-color: #e4e4e7;
    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    background-color: #fbfdff;
    background-image: 
        linear-gradient(to right, rgba(0, 112, 243, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 112, 243, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.main-launch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.content-wrapper {
    background: #ffffff;
    padding: 80px 60px;
    border-radius: 60px;
    box-shadow: 0 40px 100px rgba(0, 112, 243, 0.05);
    max-width: 650px;
    width: 100%;
    animation: fadeIn 0.8s ease-out;
}

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

.launch-label {
    display: inline-block;
    background: #eef5ff;
    color: var(--primary-blue);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

h1 {
    font-size: 4.5rem;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

h1 span {
    color: var(--primary-blue);
}

.description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.6;
}

/* TIMER */
.timer-container {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}

.timer-box {
    flex: 1;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 25px 10px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.timer-box:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 112, 243, 0.05);
}

.timer-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.timer-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 8px;
}

/* FORM */
.notify-form {
    display: flex;
    gap: 15px;
    align-items: center;
}

.notify-form input {
    flex: 1;
    background: #fbfcfe;
    border: 1px solid var(--border-color);
    padding: 20px 30px;
    border-radius: 100px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.notify-form input:focus {
    border-color: var(--primary-blue);
    background: #fff;
}

.notify-btn {
    background: var(--primary-blue);
    color: #ffffff;
    border: none;
    padding: 20px 45px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.notify-btn:hover {
    background: #0061d5;
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 112, 243, 0.2);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .main-launch-container {
        flex-direction: column;
    }
    .content-wrapper {
        padding: 60px 40px;
        text-align: center;
    }
    .timer-container {
        justify-content: center;
    }
    .notify-form {
        flex-direction: column;
    }
    .notify-form input, .notify-btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    h1 { font-size: 3rem; }
    .timer-box { padding: 15px 5px; }
    .timer-value { font-size: 2.2rem; }
}