* { box-sizing: border-box; }

html, body {
    margin: 0;
    height: 100%;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #fff;
    background: radial-gradient(circle at top, #2b0e2e 0%, #0d0410 70%);
}

.gate-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 18px;
}

.gate-card {
    width: 100%;
    max-width: 560px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 22px;
    padding: 44px 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    text-align: center;
}

.gate-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff2d6f, #6a1b9a);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.gate-card h1 {
    margin: 6px 0 14px;
    font-size: 2rem;
    letter-spacing: 0.5px;
}

.gate-lead {
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 22px;
}

.gate-points {
    text-align: left;
    margin: 0 auto 28px;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.gate-points li { margin: 6px 0; }

.gate-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 22px;
}

.btn {
    border: 0;
    cursor: pointer;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 1rem;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-enter {
    background: linear-gradient(135deg, #ff2d6f, #c2185b);
    color: #fff;
    font-weight: 600;
}

.btn-enter:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(255, 45, 111, 0.35); }

.btn-leave {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-leave:hover { background: rgba(255, 255, 255, 0.08); }

.gate-disclaimer {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}
