/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #242226;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #F93B78, #7F33AE, #1554E1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #F93B78, #7F33AE);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #b0b3b8;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.section-header {
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #F93B78, #7F33AE);
    color: white;
    box-shadow: 0 10px 30px rgba(249, 59, 120, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(249, 59, 120, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #F93B78;
    border: 2px solid #F93B78;
}

.btn-outline:hover {
    background: #F93B78;
    color: #242226;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(10, 10, 15, 0.1);
    backdrop-filter: blur(20px);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #F93B78;
}

.nav-logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, #F93B78, #7F33AE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #F93B78, #7F33AE);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 59, 120, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(127, 51, 174, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(21, 84, 225, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #242226 0%, #1a1a2e 100%);
    animation: parallaxFloat 20s ease-in-out infinite;
    z-index: -2;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(249,59,120,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: gridMove 30s linear infinite;
}

@keyframes parallaxFloat {
    0%, 100% { transform: translate(-10px, -10px) rotate(0deg); }
    33% { transform: translate(10px, -20px) rotate(1deg); }
    66% { transform: translate(-20px, 10px) rotate(-1deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #F93B78, #7F33AE, #1554E1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-line:nth-child(1) {
    animation: slideInLeft 1s ease-out 0.2s both;
}

.title-line:nth-child(2) {
    animation: slideInRight 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b3b8;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #F93B78;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    display: block;
    color: #b0b3b8;
    font-size: 0.9rem;
    margin-top: 5px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #F93B78;
    border-bottom: 2px solid #F93B78;
    transform: rotate(45deg);
    margin: 0 auto 10px;
}

.scroll-indicator span {
    color: #b0b3b8;
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Tournaments Section */
.tournaments-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
    position: relative;
    z-index: 5; /* Ensure it stays on top of any bleeding backgrounds */
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tournament-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #F93B78, #7F33AE);
}

.tournament-card.featured {
    border-color: #F93B78;
    box-shadow: 0 20px 60px rgba(249, 59, 120, 0.2);
    transform: scale(1.02);
}

.tournament-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(249, 59, 120, 0.3);
}

.tournament-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tournament-game {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: #F93B78;
}

.tournament-game img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.tournament-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tournament-status.live {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.tournament-status.upcoming {
    background: rgba(255, 165, 0, 0.2);
    color: #ffaa00;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.tournament-status.live i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.tournament-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.tournament-prize {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffaa00;
    margin-bottom: 15px;
}

.tournament-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b3b8;
    font-size: 0.9rem;
}

.tournament-progress {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #F93B78, #7F33AE);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.view-all {
    text-align: center;
}

/* Parallax Backgrounds */
.parallax-bg-2, .parallax-bg-3, .parallax-bg-4 {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}

.matches-section .container,
.games-section .container,
.prizes-section .container {
    position: relative;
    z-index: 2;
}

.parallax-bg-2 {
    background: 
        radial-gradient(circle at 70% 30%, rgba(127, 51, 174, 0.15) 0%, transparent 50%),
        linear-gradient(225deg, #242226 0%, #2d1b69 100%);
}

.parallax-bg-3 {
    background: 
        radial-gradient(circle at 30% 70%, rgba(21, 84, 225, 0.15) 0%, transparent 50%),
        linear-gradient(45deg, #242226 0%, #1a2332 100%);
}

.parallax-bg-4 {
    background: 
        radial-gradient(circle at 50% 50%, rgba(249, 59, 120, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #242226 0%, #3d0a2e 100%);
}

/* Matches Section */
.matches-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.match-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(249, 59, 120, 0.2);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.match-game {
    font-weight: 600;
    color: #F93B78;
    font-size: 0.9rem;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.team img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.team span {
    font-weight: 600;
    color: white;
}

.match-score {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Orbitron', monospace;
}

.score {
    font-size: 2rem;
    font-weight: 900;
    color: #F93B78;
    min-width: 40px;
    text-align: center;
}

.vs {
    color: #b0b3b8;
    font-size: 0.9rem;
}

.match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #b0b3b8;
    font-size: 0.9rem;
}

.match-viewers {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Leaderboards Section */
.leaderboards-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0f 100%);
}

.leaderboards-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leaderboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.tab-btn {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #b0b3b8;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #F93B78, #7F33AE);
    color: white;
}

.leaderboard-table {
    width: 100%;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 80px 1fr 120px 100px 120px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.table-header {
    font-weight: 600;
    color: #F93B78;
    border-bottom-color: rgba(249, 59, 120, 0.3);
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.table-row.champion {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 0, 110, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    margin-bottom: 10px;
}

.rank {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}

.rank i {
    color: #ffd700;
    font-size: 1.2rem;
}

.player {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.player-info .name {
    display: block;
    font-weight: 600;
    color: white;
}

.player-info .country {
    font-size: 0.8rem;
    color: #b0b3b8;
}

.points {
    font-weight: 600;
    color: #F93B78;
    font-family: 'Orbitron', monospace;
}

.wins {
    font-weight: 600;
    color: #66D82C;
}

.earnings {
    font-weight: 600;
    color: #ffaa00;
}

/* Games Section */
.games-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(249, 59, 120, 0.2);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 59, 120, 0.8), rgba(127, 51, 174, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-stats {
    display: flex;
    gap: 30px;
    text-align: center;
}

.game-stats .stat {
    color: white;
}

.game-stats .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

.game-stats .label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.game-info p {
    color: #b0b3b8;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.game-actions {
    display: flex;
    gap: 10px;
}

.game-actions .btn {
    flex: 1;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Clubs Section */
.clubs-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.club-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.club-card.featured {
    border-color: #ffaa00;
    box-shadow: 0 20px 40px rgba(255, 170, 0, 0.2);
}

.club-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(249, 59, 120, 0.2);
}

.club-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.club-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #F93B78;
}

.club-info h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 5px;
}

.club-level {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffaa00;
    font-size: 0.9rem;
}

.club-members {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b3b8;
}

.club-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.club-stats .stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #F93B78;
    font-family: 'Orbitron', monospace;
}

.club-stats .stat .label {
    font-size: 0.8rem;
    color: #b0b3b8;
}

.club-games {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.game-tag {
    background: rgba(249, 59, 120, 0.2);
    color: #F93B78;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(249, 59, 120, 0.3);
}

/* Prizes Section */
.prizes-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.prizes-showcase {
    text-align: center;
    margin-bottom: 80px;
}

.total-prize {
    margin-bottom: 60px;
}

.prize-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.currency {
    font-size: 3rem;
    color: #ffaa00;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.amount {
    font-size: 5rem;
    color: #ffaa00;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
}

.period {
    font-size: 3rem;
    color: #ffaa00;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.total-prize p {
    color: #b0b3b8;
    font-size: 1.2rem;
}

.prize-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.prize-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.prize-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 170, 0, 0.2);
}

.prize-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F93B78, #7F33AE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.prize-info h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 10px;
}

.prize-value {
    font-size: 1.8rem;
    color: #ffaa00;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.prize-info p {
    color: #b0b3b8;
    font-size: 0.9rem;
}

.upcoming-prizes {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.upcoming-prizes h3 {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 40px;
}

.events-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-item {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateX(10px);
    border-color: #F93B78;
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #F93B78;
    font-family: 'Orbitron', monospace;
}

.event-date .month {
    font-size: 0.9rem;
    color: #b0b3b8;
    font-weight: 500;
}

.event-info {
    flex: 1;
}

.event-info h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 8px;
}

.event-prize {
    color: #ffaa00;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.event-info p {
    color: #b0b3b8;
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 59, 120, 0.1), transparent);
    transition: left 1s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(249, 59, 120, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F93B78, #7F33AE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #F93B78;
    font-family: 'Orbitron', monospace;
    display: block;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    color: #b0b3b8;
    font-size: 1rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: #F93B78;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(249, 59, 120, 0.2);
}

.testimonial-content {
    margin-bottom: 25px;
    margin-top: 20px;
}

.testimonial-content p {
    color: #b0b3b8;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #F93B78;
}

.author-info h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.author-info span {
    color: #F93B78;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #F93B78;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-section p {
    color: #b0b3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b0b3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F93B78;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #b0b3b8;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, #F93B78, #7F33AE);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b3b8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .tournaments-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 50px 0;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .tournaments-grid,
    .matches-grid,
    .games-grid,
    .clubs-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 60px 1fr 80px 70px 90px;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .events-timeline .event-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .prize-breakdown {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 30px;
    }
    
    .stat-item {
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .amount {
        font-size: 3.5rem;
    }
    
    .currency,
    .period {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .tournaments-grid,
    .matches-grid,
    .games-grid,
    .clubs-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 50px 1fr 70px 60px 80px;
        font-size: 0.8rem;
        padding: 10px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .tournament-card,
    .match-card,
    .game-card,
    .club-card {
        padding: 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }
    
    .btn-secondary {
        background: #000000;
        color: #ffffff;
        border: 2px solid #ffffff;
    }
}

/* Print styles */
@media print {
    .navbar,
    .scroll-indicator,
    .hero-actions,
    .btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .section-title,
    .hero-title {
        color: black !important;
    }
}