/* =========================================
   l00t — Auth (register / login / account)
   ========================================= */

/* ---------- Shared page wrapper ---------- */

.l00t-auth-page {
    max-width: 520px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.l00t-auth-hero {
    margin-bottom: 2.5rem;
}

/* ---------- Notice ---------- */

.l00t-auth-notice {
    padding: 1rem 1.25rem;
    background: rgba(200, 210, 255, 0.04);
    border: 1px solid rgba(200, 210, 255, 0.15);
    border-radius: 6px;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.95rem;
    color: rgba(230, 230, 240, 0.8);
    text-align: center;
    margin-bottom: 2rem;
}

.l00t-auth-notice a {
    color: #c8d2ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 210, 255, 0.3);
}

.l00t-auth-notice a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* ---------- Form container ---------- */

.l00t-auth {
    padding: 2rem 2rem 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 210, 255, 0.12);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

/* Kill any stray <br> WP filters might inject */
.l00t-auth br {
    display: none !important;
}

.l00t-auth p {
    margin: 0 !important;
}

.l00t-auth::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 210, 255, 0.5), transparent);
}

/* ---------- Errors ---------- */

.l00t-auth-errors {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 128, 128, 0.05);
    border: 1px solid rgba(255, 128, 128, 0.25);
    border-radius: 6px;
}

.l00t-auth-error {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.88rem;
    color: #ff8080;
    line-height: 1.4;
}

/* ---------- Form ---------- */

.l00t-auth-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 0;
}

.l00t-auth-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0;
}

.l00t-auth-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 0;
}

.l00t-auth-row label {
    display: block;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(200, 210, 255, 0.55);
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.l00t-auth-row input[type="text"],
.l00t-auth-row input[type="email"],
.l00t-auth-row input[type="password"] {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.95rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(200, 210, 255, 0.15);
    border-radius: 6px;
    padding: 0.65rem 0.9rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.4;
    margin: 0;
}

.l00t-auth-row input::placeholder {
    color: rgba(200, 200, 210, 0.3);
}

.l00t-auth-row input:focus {
    border-color: rgba(200, 210, 255, 0.6);
    background: rgba(0, 0, 0, 0.55);
    box-shadow:
        0 0 0 3px rgba(200, 210, 255, 0.08),
        0 0 20px rgba(200, 210, 255, 0.12);
}

.l00t-auth-hint {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.72rem;
    color: rgba(200, 200, 210, 0.4);
    margin: 0.15rem 0 0;
    letter-spacing: 0.3px;
    line-height: 1.35;
}

/* ---------- Inline row (remember / forgot) ---------- */

.l00t-auth-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: -0.15rem 0 0;
}

.l00t-auth-check {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.85rem;
    color: rgba(200, 200, 210, 0.6);
    cursor: pointer;
    user-select: none;
}

.l00t-auth-check input {
    accent-color: #c8d2ff;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.l00t-auth-forgot {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    color: rgba(200, 210, 255, 0.65);
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 210, 255, 0.25);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.l00t-auth-forgot:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* ---------- Submit button ---------- */

.l00t-auth-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;

    padding: 0.85rem 1.75rem;
    margin-top: 0.35rem;

    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8d2ff;
    cursor: pointer;

    background: linear-gradient(135deg,
        rgba(200, 210, 255, 0.08) 0%,
        rgba(120, 80, 200, 0.08) 100%);
    border: 1px solid rgba(200, 210, 255, 0.35);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.l00t-auth-submit svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.l00t-auth-submit:hover {
    color: #fff;
    border-color: rgba(200, 210, 255, 0.8);
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 24px rgba(200, 210, 255, 0.22);
}

.l00t-auth-submit:hover svg {
    transform: translateX(4px);
}

.l00t-auth-submit:active {
    transform: translateY(0);
}

/* ---------- Alternate action ---------- */

.l00t-auth-alt {
    text-align: center;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.85rem;
    color: rgba(200, 200, 210, 0.55);
    margin: 0.25rem 0 0 !important;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(200, 210, 255, 0.08);
    line-height: 1.4;
}

.l00t-auth-alt a {
    color: #c8d2ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 210, 255, 0.3);
    margin-left: 0.25rem;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.l00t-auth-alt a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* =========================================
   Account page
   ========================================= */

.l00t-account-page {
    max-width: 900px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
}

.l00t-account {
    font-family: 'Rajdhani', system-ui, sans-serif;
}

/* Header */
.l00t-account-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 210, 255, 0.12);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.l00t-account-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 210, 255, 0.4), transparent);
}

.l00t-account-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(200, 210, 255, 0.25);
    display: block;
}

.l00t-account-id {
    flex: 1;
    min-width: 0;
}

.l00t-account-name {
    font-family: 'Orbitron', 'Rajdhani', system-ui, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    margin: 0 0 0.25rem;
    text-transform: lowercase;
    line-height: 1.2;
}

.l00t-account-email {
    font-size: 0.9rem;
    color: rgba(200, 200, 210, 0.55);
    margin: 0;
    letter-spacing: 0.3px;
}

/* Status badge */
.l00t-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.95rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    white-space: nowrap;
    border: 1px solid;
}

.l00t-status-badge.is-none {
    color: rgba(200, 200, 210, 0.6);
    border-color: rgba(200, 200, 210, 0.25);
    background: rgba(200, 200, 210, 0.04);
}

.l00t-status-badge.is-pending {
    color: #ff9b40;
    border-color: rgba(255, 155, 64, 0.35);
    background: rgba(255, 155, 64, 0.08);
}

.l00t-status-badge.is-active {
    color: #6ee7a0;
    border-color: rgba(110, 231, 160, 0.4);
    background: rgba(110, 231, 160, 0.08);
    box-shadow: 0 0 18px rgba(110, 231, 160, 0.15);
}

.l00t-status-badge.is-expired {
    color: #ff8080;
    border-color: rgba(255, 128, 128, 0.35);
    background: rgba(255, 128, 128, 0.06);
}

/* Cards grid */
.l00t-account-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.l00t-account-card {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 210, 255, 0.1);
    border-radius: 8px;
    transition: border-color 0.25s ease;
}

.l00t-account-card:hover {
    border-color: rgba(200, 210, 255, 0.25);
}

.l00t-account-card-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(200, 210, 255, 0.45);
}

.l00t-account-card-value {
    font-family: 'Orbitron', 'Rajdhani', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
    text-transform: lowercase;
    line-height: 1.3;
    word-break: break-word;
}

.l00t-account-card-value em {
    font-style: normal;
    color: rgba(200, 200, 210, 0.4);
    font-weight: 400;
    font-size: 0.9rem;
}

.l00t-account-card-hint {
    font-size: 0.78rem;
    color: rgba(200, 200, 210, 0.45);
    margin: 0.3rem 0 0;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.l00t-hint-warn {
    color: #ff8080;
}

/* Actions in card */
.l00t-account-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.4rem;
}

.l00t-account-action {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(200, 210, 255, 0.75);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 210, 255, 0.15);
    border-radius: 4px;
    transition: all 0.25s ease;
}

.l00t-account-action:hover {
    color: #fff;
    border-color: rgba(200, 210, 255, 0.5);
    background: rgba(200, 210, 255, 0.06);
}

.l00t-account-action-danger:hover {
    color: #ff8080;
    border-color: rgba(255, 128, 128, 0.4);
    background: rgba(255, 128, 128, 0.05);
}

/* CTA block */
.l00t-account-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg,
        rgba(200, 210, 255, 0.05) 0%,
        rgba(120, 80, 200, 0.05) 100%);
    border: 1px solid rgba(200, 210, 255, 0.2);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.l00t-account-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 210, 255, 0.7), transparent);
}

.l00t-account-cta-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8d2ff;
    background: rgba(200, 210, 255, 0.06);
    border: 1px solid rgba(200, 210, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.l00t-account-cta-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.l00t-account-cta-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 0.35rem;
    text-transform: lowercase;
}

.l00t-account-cta-text p {
    font-size: 0.9rem;
    color: rgba(200, 200, 210, 0.55);
    margin: 0;
    line-height: 1.5;
}

.l00t-account-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #c8d2ff;
    background: rgba(200, 210, 255, 0.05);
    border: 1px solid rgba(200, 210, 255, 0.4);
    border-radius: 5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.l00t-account-cta-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.l00t-account-cta-btn:hover {
    color: #fff;
    border-color: rgba(200, 210, 255, 0.8);
    background: rgba(200, 210, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 22px rgba(200, 210, 255, 0.25);
}

.l00t-account-cta-btn:hover svg {
    transform: translateX(4px);
}

/* ---------- Responsive ---------- */

@media (max-width: 700px) {
    .l00t-auth-page {
        padding: 0 1.25rem;
        margin-bottom: 4rem;
    }

    .l00t-auth {
        padding: 1.75rem 1.5rem;
    }

    .l00t-auth-row-2 {
        grid-template-columns: 1fr;
    }

    .l00t-auth-submit {
        width: 100%;
    }

    .l00t-account-page {
        padding: 0 1.25rem;
        margin: 2.5rem auto 4rem;
    }

    .l00t-account-header {
        padding: 1.25rem 1.25rem;
        gap: 1rem;
    }

    .l00t-account-avatar img {
        width: 56px;
        height: 56px;
    }

    .l00t-account-name {
        font-size: 1.1rem;
    }

    .l00t-account-grid {
        grid-template-columns: 1fr;
    }

    .l00t-account-cta {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 1.25rem;
    }

    .l00t-account-cta-icon {
        margin: 0 auto;
    }

    .l00t-account-cta-btn {
        justify-content: center;
        width: 100%;
    }
}