:root { 
    --primary: #2563eb; 
    --dark: #0f172a; 
    --light: #f8fafc; 
    --secondary: #64748b;
}

body { 
    font-family: 'Inter', sans-serif; 
    background: var(--dark); 
    color: white; 
    text-align: center; 
    margin: 0;
    overflow-x: hidden;
}

/* Splash Screen */
#splash { 
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: #0f172a; 
    z-index: 9999; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    transition: 0.8s ease-in-out; 
}

.enter-btn { 
    padding: 1.2rem 2.5rem; 
    border: none; 
    border-radius: 50px; 
    background: var(--primary); 
    color: white; 
    font-weight: 800; 
    cursor: pointer; 
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    transition: transform 0.2s;
}

.enter-btn:hover { transform: scale(1.05); }

/* Navigation */
nav {
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: 800; 
    font-size: 1.5rem; 
    color: var(--primary);
}

.nav-links { list-style: none; display: flex; gap: 2rem; margin: 0; padding: 0; }
.nav-links a { color: var(--light); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.nav-links a:hover { color: var(--primary); }

/* Layout */
.container { padding: 4rem 10%; max-width: 1200px; margin: 0 auto; }

h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 0.5rem; }
h2 { color: var(--primary); font-weight: 700; margin-top: 0; }

#typewriter { 
    height: 1.5rem; 
    color: var(--primary); 
    font-weight: 600; 
    margin-bottom: 2rem;
    font-family: monospace;
}

.hero-subtext { max-width: 600px; margin: 1.5rem auto 0; color: var(--secondary); }

/* Glassmorphism Card Style */
.leaderboard-card { 
    background: rgba(255,255,255,0.05); 
    backdrop-filter: blur(10px); 
    padding: 2.5rem; 
    border-radius: 20px; 
    border: 1px solid rgba(255,255,255,0.1); 
    margin-top: 2rem; 
    text-align: left;
}

/* Table Styling */
table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
th { color: var(--primary); padding: 15px; border-bottom: 2px solid #334155; text-align: left; text-transform: uppercase; font-size: 0.8rem; }
td { padding: 15px; border-bottom: 1px solid #334155; color: var(--light); }
tr:hover { background: rgba(255,255,255,0.02); }

.status-active { color: #4ade80; }
.status-limited { color: #fbbf24; }

.back-link { margin-top: 2rem; display: inline-block; color: #64748b; text-decoration: none; font-size: 0.9rem; }
.back-link:hover { color: white; }

p { line-height: 1.8; color: #cbd5e1; }
strong a { color: var(--primary); text-decoration: none; }
/* Specific styles for the contact form */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            text-align: left;
            gap: 0.5rem;
        }

        label {
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        input, textarea, select {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 1rem;
            color: white;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: border-color 0.3s;
        }

        input:focus, textarea:focus {
            border-color: var(--primary);
        }

        textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            background: var(--primary);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-weight: 800;
            cursor: pointer;
            transition: transform 0.2s, background 0.2s;
        }

        .submit-btn:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }

        /* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(15, 23, 42, 0.95); /* Darker for legibility */
    backdrop-filter: blur(15px);
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    margin-top: 10px;
    list-style: none;
    text-align: left;
}

/* Show on Hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Dropdown Links */
.dropdown-content li a {
    color: var(--light);
    padding: 10px 20px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.dropdown-content li a:hover {
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary);
}

/* Status Dots */
.dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
}

.dot.active { background-color: #4ade80; box-shadow: 0 0 8px #4ade80; }
.dot.limited { background-color: #fbbf24; box-shadow: 0 0 8px #fbbf24; }

/* Arrow indicator styling */
.dropbtn {
    cursor: default;
}