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

html {
    scroll-behavior: smooth;
}

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

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

/* Color System */
:root {
    --primary-red: #FF1744;
    --electric-blue: #0080FF;
    --vibrant-green: #00C853;
    --gold: #FFD700;
    --white: #FFFFFF;
    --black: #000000;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --border-glow: rgba(0, 128, 255, 0.3);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--electric-blue);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-emblem {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold);
    animation: trophy-glow 2s ease-in-out infinite alternate;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 0 10px var(--electric-blue);
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, transparent, transparent);
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--electric-blue);
    border-color: var(--electric-blue);
    box-shadow: 0 0 20px rgba(0, 128, 255, 0.5);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--electric-blue), var(--primary-red));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 0.1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 23, 68, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 128, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 200, 83, 0.2) 0%, transparent 50%);
}

.spotlight-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent),
        conic-gradient(from 120deg, transparent, rgba(0, 128, 255, 0.1), transparent),
        conic-gradient(from 240deg, transparent, rgba(255, 23, 68, 0.1), transparent);
    animation: rotate-spotlight 20s linear infinite;
}

.arena-lights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.2) 0%, transparent 100%);
    animation: arena-flicker 3s ease-in-out infinite alternate;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.title-line {
    display: block;
    font-size: 2rem;
    color: var(--electric-blue);
    font-weight: 400;
}

.title-main {
    display: block;
    background: linear-gradient(45deg, var(--electric-blue), var(--primary-red), var(--vibrant-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    animation: title-glow 2s ease-in-out infinite alternate;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 400;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    position: relative;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-red), var(--electric-blue));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 23, 68, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--electric-blue);
}

.btn-secondary:hover {
    background: var(--electric-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 128, 255, 0.4);
}

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

.btn:hover .btn-flash {
    left: 100%;
}

.champion-btn {
    animation: pulse-glow 2s ease-in-out infinite;
}

.trophy-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.trophy-glow {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--gold), var(--electric-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 0 50px var(--gold);
    animation: trophy-float 3s ease-in-out infinite;
}

.trophy-glow::before {
    content: '🏆';
    animation: trophy-spin 6s linear infinite;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--electric-blue);
    font-family: 'Orbitron', monospace;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--electric-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1a1a 100%);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 128, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 40px rgba(0, 128, 255, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--electric-blue);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%),
        radial-gradient(circle at 30% 70%, rgba(255, 23, 68, 0.1) 0%, transparent 50%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.team-stat {
    text-align: center;
    padding: 20px;
    background: rgba(0, 128, 255, 0.1);
    border: 1px solid var(--electric-blue);
    border-radius: 10px;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stadium-view {
    width: 300px;
    height: 300px;
    background: 
        radial-gradient(circle, var(--gold) 0%, transparent 70%),
        linear-gradient(45deg, var(--card-bg), #2a2a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.stadium-lights {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--electric-blue);
    border-radius: 50%;
    animation: stadium-pulse 2s ease-in-out infinite;
}

.trophy-display {
    font-size: 4rem;
    animation: trophy-glow 2s ease-in-out infinite alternate;
}

/* Games Section */
.games {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, var(--dark-bg) 100%);
}

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

.game-card {
    transition: all 0.3s ease;
}

.game-frame {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-glow);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-red), var(--electric-blue), var(--vibrant-green));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.game-frame:hover::before {
    opacity: 0.1;
}

.game-frame:hover {
    transform: translateY(-5px);
    border-color: var(--electric-blue);
    box-shadow: 0 15px 30px rgba(0, 128, 255, 0.3);
}

.game-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.play-icon {
    font-size: 3rem;
    color: var(--white);
    text-shadow: 0 0 20px var(--electric-blue);
}

.game-info {
    margin-bottom: 20px;
}

.game-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--electric-blue);
}

.game-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.difficulty {
    color: var(--gold);
    font-size: 1.2rem;
}

.category {
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-game {
    width: 100%;
    background: linear-gradient(45deg, var(--vibrant-green), var(--electric-blue));
    color: var(--white);
    font-size: 1.1rem;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
}

.btn-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 200, 83, 0.6);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--electric-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--electric-blue);
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
}

.champion-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 20px rgba(0, 128, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Disclaimer */
.disclaimer {
    padding: 40px 0;
    background: var(--primary-red);
    text-align: center;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.disclaimer-content p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 2px solid var(--electric-blue);
    padding: 60px 0 20px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.footer-menu h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--electric-blue);
}

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

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

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--electric-blue);
}

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

/* Game Pages */
.game-page {
    min-height: 100vh;
    padding-top: 80px;
    background: var(--dark-bg);
}

.game-header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid var(--electric-blue);
}

.game-container {
    padding: 20px 0;
}

.game-frame-full {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-glow);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.game-iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 10px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background: transparent;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: var(--electric-blue);
    color: var(--white);
    transform: translateX(-5px);
}

/* Animations */
@keyframes trophy-glow {
    0% { text-shadow: 0 0 20px var(--gold); }
    100% { text-shadow: 0 0 40px var(--gold), 0 0 60px var(--gold); }
}

@keyframes title-glow {
    0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.5); }
}

@keyframes rotate-spotlight {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes arena-flicker {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 23, 68, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(255, 23, 68, 0.8); }
}

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

@keyframes trophy-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes stadium-pulse {
    0%, 100% { box-shadow: 0 0 20px var(--electric-blue); }
    50% { box-shadow: 0 0 40px var(--electric-blue), 0 0 60px var(--electric-blue); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line {
        font-size: 1.5rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}