
body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    background: radial-gradient(circle at top right, #1e293b, #05070a);
    color: var(--text-light);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    /* Full screen premium feel */
}

/* Premium Loader Styles */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #05070a;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.logo-loader {
    font-size: 60px;
    color: var(--primary-gold);
    animation: pulseGold 2s infinite;
    margin-bottom: 20px;
}

.shimmer-bar {
    width: 150px;
    height: 3px;
    background: rgba(255, 215, 0, 0.1);
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.shimmer-bar::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 100%;
    background: var(--primary-gold);
    box-shadow: 0 0 15px var(--primary-gold);
    left: -60px;
    animation: loadingBar 1.5s infinite;
}

.loader-content p {
    color: #64748b;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes loadingBar {
    100% {
        left: 150px;
    }
}

@keyframes pulseGold {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 20px var(--primary-gold));
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 15px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 10px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    text-align: center;
}

/* Branding */
.logo-section {
    margin-bottom: 25px;
    font-family: var(--logo-font);
}

.logo-section h1 {
    font-size: 26px;
    letter-spacing: 2px;
    margin: 10px 0 0;
    font-weight: 800;
    font-family: var(--logo-font);
}

.logo-section span {
    color: var(--primary-gold);
    font-family: var(--logo-font);
}

.logo-section p {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

.gold-icon {
    font-size: 45px;
    color: var(--primary-gold);
    filter: drop-shadow (0 0 10px var(--gold-glow));
}

/* --- STEPPER UI --- */
.stepper-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #334155;
    color: #64748b;
    transition: 0.4s;
}

.step-active {
    background: var(--primary-gold);
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 15px var(--gold-glow);
}

.step-line {
    width: 30px;
    height: 2px;
    background: #334155;
    margin: 0 8px;
}

/* --- INPUT GROUPS --- */
.input-group {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    padding: 14px 18px;
    transition: 0.3s;
}

.input-group:focus-within {
    border-color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.05);
}

.input-group i {
    margin-right: 15px;
    color: var(--primary-gold);
    font-size: 18px;
}

.input-group input {
    background: none;
    border: none;
    color: white;
    outline: none;
    width: 100%;
    font-size: 15px;
}

/* --- Strength Password ---*/
.strength-wrapper {
    text-align: left;
    margin-bottom: 20px;
    padding: 0 5px;
}

.strength-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

#strength-fill {
    height: 100%;
    width: 0%;
    transition: 0.5s ease;
}

#strength-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- PREMIUM UPLOAD CARDS --- */
.upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.premium-upload {
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed #334155;
    border-radius: 20px;
    padding: 20px 10px;
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
}

.premium-upload:hover {
    border-color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.03);
}

.upload-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 22px;
    color: var(--primary-gold);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-upload span {
    font-size: 10px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.full-w {
    grid-column: span 2;
}

/* --- BUTTONS --- */
.btn-primary {
    background: linear-gradient(135deg, #FFD700, #b8860b);
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    color: #000;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    margin-top: 10px;
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.step-btns {
    display: flex;
    gap: 12px;
}

/* --- VERIFY PHASE --- */
.status-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon-wrapper i {
    font-size: 40px;
    color: var(--primary-gold);
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* --- UTILS --- */
.hidden {
    display: none;
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.scroll-area {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
}

.scroll-area::-webkit-scrollbar {
    width: 4px;
}

.scroll-area::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.switch-text {
    font-size: 13px;
    color: #888;
    margin-top: 20px;
}

.switch-text span {
    color: var(--primary-gold);
    font-weight: bold;
    cursor: pointer;
}

/* Animations */
.signup-step {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Verify Phase Styling */

.premium-verify-card {
    padding: 20px 10px;
}

.status-icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon-wrapper i {
    font-size: 24px;
    color: var(--primary-gold);
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.status-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary-gold);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 15px;
}

.info-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 12px;
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item i {
    color: var(--primary-gold);
}

.status-desc {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 20px;
}

.support-box {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.support-box a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

.btn-refresh {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-refresh:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-gold);
}

.verify-footer {
    margin-top: 10px;
    border-top: 1px solid var(--border-light);
    padding-top: 15px;
}

.logout-link {
    color: #ef4444;
    /* Premium Red shade */
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    opacity: 0.8;
}

.logout-link:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
    transform: translateY(-1px);
}

.logout-link i {
    font-size: 16px;
}


/* Premium Gender Selector */
.gender-selection {
    margin: 15px 0;
    text-align: left;
}

.section-label {
    font-size: 11px;
    color: #8e8e93;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 1px;
}

.gender-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gender-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 5px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.gender-option i {
    font-size: 20px;
    color: #636366;
}

.gender-option span {
    font-size: 10px;
    font-weight: 600;
    color: #aeaeb2;
}

/* Selected States */
input[type="radio"]:checked+label {
    background: rgba(255, 204, 45, 0.1);
    border-color: #ffcc2d;
}

input[type="radio"]:checked+label i,
input[type="radio"]:checked+label span {
    color: #ffcc2d;
}

/* Specific Colors on Hover */
#g-male:checked+label i {
    color: #00E676;
}

/* Parrot Green */
#g-female:checked+label i {
    color: #F48FB1;
}

/* Pink */