@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
    --gold: #d4af37;
    --gold-bright: #fcf6ba;
    --dark-bg: #000000;
    --card-bg: rgba(15, 15, 15, 0.95);
    --border: rgba(212, 175, 55, 0.25);
    --text-dim: #666;
    
    /* God-Tier Liquid Gold Gradient */
    --grad-gold: linear-gradient(135deg, #bf953f 0%, #fcf6ba 45%, #b38728 70%, #aa771c 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background Ambient Glow */
body::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

/* The Vault Card */
.auth-card {
    background: var(--card-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 40px;
    width: 440px; /* Adjusted to fit long brand name */
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
}

/* Scanner Line Animation */
.scanner-line {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: scan 4s linear infinite;
    opacity: 0.7;
    z-index: 10;
}

@keyframes scan {
    0% { top: 0%; }
    100% { top: 100%; }
}

/* Brand Section - Fixed for SKULLVENSIONGATEWAY */
.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.brand h2 {
    font-size: 0.95rem; /* Shrunk to fit the limit */
    letter-spacing: 3px;
    font-weight: 800;
    white-space: nowrap;
    text-transform: uppercase;
}

.brand h2 span {
    color: var(--gold);
    font-weight: 400;
    margin-left: 5px;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.desc {
    color: var(--text-dim);
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Choice Selection Styles */
.choice-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.choice-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
}

.choice-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.choice-card .icon { color: var(--gold); font-size: 1.4rem; }
.choice-card .title { display: block; font-weight: 700; font-size: 0.9rem; color: #fff; }
.choice-card .sub { font-size: 0.7rem; color: #444; }

/* Input Styles */
.input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.input-wrapper input {
    width: 100%;
    padding: 16px;
    background: #000;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.input-wrapper input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.input-wrapper label {
    position: absolute;
    left: 12px; top: -10px;
    background: #0f0f0f;
    padding: 0 8px;
    font-size: 0.65rem;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 1.5px;
}

/* God-Tier Gold Buttons (No more white shit) */
.btn-primary, .btn-cyan {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: var(--grad-gold);
    color: #000 !important; /* Bold black text on gold */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover, .btn-cyan:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    filter: brightness(1.1);
}

/* Step 2 Specifics */
.status-msg {
    font-size: 0.85rem;
    color: #bbb;
    text-align: center;
    margin: 20px 0;
    line-height: 1.5;
}

.status-msg b {
    color: var(--gold);
}

.otp-field input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 3px solid var(--gold);
    color: var(--gold) !important;
    font-size: 2.5rem;
    text-align: center;
    letter-spacing: 15px;
    margin-bottom: 35px;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}