/* ===== CSS VARIABLES ===== */
:root {
    --primary-blue: #0000FF;
    --primary-cyan: #00FFFF;
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(0, 0, 0, 0.8);
    --glow-blue: 0 0 20px rgba(0, 0, 255, 0.6);
    --glow-cyan: 0 0 20px rgba(0, 255, 255, 0.6);
    --glow-white: 0 0 20px rgba(255, 255, 255, 0.4);
    --gradient-blue: linear-gradient(135deg, #0000FF 0%, #00FFFF 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    --gradient-white: linear-gradient(135deg, #FFFFFF 0%, #00FFFF 100%);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-white);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid var(--primary-blue);
    box-shadow: var(--glow-blue);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-shadow: var(--glow-blue);
    animation: logo-glow 3s ease-in-out infinite alternate;
}

@keyframes logo-glow {
    0% { text-shadow: var(--glow-blue); }
    100% { text-shadow: 0 0 30px rgba(0, 0, 255, 0.8); }
}

.logo-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
    animation: subtitle-pulse 2s ease-in-out infinite;
}

@keyframes subtitle-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-link:hover {
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 0.2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary-cyan);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--primary-cyan);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-blue), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--primary-cyan), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--primary-white), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--primary-cyan), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particle-float 20s linear infinite;
}

@keyframes particle-float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-glow {
    color: var(--primary-blue);
    text-shadow: var(--glow-blue);
    display: block;
}

.title-network {
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-white);
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: var(--glow-white);
}

.hero-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 1rem 2rem;
    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-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--primary-white);
    box-shadow: var(--glow-blue);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
    box-shadow: var(--glow-cyan);
}

.btn-accent {
    background: var(--primary-black);
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    box-shadow: var(--glow-white);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 255, 0.4);
}

.btn-glow {
    animation: button-glow 2s ease-in-out infinite alternate;
}

@keyframes button-glow {
    0% { box-shadow: var(--glow-blue); }
    100% { box-shadow: 0 0 30px rgba(0, 0, 255, 0.8); }
}

.btn-icon {
    font-size: 1.2rem;
}

/* ===== VOTING BANNER ===== */
.voting-banner {
    margin-top: 2rem;
}

.voting-banner img {
    border-radius: 10px;
    box-shadow: var(--glow-blue);
    transition: transform 0.3s ease;
    border: 2px solid var(--primary-white);
}

.voting-banner img:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-white);
}

/* ===== SECTIONS ===== */
.about, .gamemodes, .community, .discord-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.about {
    background: var(--primary-black);
}

.gamemodes {
    background: var(--dark-bg);
}

.community {
    background: var(--primary-black);
}

.discord-section {
    background: var(--dark-bg);
}

/* ===== CARDS ===== */
.about-grid, .gamemodes-grid, .perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card, .gamemode-card, .perk-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--glow-blue);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-card::before, .gamemode-card::before, .perk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.about-card:hover::before, .gamemode-card:hover::before, .perk-card:hover::before {
    left: 100%;
}

.about-card:hover, .gamemode-card:hover, .perk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 255, 0.3);
    border-color: var(--primary-cyan);
}

.card-icon, .gamemode-icon, .perk-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.about-card h3, .gamemode-card h3, .perk-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
}

.about-card p, .gamemode-card p, .perk-card p {
    color: #e0e0e0;
}

.gamemode-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature {
    background: var(--primary-blue);
    color: var(--primary-white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary-white);
}

/* ===== DISCORD SECTION ===== */
.discord-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.discord-widget {
    display: flex;
    justify-content: center;
}

.discord-widget iframe {
    border-radius: 15px;
    box-shadow: var(--glow-blue);
    border: 2px solid var(--primary-white);
}

.discord-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-card, .join-discord-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--glow-blue);
    position: relative;
    overflow: hidden;
}

.stats-card::before, .join-discord-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-white);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stats-card:hover::before, .join-discord-card:hover::before {
    transform: scaleX(1);
}

.stats-card h3, .join-discord-card h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    text-shadow: var(--glow-cyan);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.stat-label {
    color: #e0e0e0;
}

.stat-value {
    color: var(--primary-cyan);
    font-weight: 600;
    text-shadow: var(--glow-cyan);
}

.join-discord-card p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-black);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--primary-blue);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    text-shadow: var(--glow-cyan);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-white);
    text-shadow: var(--glow-white);
}

.footer-section p {
    color: #e0e0e0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-blue);
    border-radius: 20px;
}

.social-link:hover {
    color: var(--primary-white);
    background: var(--primary-blue);
    box-shadow: var(--glow-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: #b0b0b0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .discord-container {
        grid-template-columns: 1fr;
    }
    
    .about-grid, .gamemodes-grid, .perks-grid {
        grid-template-columns: 1fr;
    }
    
    .voting-banner img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-card, .gamemode-card, .perk-card {
        padding: 1.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-cyan);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--primary-blue);
    color: var(--primary-white);
}

/* ===== LOADING ANIMATION ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-cyan);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== ENHANCED WHITE ACCENTS ===== */
.floating-particle {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.notification {
    border: 1px solid var(--primary-white);
}

.notification-content {
    color: var(--primary-black);
}

.notification-close {
    color: var(--primary-black);
}

.notification-close:hover {
    color: var(--primary-blue);
}

/* ===== PAGE HERO STYLES ===== */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
    margin-top: 80px;
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: var(--gradient-white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-white);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--primary-white);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== TERMS & PRIVACY PAGE STYLES ===== */
.terms-content, .privacy-content {
    padding: 5rem 0;
    background: var(--primary-black);
}

.terms-section, .privacy-section {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--glow-blue);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.terms-section:hover, .privacy-section:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(0, 0, 255, 0.3);
}

.terms-section h2, .privacy-section h2 {
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-shadow: var(--glow-cyan);
}

.terms-section p, .privacy-section p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-section ul, .privacy-section ul {
    color: #e0e0e0;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-section li, .privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.rules-grid, .info-grid, .security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.rule-card, .info-card, .security-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.rule-card:hover, .info-card:hover, .security-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-3px);
}

.rule-card h3, .info-card h3, .security-card h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.rule-card p, .info-card p, .security-card p {
    color: #cccccc;
    font-size: 0.9rem;
}

.contact-info {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--primary-cyan);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}

.terms-footer, .privacy-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.terms-footer p, .privacy-footer p {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

/* ===== GAME MODES PAGE STYLES ===== */
.gamemodes-page {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.gamemode-detail {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--glow-blue);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.gamemode-detail:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 25px 50px rgba(0, 0, 255, 0.4);
}

.gamemode-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.gamemode-icon-large {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.gamemode-info h2 {
    color: var(--primary-cyan);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: var(--glow-cyan);
}

.gamemode-description {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.gamemode-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: var(--primary-blue);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--primary-white);
}

.gamemode-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-3px);
}

.feature-item h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.6;
}

.join-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--glow-blue);
}

.join-section h2 {
    color: var(--primary-cyan);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: var(--glow-cyan);
}

.join-section p {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.join-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== COMMUNITY PAGE STYLES ===== */
.community-stats {
    padding: 4rem 0;
    background: var(--primary-black);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--glow-blue);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(0, 0, 255, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    text-shadow: var(--glow-cyan);
}

.stat-label {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.discord-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-cyan);
    transform: translateX(10px);
}

.feature-card h3 {
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

.events-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--card-bg);
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--glow-blue);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(0, 0, 255, 0.3);
}

.event-date {
    background: var(--gradient-blue);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-white);
}

.event-date .month {
    font-size: 1rem;
    color: var(--primary-white);
    opacity: 0.8;
}

.event-content {
    padding: 1.5rem;
    flex: 1;
}

.event-content h3 {
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.event-content p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-time, .event-prize {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--primary-cyan);
}

.community-features {
    padding: 5rem 0;
    background: var(--primary-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--glow-blue);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(0, 0, 255, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.feature-item h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.6;
}

.staff-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.staff-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--glow-blue);
    text-align: center;
    transition: all 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(0, 0, 255, 0.3);
}

.staff-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.staff-card h3 {
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.staff-role {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.staff-description {
    color: #cccccc;
    line-height: 1.6;
}

.join-community {
    padding: 5rem 0;
    background: var(--primary-black);
}

.join-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.join-content h2 {
    color: var(--primary-cyan);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: var(--glow-cyan);
}

.join-content p {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN FOR NEW PAGES ===== */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .gamemode-header {
        flex-direction: column;
        text-align: center;
    }
    
    .gamemode-icon-large {
        font-size: 3rem;
    }
    
    .gamemode-info h2 {
        font-size: 2rem;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        min-width: auto;
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
    }
    
    .join-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .terms-section, .privacy-section {
        padding: 1.5rem;
    }
    
    .gamemode-detail {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== ACTIVE NAV LINK STYLES ===== */
.nav-link.active {
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
    background: rgba(0, 255, 255, 0.1);
}

.nav-link.active::after {
    width: 80%;
}

/* ===== ENHANCED ANIMATIONS ===== */
@keyframes interactive-float {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0) translateY(-50px);
    }
}

.char-animate {
    display: inline-block;
    animation: char-bounce 0.6s ease-in-out;
}

@keyframes char-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
} 