body {
    background: linear-gradient(155deg, #ffffff 0%, var(--color-violet-tint) 60%, #dbeafe 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
}

.gate-content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.gate-logo {
    margin-bottom: 1rem;
    text-align: center;
}

.gate-logo img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(124,58,237,0.15));
}

.launch-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    margin-bottom: 1.25rem;
    padding: 1.25rem 1.5rem;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, var(--color-violet) 0%, #5b21b6 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 14px 30px rgba(91, 33, 182, 0.22);
}

.launch-card::after {
    content: "";
    position: absolute;
    top: -55px;
    right: -45px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.launch-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 0.3rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.launch-card h1 {
    margin: 0 0 1rem;
    color: white;
    font-size: 1.35rem;
    font-weight: 600;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.countdown-item {
    padding: 0.55rem 0.25rem 0.45rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
}

.countdown-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    opacity: 0.8;
    text-transform: uppercase;
}

.launch-pdf-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: white;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.launch-pdf-link:hover {
    color: white;
    border-color: white;
    opacity: 0.88;
}

.gate-card {
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-soft);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.gate-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-violet-tint);
    color: var(--color-violet);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gate-card h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.gate-card .subtitle {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.alert-danger {
    background: var(--color-danger-tint);
    color: var(--color-danger);
    border: 1px solid #FECACA;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    margin-bottom: 1.2rem;
}

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 6px;
}

@media (max-height: 850px) {
    .gate-content {
        justify-content: flex-start;
    }
}

.launch-notice {
    margin: 1rem 0 1.5rem;
    padding: 0.9rem 1.1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

.launch-notice i {
    margin-right: 0.4rem;
}