:root {
    --bg-overlay: rgba(255, 255, 255, 0.94);
    --accent: #f5a7a0;
    --accent-soft: rgba(245, 167, 160, 0.2);
    --text-primary: #2f3b58;
    --text-muted: rgba(70, 86, 122, 0.68);
    --border: rgba(245, 176, 167, 0.28);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(255, 202, 226, 0.28), transparent 60%),
        linear-gradient(135deg, #fff9f4 0%, #f4f1ff 45%, #f1fbff 100%);
}

.background {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(140deg, rgba(255, 255, 255, 0.85), rgba(255, 235, 205, 0.85)),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: blur(0px);
}

.overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 60px 20px;
}

.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 40px;
    background: var(--bg-overlay);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 28px 60px rgba(242, 193, 186, 0.28);
    backdrop-filter: blur(12px);
}

.branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.badge {
    display: inline-block;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--accent);
}

.logo-mark {
    width: 100px;
    max-width: 38vw;
    height: auto;
}

.logo-text {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
}

h1 {
    font-size: 36px;
    font-weight: 500;
    margin: 0 0 16px;
}

.tagline {
    font-size: 18px;
    color: var(--text-muted);
    margin: 0 auto 36px;
    max-width: 480px;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 36px;
}

.countdown-item {
    padding: 20px 12px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 0 20px rgba(244, 191, 182, 0.16);
}

.number {
    display: block;
    font-size: 34px;
    font-weight: 700;
}

.label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.notify-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.notify-form input {
    flex: 1 1 240px;
    padding: 14px 16px;
    border-radius: 999px;
    border: 1px solid rgba(245, 176, 167, 0.3);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    transition: border 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.notify-form input::placeholder {
    color: rgba(82, 99, 133, 0.55);
}

.notify-form input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 6px rgba(245, 167, 160, 0.16);
}

.notify-form button {
    padding: 14px 24px;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(245, 167, 160, 0.32);
}

.form-message {
    min-height: 20px;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 24px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-media a {
    color: var(--accent);
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.88);
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.social-media a:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 640px) {
    .container {
        padding: 36px 24px;
    }

    .logo-mark {
        width: 72px;
        max-width: 50vw;
        height: auto;
    }

    .logo-text {
        font-size: 36px;
    }

    h1 {
        font-size: 28px;
    }

    .countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
