/* League Evolution - Custom Styles */

/* CSS Variables */
:root {
    --primary-bg: #0f1923;
    --neon-aqua: #1be4d8;
    --neon-pink: #e31b6d;
    --white: #ffffff;
    --gray-light: #a0a0a0;
    --gray-dark: #2a3441;
    --gradient-primary: linear-gradient(135deg, var(--neon-aqua), var(--neon-pink));
    --gradient-dark: linear-gradient(135deg, #0f1923, #1a2332);
    --shadow-neon: 0 0 20px rgba(27, 228, 216, 0.3);
    --shadow-pink: 0 0 20px rgba(227, 27, 109, 0.3);
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-aqua);
}

/* Navigation */
.navbar {
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(15, 25, 35, 0.98);
    box-shadow: var(--shadow-neon);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--shadow-neon);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--neon-aqua) !important;
    text-shadow: var(--shadow-neon);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2827, 228, 216, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(15, 25, 35, 0.8), rgba(26, 35, 50, 0.6));
}

/* Particles Canvas */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#particles-canvas {
    width: 100%;
    height: 100%;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-icon {
    position: absolute;
    color: var(--neon-aqua);
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
    color: var(--neon-pink);
}

.floating-icon.icon-3 {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon.icon-4 {
    top: 70%;
    right: 25%;
    animation-delay: 3s;
    color: var(--neon-pink);
}

.floating-icon.icon-5 {
    top: 40%;
    left: 5%;
    animation-delay: 4s;
}

.floating-icon.icon-6 {
    top: 80%;
    right: 10%;
    animation-delay: 5s;
    color: var(--neon-pink);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 3;
    position: relative;
    line-height: 1.2;
}

.typing-text {
    display: inline-block;
    border-right: 3px solid var(--neon-aqua);
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    opacity: 1;
    animation: typewriter 3s steps(15) 0.5s forwards, blink-cursor 1s infinite 0.5s;
}

@keyframes typewriter {
    0% { 
        width: 0;
    }
    100% { 
        width: 15ch; /* Adjust based on character count */
    }
}

@keyframes blink-cursor {
    0%, 50% { border-color: var(--neon-aqua); }
    51%, 100% { border-color: transparent; }
}

/* Stop blinking after typing is complete */
.typing-complete {
    border-right: none !important;
    animation: none !important;
}

/* Additional typing effects for quotes */
.typing-quote {
    display: inline-block;
    border-right: 2px solid var(--neon-pink);
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    opacity: 1;
    animation: typewriter-quote 4s steps(30) forwards, blink-cursor-pink 1s infinite;
}

@keyframes typewriter-quote {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes blink-cursor-pink {
    0%, 50% { border-color: var(--neon-pink); }
    51%, 100% { border-color: transparent; }
}

/* Subtitle typing effect */
.typing-subtitle {
    display: inline-block;
    border-right: 2px solid var(--gray-light);
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    opacity: 1;
    animation: typewriter-subtitle 5s steps(40) 2s forwards, blink-cursor-gray 1s infinite 2s;
}

@keyframes typewriter-subtitle {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes blink-cursor-gray {
    0%, 50% { border-color: var(--gray-light); }
    51%, 100% { border-color: transparent; }
}

/* Hero quotes styling */
.hero-quotes {
    margin: 1.5rem 0;
    min-height: 40px;
}

.hero-quotes .typing-quote {
    font-size: 1.2rem;
    color: var(--neon-pink);
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

/* Quote box styling */
.quote-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(42, 52, 65, 0.3);
    border-left: 4px solid var(--neon-aqua);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.gaming-quote {
    margin: 0;
    font-style: italic;
    color: var(--gray-light);
}

.gaming-quote cite {
    display: block;
    margin-top: 1rem;
    color: var(--neon-aqua);
    font-size: 0.9rem;
    font-weight: 600;
}

.typing-quote-slow {
    display: inline-block;
    border-right: 2px solid var(--neon-aqua);
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typewriter-slow 6s steps(50) 1s forwards, blink-cursor 1s infinite 1s;
}

@keyframes typewriter-slow {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Testimonial typing effects */
.typing-quote-testimonial {
    font-size: 1.1rem;
    color: var(--neon-pink);
    font-style: italic;
    margin: 0;
    display: inline-block;
    border-right: 2px solid var(--neon-pink);
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typewriter-testimonial 4s steps(35) 0.5s forwards, blink-cursor-pink 1s infinite 0.5s;
}

@keyframes typewriter-testimonial {
    0% { width: 0; }
    100% { width: 100%; }
}

.typing-quote-small {
    display: inline-block;
    border-right: 1px solid var(--neon-aqua);
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    color: var(--neon-aqua);
    animation: typewriter-small 3s steps(25) 2s forwards, blink-cursor 0.8s infinite 2s;
}

@keyframes typewriter-small {
    0% { width: 0; }
    100% { width: 100%; }
}

/* CTA typing quote */
.cta-quote {
    margin: 1.5rem 0;
}

.typing-quote-cta {
    font-size: 1.3rem;
    color: var(--primary-bg);
    font-style: italic;
    font-weight: 600;
    margin: 0;
    display: inline-block;
    border-right: 2px solid var(--primary-bg);
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typewriter-cta 5s steps(40) 1s forwards, blink-cursor-dark 1s infinite 1s;
}

@keyframes typewriter-cta {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes blink-cursor-dark {
    0%, 50% { border-color: var(--primary-bg); }
    51%, 100% { border-color: transparent; }
}

/* Typing reveal effect for about section */
.typing-reveal {
    opacity: 0;
    animation: fadeInTyping 1s ease forwards;
}

@keyframes fadeInTyping {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonial enhancements */
.testimonial-intro {
    margin-bottom: 2rem;
}

.testimonial-quote {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(27, 228, 216, 0.2);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.neon-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--shadow-neon);
}

.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch-text::before {
    animation: glitch-1 2s infinite;
    color: var(--neon-pink);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 2s infinite;
    color: var(--neon-aqua);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% {
        transform: translate(0);
    }
    15%, 49% {
        transform: translate(-2px, 2px);
    }
}

@keyframes glitch-2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% {
        transform: translate(0);
    }
    21%, 62% {
        transform: translate(2px, -2px);
    }
}

/* Hero Stats */
.hero-stats {
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(42, 52, 65, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(27, 228, 216, 0.2);
    max-width: 800px;
    position: relative;
    z-index: 3;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-aqua);
    text-shadow: var(--shadow-neon);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 1.5rem;
    color: var(--neon-aqua);
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--gray-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 3;
}

/* Buttons */
.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
    background: var(--neon-aqua);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 228, 216, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(27, 228, 216, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(27, 228, 216, 0);
    }
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--neon-aqua);
    color: var(--neon-aqua);
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary-custom:hover {
    background: var(--neon-aqua);
    color: var(--primary-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about-section {
    background: var(--gradient-dark);
    padding: 100px 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-light);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-neon);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 228, 216, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-aqua);
    font-size: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-neon);
}

/* Tournaments Section */
.tournaments-section {
    padding: 100px 0;
}

.tournament-card {
    background: var(--gray-dark);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.tournament-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-aqua);
    box-shadow: var(--shadow-neon);
}

.tournament-banner {
    position: relative;
    overflow: hidden;
}

.tournament-banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tournament-card:hover .tournament-banner img {
    transform: scale(1.1);
}

.tournament-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--primary-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-badge 2s infinite;
}

.tournament-badge.upcoming {
    background: linear-gradient(135deg, var(--neon-pink), #ff6b6b);
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.tournament-info {
    padding: 1.5rem;
}

.tournament-info h3 {
    color: var(--neon-aqua);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.tournament-details p {
    margin-bottom: 0.5rem;
    color: var(--gray-light);
}

.tournament-details i {
    color: var(--neon-pink);
    margin-right: 0.5rem;
    width: 20px;
}

/* Rankings Section */
.rankings-section {
    background: var(--gradient-dark);
    padding: 100px 0;
}

.rankings-table-container {
    background: var(--gray-dark);
    border-radius: 15px;
    padding: 2rem;
    overflow-x: auto;
}

.rankings-table {
    color: var(--white);
    margin-bottom: 0;
}

.rankings-table th {
    background: var(--gradient-primary);
    color: var(--primary-bg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    padding: 1rem;
}

.rankings-table td {
    padding: 1rem;
    border-color: var(--gray-dark);
    vertical-align: middle;
}

.rankings-table tbody tr {
    transition: all 0.3s ease;
}

.rankings-table tbody tr:hover {
    background: rgba(27, 228, 216, 0.1);
    transform: scale(1.02);
}

.rank-medal {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.player-name {
    font-weight: 700;
    color: var(--neon-aqua);
}

.points {
    font-weight: 700;
    color: var(--neon-pink);
}

.rank-1 {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), transparent);
}

.rank-2 {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.1), transparent);
}

.rank-3 {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.1), transparent);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
}

.gallery-filters {
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--gray-dark);
    color: var(--gray-light);
    padding: 10px 20px;
    margin: 0 0.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-primary);
    border-color: var(--neon-aqua);
    color: var(--primary-bg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 228, 216, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--primary-bg);
    margin-bottom: 1rem;
}

.gallery-category {
    background: var(--primary-bg);
    color: var(--neon-aqua);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* News Section */
.news-section {
    background: var(--gradient-dark);
    padding: 100px 0;
}

.news-card {
    background: var(--gray-dark);
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: var(--shadow-pink);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.news-content {
    padding: 2rem;
}

.news-date {
    color: var(--neon-pink);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h3 {
    color: var(--neon-aqua);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.news-card p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--neon-aqua);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--neon-pink);
    text-shadow: var(--shadow-pink);
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-swiper {
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Center testimonial cards for laptop viewports */
@media (min-width: 992px) and (max-width: 1399px) {
    .testimonials-swiper {
        max-width: 700px;
    }
    
    .testimonial-card {
        margin: 0 auto;
        max-width: 600px;
    }
}

.testimonial-card {
    background: var(--gray-dark);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--neon-aqua);
    box-shadow: var(--shadow-neon);
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.testimonial-author strong {
    color: var(--neon-aqua);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.swiper-pagination-bullet {
    background: var(--gray-light);
}

.swiper-pagination-bullet-active {
    background: var(--neon-aqua);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 100px 0;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--primary-bg);
    margin-bottom: 1rem;
    font-weight: 900;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--primary-bg);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-section .btn-primary-custom {
    background: var(--primary-bg);
    color: var(--neon-aqua);
    font-size: 1.1rem;
    padding: 15px 40px;
}

.cta-section .btn-primary-custom:hover {
    background: var(--gray-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
    background: var(--gradient-dark);
    padding: 100px 0;
}

.contact-form .form-control {
    background: var(--gray-dark);
    border: 2px solid transparent;
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: var(--gray-dark);
    border-color: var(--neon-aqua);
    box-shadow: var(--shadow-neon);
    color: var(--white);
}

.contact-form .form-control::placeholder {
    color: var(--gray-light);
}

.social-links {
    margin-top: 3rem;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--gray-dark);
    color: var(--neon-aqua);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

/* Footer */
.footer-section {
    background: var(--primary-bg);
    border-top: 1px solid var(--gray-dark);
}

.footer-brand .logo-text {
    font-size: 1.5rem;
}

.footer-text {
    color: var(--gray-light);
    margin-top: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-aqua);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form .form-control {
    background: var(--gray-dark);
    border: none;
    color: var(--white);
    flex: 1;
}

.newsletter-form .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.footer-divider {
    border-color: var(--gray-dark);
    margin: 2rem 0;
}

.copyright {
    color: var(--gray-light);
    margin: 0;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }
    
    .hero-stats {
        margin: 2rem auto;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .typing-text {
        animation: typewriter 3s steps(15) 0.5s forwards, blink-cursor 1s infinite 0.5s;
    }
    
    @keyframes typewriter {
        0% { width: 0; }
        100% { width: 12ch; }
    }
    
    .hero-content {
        padding: 1rem 0;
        min-height: 50vh;
    }
    
    .hero-quotes .typing-quote {
        font-size: 1rem;
    }
    
    .quote-box {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .typing-quote-cta {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tournament-card,
    .news-card {
        margin-bottom: 2rem;
    }
    
    .rankings-table-container {
        padding: 1rem;
    }
    
    .rankings-table {
        font-size: 0.9rem;
    }
    
    .rankings-table td,
    .rankings-table th {
        padding: 0.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .social-links {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .typing-text {
        font-size: 1.8rem;
    }
    
    @keyframes typewriter {
        0% { width: 0; }
        100% { width: 10ch; }
    }
    
    .hero-stats {
        margin: 1.5rem auto;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .floating-icon {
        font-size: 1.2rem;
    }
    
    .hero-content {
        padding: 0.5rem 0;
        min-height: 45vh;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-quotes .typing-quote {
        font-size: 0.9rem;
    }
    
    .quote-box {
        padding: 0.8rem;
        margin-top: 1rem;
    }
    
    .typing-quote-cta {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .about-section,
    .tournaments-section,
    .rankings-section,
    .gallery-section,
    .news-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .filter-btn {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* Animation Enhancements */
@keyframes glow {
    0% { box-shadow: 0 0 5px var(--neon-aqua); }
    50% { box-shadow: 0 0 20px var(--neon-aqua), 0 0 30px var(--neon-aqua); }
    100% { box-shadow: 0 0 5px var(--neon-aqua); }
}

.neon-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-neon-aqua { color: var(--neon-aqua); }
.text-neon-pink { color: var(--neon-pink); }
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-dark { background: var(--gradient-dark); }
