@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Orbitron:wght@500;700;900&display=swap');

:root {
    --bg-dark: #0A0A0A;
    --bg-surface: #1B1B1B;
    --neon-orange: #FF6A00;
    --neon-green: #00FF88;
    --neon-blue: #00CFFF;
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(27, 27, 27, 0.65);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Background Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: white;
    opacity: 0.3;
    animation: floatParticle 10s infinite linear;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-neon-orange { color: var(--neon-orange); text-shadow: 0 0 10px rgba(255, 106, 0, 0.5); }
.text-neon-green { color: var(--neon-green); text-shadow: 0 0 10px rgba(255, 136, 0, 0.5); }
.text-neon-blue { color: var(--neon-blue); text-shadow: 0 0 10px rgba(0, 207, 255, 0.5); }
.text-light { color: var(--text-light); }
.text-center { text-align: center; }
.text-sm { font-size: 0.85rem; color: var(--text-muted); }

.glow-text {
    text-shadow: 0 0 15px currentColor;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-padding {
    padding: 120px 0 60px 0;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mx-1 { margin: 0 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.w-100 { width: 100%; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-column { flex-direction: column; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-neon-orange {
    background: var(--neon-orange);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.4);
}
.btn-neon-orange:hover {
    box-shadow: 0 0 25px rgba(255, 106, 0, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-neon-blue {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 207, 255, 0.4);
}
.btn-neon-blue:hover {
    box-shadow: 0 0 25px rgba(0, 207, 255, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline-orange {
    background: transparent;
    color: var(--neon-orange);
    border: 2px solid var(--neon-orange);
}
.btn-outline-orange:hover {
    background: rgba(255, 106, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.5);
}

.btn-outline-blue {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}
.btn-outline-blue:hover {
    background: rgba(0, 207, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 207, 255, 0.5);
}

.btn-outline-green {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
}
.btn-outline-green:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.neon-hover-orange:hover {
    border-color: var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
    transform: translateY(-5px);
}
.neon-hover-blue:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.3);
    transform: translateY(-5px);
}
.neon-hover-green:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.logo span {
    color: var(--neon-orange);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-blue);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-graphics {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-main {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 207, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.icon-1 { top: 10%; left: 10%; animation: float 5s ease-in-out infinite; }
.icon-2 { bottom: 20%; right: 10%; animation: float 7s ease-in-out infinite; }
.icon-3 { bottom: 10%; left: 20%; animation: float 6s ease-in-out infinite reverse; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Event Cards */
.event-card .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    margin: 10px 0;
    font-size: 1.2rem;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
}
.badge-upcoming { background: rgba(0, 207, 255, 0.2); color: var(--neon-blue); border: 1px solid var(--neon-blue); }
.badge-live { background: rgba(255, 106, 0, 0.2); color: var(--neon-orange); border: 1px solid var(--neon-orange); animation: pulse 2s infinite; }
.badge-finished { background: rgba(0, 255, 136, 0.2); color: var(--neon-green); border: 1px solid var(--neon-green); }

.event-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.countdown {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--neon-blue);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 4px;
    border: 1px solid rgba(0, 207, 255, 0.3);
}

.live-indicator {
    font-family: var(--font-heading);
    text-align: center;
    color: var(--neon-orange);
    background: rgba(255, 106, 0, 0.1);
    padding: 10px;
    border-radius: 4px;
    animation: pulse 2s infinite;
}

.winner-text {
    text-align: center;
    color: var(--neon-green);
    font-weight: bold;
    padding: 10px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 4px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 106, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0); }
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    padding: 60px 0;
}

.stat-box h3 {
    font-size: 3.5rem;
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
    margin-bottom: 10px;
}
.stat-box p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: #050505;
    border-top: 1px solid var(--glass-border);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--neon-blue);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Clubs Page */
.club-card {
    padding: 25px;
    display: flex;
    flex-direction: column;
}
.club-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.club-icon {
    font-size: 2.5rem;
}
.club-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}
.club-desc {
    flex-grow: 1;
    font-size: 0.95rem;
}

/* Events List */
.event-list { display: flex; flex-direction: column; gap: 20px; }
.event-row { display: flex; gap: 20px; }
.event-row-img { width: 300px; height: auto; object-fit: cover; border-right: 1px solid var(--glass-border); }
.event-row-info { padding: 20px; flex-grow: 1; }

/* Forum */
.forum-table {
    display: flex;
    flex-direction: column;
}
.forum-header {
    display: flex;
    background: rgba(0,0,0,0.5);
    padding: 15px;
    font-family: var(--font-heading);
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
}
.forum-row {
    display: flex;
    padding: 20px 15px;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.3s;
}
.forum-row:last-child { border-bottom: none; }
.col-main { flex: 3; }
.col-stats { flex: 1; text-align: center; color: var(--text-muted); display: flex; align-items: center; justify-content: center; }
.col-last { flex: 1; text-align: right; font-size: 0.9rem; display: flex; flex-direction: column; justify-content: center; }

.neon-border-hover-blue:hover { background: rgba(0, 207, 255, 0.05); border-left: 4px solid var(--neon-blue); }
.neon-border-hover-green:hover { background: rgba(0, 255, 136, 0.05); border-left: 4px solid var(--neon-green); }
.neon-border-hover-orange:hover { background: rgba(255, 106, 0, 0.05); border-left: 4px solid var(--neon-orange); }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    height: 250px;
    cursor: pointer;
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 20px;
    font-family: var(--font-heading);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Leaderboards */
.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin: 40px 0;
    min-height: 250px;
}
.podium-box {
    width: 30%;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}
.rank-1 { height: 220px; border-top: 3px solid var(--neon-orange); box-shadow: 0 -10px 20px rgba(255, 106, 0, 0.2); }
.rank-2 { height: 180px; border-top: 3px solid var(--neon-blue); box-shadow: 0 -10px 20px rgba(0, 207, 255, 0.2); }
.rank-3 { height: 150px; border-top: 3px solid var(--neon-green); box-shadow: 0 -10px 20px rgba(0, 255, 136, 0.2); }
.rank-badge {
    position: absolute;
    top: -20px; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-family: var(--font-heading); font-weight: bold; background: #000;
}
.gold { border: 2px solid var(--neon-orange); color: var(--neon-orange); box-shadow: 0 0 10px var(--neon-orange); }
.silver { border: 2px solid var(--neon-blue); color: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue); }
.bronze { border: 2px solid var(--neon-green); color: var(--neon-green); box-shadow: 0 0 10px var(--neon-green); }

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}
.leaderboard-table th, .leaderboard-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}
.leaderboard-table th {
    font-family: var(--font-heading);
    color: var(--neon-blue);
    text-transform: uppercase;
}
.leaderboard-table tr:hover {
    background: rgba(255,255,255,0.05);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: var(--text-muted);
}
.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 4px;
    font-family: var(--font-body);
}
.form-control:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Text Content pages */
.text-content p { margin-bottom: 15px; }
.custom-list { margin-left: 20px; margin-bottom: 20px; }
.custom-list li { margin-bottom: 10px; list-style-type: square; color: var(--neon-blue); }
.custom-list li strong { color: #fff; }

/* Responsive */
@media (max-width: 992px) {
    .hero { flex-direction: column; text-align: center; padding-top: 150px; }
    .hero-buttons { justify-content: center; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .event-row { flex-direction: column; }
    .event-row-img { width: 100%; height: 200px; border-right: none; border-bottom: 1px solid var(--glass-border); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: -1;
    }
    .nav-links.active {
        transform: translateY(0);
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .hero h1 { font-size: 2.8rem; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .podium { flex-direction: column; align-items: center; }
    .podium-box { width: 100%; margin-bottom: 20px; height: auto; padding: 20px; }
    .rank-badge { top: -15px; }
}

@media (max-width: 480px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { flex-direction: column; }
    .col-stats { display: none; }
    .forum-row { flex-direction: column; gap: 10px; }
    .col-last { text-align: left; }
}