input{
	outline: none !important;
}
textarea{
	resize: none;
}
section{
	overflow: hidden;
}
/* ===================================
   FLIPPER ZONE - Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
    --primary: #ff006e;
    --primary-dark: #d4005c;
    --secondary: #3a86ff;
    --accent: #ffbe0b;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --gray: #2a2a2a;
    --light: #ffffff;
    --text-muted: #888888;
    --gradient-primary: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    --neon-glow: 0 0 20px rgba(255, 0, 110, 0.5), 0 0 40px rgba(255, 0, 110, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .brand-flip, .brand-zone {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    z-index: 999;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.brand-flip {
    color: var(--light);
}

.brand-zone {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.nav-link {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    color: var(--light) !important;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--light);
    position: relative;
    transition: var(--transition);
}

.toggler-icon::before,
.toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--light);
    transition: var(--transition);
}

.toggler-icon::before {
    top: -8px;
}

.toggler-icon::after {
    top: 8px;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 100%);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.badge-text {
    background: var(--gradient-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.title-line {
    display: block;
    position: relative;
    animation: glitch 2s infinite;
}

.title-line.highlight {
    color: var(--primary);
    text-shadow: var(--neon-glow);
}

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, 0);
    }
    98% {
        transform: translate(2px, 0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
    color: var(--light);
}

.btn-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 0, 110, 0.6), 0 0 60px rgba(255, 0, 110, 0.3);
    }
}

.btn-outline-light {
    border-color: var(--light);
    color: var(--light);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--neon-glow);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator span {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: scroll-bounce 1.5s infinite;
    opacity: 0.3;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ===================================
   Machines Section
   =================================== */
.machines-section {
    background: var(--dark-light);
}

.machinesSwiper {
    padding: 2rem 1rem 4rem;
}

.machine-card {
    background: var(--gray);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.machine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.machine-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.machine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.machine-card:hover .machine-image img {
    transform: scale(1.1);
}

.machine-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.machine-card:hover .machine-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.5rem;
    transform: scale(0);
    transition: var(--transition);
}

.machine-card:hover .play-btn {
    transform: scale(1);
}

.machine-info {
    padding: 1.5rem;
}

.machine-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.machine-year {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.machine-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    color: var(--accent);
}

.score {
    background: var(--primary);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.swiper-pagination-bullet {
    background: var(--light);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    color: var(--light);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 900;
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    background: var(--dark);
}

.feature-card {
    background: var(--dark-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.icon-svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===================================
   Leaderboard Section
   =================================== */
.leaderboard-section {
    background: var(--dark-light);
}

.leaderboard-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gray);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leaderboard-header {
    display: grid;
    grid-template-columns: 80px 1fr 150px 150px;
    padding: 1.5rem 2rem;
    background: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 80px 1fr 150px 150px;
    padding: 1.2rem 2rem;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.leaderboard-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.leaderboard-row.gold {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    border-left: 4px solid gold;
}

.leaderboard-row.silver {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.1) 0%, transparent 100%);
    border-left: 4px solid silver;
}

.leaderboard-row.bronze {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.1) 0%, transparent 100%);
    border-left: 4px solid #cd7f32;
}

.rank {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
}

.player {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.player-name {
    font-weight: 600;
}

.score {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    font-weight: 700;
}

.machine {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-balls {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-ball {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-ball 20s infinite ease-in-out;
}

.floating-ball:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-ball:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.floating-ball:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float-ball {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* ===================================
   Page Hero
   =================================== */
.page-hero {
    padding: 10rem 0 6rem;
    background: var(--dark-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ff006e" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></svg>');
    opacity: 0.5;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* ===================================
   About Page
   =================================== */
.about-story {
    background: var(--dark);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--neon-glow);
}

.experience-badge .years {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content {
    padding-left: 2rem;
}

.about-content .lead {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.mission-section {
    background: var(--dark-light);
}

.mission-card {
    background: var(--gray);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.mission-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.mission-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-text {
    color: var(--text-muted);
}

.team-section {
    background: var(--dark);
}

.team-card {
    background: var(--dark-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 110, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.social-icons a:hover {
    transform: scale(1.2);
    background: var(--dark);
    color: var(--light);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--primary);
    font-size: 0.9rem;
    margin: 0;
}

.stats-section {
    background: var(--dark-light);
}

.stat-box {
    background: var(--gray);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* ===================================
   Events Page
   =================================== */
.events-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.events-calendar {
    background: var(--dark);
}

.event-card {
    display: flex;
    background: var(--dark-light);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.event-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(90deg, rgba(255, 0, 110, 0.1) 0%, var(--dark-light) 100%);
}

.event-date {
    background: var(--primary);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.event-date .day {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-content {
    flex: 1;
    padding: 2rem;
    position: relative;
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.event-desc {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.event-meta span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.event-meta i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.event-image {
    width: 300px;
    min-height: 200px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tournament-bracket {
    background: var(--dark-light);
    padding: 4rem 0;
}

.bracket-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    overflow-x: auto;
    padding: 2rem 0;
}

.bracket-round {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 250px;
}

.round-title {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.bracket-matches {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    flex: 1;
}

.match-card {
    background: var(--gray);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.match-card.pending {
    opacity: 0.6;
}

.match-card.final {
    background: var(--gradient-primary);
    border: none;
}

.match-player {
    padding: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.match-player.winner {
    color: var(--accent);
}

.match-score {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    font-weight: 700;
    padding: 0.3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0.3rem 0;
}

.match-trophy {
    text-align: center;
    font-size: 2rem;
    padding: 0.5rem 0;
}

.pricing-section {
    background: var(--dark);
}

.pricing-card {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li i {
    color: var(--primary);
}

.pricing-features li i.fa-times {
    color: var(--text-muted);
}

/* ===================================
   Gallery Page
   =================================== */
.gallery-section {
    background: var(--dark);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--gray);
    color: var(--light);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: var(--transition);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-title {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.gallery-year {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.video-section {
    background: var(--dark-light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--gray);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-card:hover .play-overlay {
    background: rgba(255, 0, 110, 0.3);
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--neon-glow);
}

.video-card:hover .play-button {
    transform: scale(1.1);
}

.video-title {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
}

.video-desc {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ===================================
   Contact Page
   =================================== */
.contact-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.contact-section {
    background: var(--dark);
}

.contact-form {
    background: var(--dark-light);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-floating {
    position: relative;
}

.form-floating > .form-control,
.form-floating > .form-select {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 10px;
    height: 60px;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    background: var(--gray);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 110, 0.25);
    color: var(--light);
}

.form-floating > label {
    color: var(--text-muted);
    padding: 1rem 1.5rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--primary);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > textarea.form-control {
    height: 150px;
    resize: none;
}

.custom-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

.custom-checkbox .form-check-input {
    width: 1.5em;
    height: 1.5em;
    background-color: var(--gray);
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.3em;
}

.custom-checkbox .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.custom-checkbox .form-check-label {
    color: var(--text-muted);
    margin-left: 0.5rem;
    cursor: pointer;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--dark-light);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light);
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.map-section {
    padding: 0;
}

.map-container iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.faq-section {
    background: var(--dark-light);
    padding: 4rem 0;
}

.custom-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--gray);
    color: var(--light);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    padding: 1.5rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--gray);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff006e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-muted);
    background: var(--gray);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-form .form-control {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 50px 0 0 50px;
    padding: 0.8rem 1.5rem;
}

.newsletter-form .form-control:focus {
    background: var(--gray);
    border-color: var(--primary);
    color: var(--light);
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.8rem 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
}

/* ===================================
   Modals
   =================================== */
.modal-content {
    background: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--light);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 2rem;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-close {
    filter: invert(1);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AOS-like animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .leaderboard-header,
    .leaderboard-row {
        grid-template-columns: 60px 1fr 100px;
    }
    
    .machine-col {
        display: none;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-image {
        width: 100%;
        height: 200px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .experience-badge {
        right: 20px;
        bottom: 20px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .leaderboard-header,
    .leaderboard-row {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }
    
    .score-col,
    .machine-col {
        display: none;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .bracket-container {
        flex-direction: column;
        align-items: center;
    }
    
    .bracket-round {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .page-title{
    	font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .event-date {
        padding: 1rem;
        min-width: 80px;
    }
    
    .event-date .day {
        font-size: 2rem;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}