/* * ===========================================================================
 * CHAMPION SKATING CLUB - OFFICIAL STYLESHEET 2026
 * Theme: Champion Gold & Cyber Black
 * ===========================================================================
 */

:root {
    --champion-gold: #FFD700;
    --gold-glow: rgba(255, 215, 0, 0.4);
    --dark-bg: #0a0a1a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a0a0c0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top right, #1a1a3a, var(--dark-bg));
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

/* --- NAVIGATION --- */
.nav-bar {
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--champion-gold);
}

/* --- REGISTRATION CARD --- */
.reg-card {
    max-width: 480px;
    width: 90%;
    background: var(--card-bg);
    margin: 40px 0;
    padding: 45px 35px;
    border-radius: 35px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.header {
    text-align: center;
    margin-bottom: 35px;
}

.logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid var(--champion-gold);
    object-fit: cover;
    box-shadow: 0 0 15px var(--gold-glow);
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--champion-gold);
}

.subtitle {
    font-size: 11px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: 0.7;
    margin-top: 5px;
}

/* --- FORM INPUTS --- */
.input-group {
    margin-bottom: 22px;
}

label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--champion-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input, select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus, select:focus {
    border-color: var(--champion-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* Fix for Select dropdown background */
select option {
    background: #1a1a3a;
    color: #fff;
}

.btn-pay {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 15px;
    color: #000;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s;
    margin-top: 15px;
}

.btn-pay:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--gold-glow);
}

/* --- SUCCESS OVERLAY --- */
#successOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 15, 0.98);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.success-content {
    max-width: 500px;
    width: 100%;
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* THE MASSIVE 120PX CHEST NUMBER */
.chest-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 120px; /* Detailed massive size */
    font-weight: 900;
    color: var(--champion-gold);
    line-height: 1;
    margin: 25px 0;
    text-shadow: 0 0 40px var(--gold-glow);
}

.alert-box {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold-glow);
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 35px;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-screenshot {
    background: #fff;
    color: #000;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-finish {
    background: transparent;
    color: #fff;
    border: 2px solid var(--glass-border);
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

@keyframes bounceIn {
    from { opacity: 0; transform: scale(0.3); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .reg-card { padding: 30px 20px; }
    .chest-badge { font-size: 100px; }
    h1 { font-size: 18px; }
}