/* ================================================================
   alpha-gate.css — Alpha gate / invite-only page
   Loaded by: templates/alpha_gate/gate.html.twig (standalone page)
   ================================================================ */

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

html, body {
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background: #0f0d14;
    color: #e8e4f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gate {
    width: 100%;
    max-width: 480px;
    padding: 24px;
}

/* ── Logo / branding ── */
.gate-brand {
    text-align: center;
    margin-bottom: 40px;
}
.gate-brand-logo {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C94B6D;
    opacity: 0.8;
}

/* ── Card ── */
.gate-card {
    background: #1a1726;
    border: 1px solid rgba(201, 75, 109, 0.2);
    border-radius: 16px;
    padding: 40px 36px;
}

/* ── Icon / emoji header ── */
.gate-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1;
}
.gate-heading {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.gate-subtext {
    text-align: center;
    font-size: 15px;
    color: #9b8fb0;
    line-height: 1.6;
    margin-bottom: 32px;
}
.gate-subtext strong {
    color: #C94B6D;
    font-weight: 600;
}

/* ── Divider ── */
.gate-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 75, 109, 0.3), transparent);
    margin-bottom: 32px;
}

/* ── Form ── */
.gate-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7c6f94;
    margin-bottom: 10px;
}
.gate-input {
    display: block;
    width: 100%;
    background: #110f1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #e8e4f0;
    letter-spacing: 0.5px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.gate-input::placeholder {
    color: #3d3654;
}
.gate-input:focus {
    border-color: #C94B6D;
    box-shadow: 0 0 0 3px rgba(201, 75, 109, 0.15);
}
.gate-input.error {
    border-color: #e05c5c;
}
.gate-error {
    margin-top: 10px;
    padding: 10px 14px;
    background: rgba(224, 92, 92, 0.1);
    border: 1px solid rgba(224, 92, 92, 0.3);
    border-radius: 6px;
    font-size: 13px;
    color: #f08080;
}
.gate-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    background: linear-gradient(135deg, #C94B6D 0%, #8B3A5C 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: opacity 0.2s, transform 0.15s;
}
.gate-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
.gate-btn:active {
    transform: translateY(0);
}

/* ── Footer note ── */
.gate-note {
    text-align: center;
    margin-top: 24px;
    font-size: 12px;
    color: #4d4468;
    line-height: 1.6;
}
.gate-note a {
    color: #7c6f94;
    text-decoration: none;
}

/* ── Invite list ── */
.invite-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.invite-list-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #110f1a;
    border: 1px solid rgba(201, 75, 109, 0.25);
    border-radius: 8px;
    color: #e8e4f0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
}
.invite-list-item a:hover {
    border-color: #C94B6D;
    background: #1e1a2e;
}
.invite-list-item .invite-arrow {
    color: #C94B6D;
    font-size: 16px;
}
.invite-list-item .invite-date {
    font-size: 12px;
    color: #7c6f94;
    margin-top: 2px;
}
.invite-list-item .invite-info {
    display: flex;
    flex-direction: column;
}
.invite-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7c6f94;
    margin-bottom: 12px;
}
