/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2rem;
    color: #764ba2;
    text-align: center;
}

.header h1 span {
    color: #667eea;
    font-size: 1rem;
    display: block;
}

/* Cards */
.card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 0.95rem;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
}

input.error, select.error {
    border-color: #ff4d4f;
}

.help-text {
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
}

.error-message {
    color: #ff4d4f;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-block {
    width: 100%;
}

.btn-danger {
    background: linear-gradient(135deg, #ff4d4f 0%, #ff7875 100%);
}

.btn-danger:hover {
    box-shadow: 0 5px 15px rgba(255, 77, 79, 0.4);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Player fields */
.player-fields {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.player-fields h3 {
    color: #555;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.player-entry {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

.player-entry h4 {
    color: #667eea;
    margin-bottom: 15px;
}

.countdown-box {
    text-align: center;
    margin-top: 50px;
}

.coming-text {
    font-size: 28px;
    margin-bottom: 20px;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #00f2ff; }
    to { text-shadow: 0 0 25px #ff00ff; }
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

#countdown div {
    background: #111;
    padding: 15px;
    border-radius: 8px;
}

#countdown span {
    font-size: 24px;
    color: #00f2ff;
}


/* Tables */
.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th,
table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #555;
}

table tr:hover {
    background: #f9f9f9;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
}

/* Login form */
.login-form {
    max-width: 400px;
    margin: 100px auto;
}

/* Success page */
.success-icon {
    text-align: center;
    margin-bottom: 30px;
}

.success-icon i {
    font-size: 5rem;
    color: #28a745;
}

.details-box {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.details-box p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.details-box strong {
    color: #555;
    width: 150px;
    display: inline-block;
}

/* Filters */
.filters {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filters select,
.filters input {
    flex: 1;
    min-width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 20px;
    }
    
    .filters {
        flex-direction: column;
    }
    
    .filters select,
    .filters input {
        width: 100%;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    table th,
    table td {
        padding: 8px;
    }
    
    .details-box p strong {
        width: 120px;
    }
}

/* Loading */
.loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.loading.show {
    display: block;
}

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 0;
    color: white;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.header p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Cards */
.card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.card h2 {
    margin-bottom: 25px;
    color: #4a5568;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9em;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s;
}

input:focus, select:focus {
    outline: none;
    border-color: #667eea;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    margin-right: 10px;
}

.btn:hover {
    background: #5a67d8;
}

.btn-success {
    background: #48bb78;
}

.btn-success:hover {
    background: #38a169;
}

.btn-danger {
    background: #f56565;
}

.btn-danger:hover {
    background: #e53e3e;
}

.btn-block {
    display: block;
    width: 100%;
}

/* OTP Section */
.otp-section {
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.otp-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.otp-input-group input {
    flex: 1;
}

.otp-input-group .btn {
    width: auto;
    padding: 12px 20px;
}

/* Player Section */
.player-section {
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
}

.player-section h3 {
    margin-bottom: 15px;
    color: #4a5568;
}

/* Tables */
.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

th {
    background: #f7fafc;
    font-weight: 600;
    color: #4a5568;
}

tr:hover {
    background: #f7fafc;
}

/* Status Badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    display: inline-block;
}

.status-success {
    background: #c6f6d5;
    color: #22543d;
}

.status-pending {
    background: #feebc8;
    color: #744210;
}

.status-failed {
    background: #fed7d7;
    color: #742a2a;
}

/* Success Page */
.success-icon {
    text-align: center;
    font-size: 80px;
    color: #48bb78;
    margin-bottom: 20px;
}

.success-details {
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #4a5568;
}

/* Admin Login */
.login-container {
    max-width: 400px;
    margin: 100px auto;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

/* Filter Section */
.filter-section {
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.filter-section .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 20px;
    }
    
    .filter-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .header h1 {
        font-size: 2em;
    }
    
    .card {
        padding: 20px;
    }
    
    .otp-input-group {
        flex-direction: column;
    }
    
    .otp-input-group .btn {
        width: 100%;
    }
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.alert-error {
    background: #fed7d7;
    color: #742a2a;
    border: 1px solid #fc8181;
}

/* Loading Spinner */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

:root {
    /* Dark Gaming Theme with Neon Green */
    --bg-primary: #0a0c0f;
    --bg-secondary: #111316;
    --bg-dark: #050607;
    --neon-green: #00ff88;
    --neon-green-dark: #00cc66;
    --neon-green-glow: rgba(0, 255, 136, 0.3);
    --accent-purple: #9933ff;
    --accent-blue: #3366ff;
    --text-primary: #ffffff;
    --text-secondary: #b0b3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(0, 255, 136, 0.1);
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #00ff88, #00cc66);
    --grad-dark: linear-gradient(135deg, #00cc66, #00994d);
    --grad-glow: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 204, 102, 0.2));
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px var(--neon-green-glow);
    --shadow-glow-strong: 0 0 40px rgba(0, 255, 136, 0.5);
    
    /* Animations */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* Gradient Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(153, 51, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Floating Orbs */
.floating-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    animation: floatOrb 20s infinite alternate;
}

.orb1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 255, 136, 0.1);
    top: -100px;
    left: -100px;
    animation-duration: 25s;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: rgba(153, 51, 255, 0.1);
    bottom: -100px;
    right: -100px;
    animation-duration: 20s;
    animation-delay: -5s;
}

.orb3 {
    width: 300px;
    height: 300px;
    background: rgba(0, 204, 255, 0.1);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 18s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -50px) scale(1.2); }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float i {
    font-size: 24px;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-fast);
    background: rgba(5, 6, 7, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(5, 6, 7, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
}

.logo-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.logo-highlight {
    background: linear-gradient(135deg, #9933ff, #3366ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 5px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--grad-primary);
    transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--neon-green);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-register-btn {
    background: var(--grad-primary);
    color: var(--bg-primary);
    text-decoration: none;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    margin: 3px 0;
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-primary) 90%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    margin-bottom: 2rem;
}

.badge-glow {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 0.5rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 3px;
    display: inline-block;
    box-shadow: var(--shadow-glow);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.6); }
}

.hero-title {
    margin-bottom: 2rem;
}

.title-outline {
    font-size: 6rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--neon-green);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    line-height: 1.1;
}

.title-gradient {
    font-size: 6rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    display: block;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.title-sub {
    font-size: 2.5rem;
    font-weight: 600;
    display: block;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-outline {
    background: transparent;
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.btn-outline:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-glow {
    animation: btnGlow 2s infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 50px rgba(0, 255, 136, 0.6); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.hero-scroll-indicator i {
    animation: scrollBounce 2s infinite;
    color: var(--neon-green);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 136, 0.05));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--grad-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--bg-primary);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.stat-card:hover .stat-glow {
    opacity: 1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Prize Pool Section */
.prize-pool {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(0, 255, 136, 0.05), transparent);
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.prize-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow-strong);
}

.prize-card.gold {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.prize-card.silver {
    border-color: #c0c0c0;
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
}

.prize-card.bronze {
    border-color: #cd7f32;
    box-shadow: 0 0 30px rgba(205, 127, 50, 0.2);
}

.prize-crown {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #ffd700;
    animation: crownFloat 3s infinite;
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.prize-rank {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.prize-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.prize-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.gold .prize-amount {
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.silver .prize-amount {
    color: #c0c0c0;
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
}

.bronze .prize-amount {
    color: #cd7f32;
    text-shadow: 0 0 30px rgba(205, 127, 50, 0.5);
}

.prize-extras {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.prize-extras span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.prize-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.prize-card:hover .prize-glow {
    opacity: 1;
}

.prize-total {
    text-align: center;
    margin-top: 3rem;
}

.total-content {
    background: var(--grad-primary);
    display: inline-block;
    padding: 1.5rem 4rem;
    border-radius: 60px;
}

.total-label {
    display: block;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--bg-primary);
    margin-bottom: 0.5rem;
}

.total-amount {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--bg-primary);
}

/* Match Details Section */
.match-details {
    padding: 6rem 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 136, 0.05));
}

.match-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.match-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all var(--transition-fast);
}

.match-card:hover {
    transform: translateX(10px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-glow);
}

.match-icon {
    width: 60px;
    height: 60px;
    background: var(--grad-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.match-icon i {
    font-size: 2rem;
    color: var(--bg-primary);
}

.match-content {
    flex: 1;
}

.match-content h3 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.match-content p {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 0.3rem;
}

.match-tag {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.match-types {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.match-types span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Why Join Section */
.why-join {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--grad-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--bg-primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.feature-hover-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.feature-card:hover .feature-hover-glow {
    opacity: 1;
}

/* Registration CTA Section */
.registration-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent);
}

.cta-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--neon-green);
    border-radius: 50px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-glow-strong);
    position: relative;
    overflow: hidden;
}

.cta-badge {
    background: linear-gradient(135deg, #ff3366, #ff0066);
    color: white;
    display: inline-block;
    padding: 0.5rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: badgePulse 2s infinite;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    display: block;
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-giant {
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-note {
    color: var(--text-secondary);
    font-size: 1rem;
}

.cta-note i {
    color: var(--neon-green);
    margin-right: 0.5rem;
}

/* Legal Disclaimer Section */
.legal-disclaimer {
    padding: 6rem 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}

.disclaimer-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.disclaimer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.disclaimer-header i {
    font-size: 2rem;
    color: var(--neon-green);
}

.disclaimer-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-green);
    letter-spacing: 2px;
}

.disclaimer-highlight {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.disclaimer-highlight i {
    font-size: 2rem;
    color: #ffc107;
}

.disclaimer-highlight p {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffc107;
    text-align: center;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.disclaimer-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    transition: all var(--transition-fast);
}

.disclaimer-item:hover {
    background: rgba(0, 255, 136, 0.05);
    transform: translateX(10px);
}

.disclaimer-icon {
    flex-shrink: 0;
}

.disclaimer-icon i {
    font-size: 1.8rem;
    color: var(--neon-green);
}

.disclaimer-text h4 {
    font-size: 1.2rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

.disclaimer-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.disclaimer-text ul {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
    color: var(--text-secondary);
}

.disclaimer-text li {
    margin-bottom: 0.3rem;
}

.disclaimer-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-footer p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.disclaimer-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--neon-green);
    font-weight: 600;
    letter-spacing: 1px;
}

.disclaimer-seal i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-logo span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-green);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--neon-green);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.contact-info li i {
    width: 20px;
    color: var(--neon-green);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 1px solid var(--glass-border);
}

.footer-social a:hover {
    background: var(--neon-green);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 99;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-strong);
}

/* Responsive Design */
@media (max-width: 1200px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .stats-grid,
    .prize-grid,
    .match-grid,
    .features-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .title-outline,
    .title-gradient {
        font-size: 4rem;
    }
    
    .title-sub {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(5, 6, 7, 0.98);
        backdrop-filter: blur(10px);
        transition: left var(--transition-normal);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid,
    .prize-grid,
    .match-grid,
    .features-grid,
    .footer-grid,
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .disclaimer-header {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-highlight {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .title-outline,
    .title-gradient {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.3rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .prize-card {
        padding: 2rem 1rem;
    }
    
    .cta-card {
        padding: 2rem 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }
    
    .whatsapp-float i {
        font-size: 24px;
        margin: 0;
    }
}

/* Animation Classes */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}