/**
 * Pokemon Oblivion - Estilos Principais
 * Design moderno inspirado no PokeXGames
 */

/* ===== VARIABLES ===== */
:root {
    /* Cores principais - estilo PokeXGames */
    --color-primary: #00d4ff;
    --color-secondary: #00ff88;
    --color-accent: #ff6b6b;
    --color-warning: #ffd93d;
    --color-danger: #ff4757;
    --color-success: #2ed573;
    --color-info: #5352ed;
    
    /* Cores de fundo - dark theme */
    --bg-primary: #0a0e1a;
    --bg-secondary: #141829;
    --bg-tertiary: #1a1f35;
    --bg-card: #1e2338;
    --bg-hover: #252a42;
    --bg-overlay: rgba(0, 0, 0, 0.85);
    
    /* Cores de texto */
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --text-accent: #00d4ff;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    --gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #141829 50%, #1a1f35 100%);
    --gradient-card: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.5);
    --shadow-glow-green: 0 0 30px rgba(0, 255, 136, 0.5);
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Bordas */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Transições */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s 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: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Video Background */
#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.25;
    pointer-events: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
        var(--bg-primary);
    background-blend-mode: overlay;
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
}

/* Garantir que o conteúdo fique acima do vídeo */
.container,
section,
header,
footer {
    position: relative;
    z-index: 1;
}

/* Wallpapers de Pokémon em seções específicas */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('https://images.unsplash.com/photo-1606107557195-0e29a4b5b4aa?w=1920&q=80') center/cover no-repeat,
        linear-gradient(135deg, rgba(10, 14, 26, 0.9) 0%, rgba(20, 24, 41, 0.85) 100%);
    background-blend-mode: overlay;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&q=80') center/cover no-repeat;
    background-blend-mode: overlay;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.features-section {
    position: relative;
    overflow: hidden;
}

.section-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&q=80') center/cover no-repeat;
    background-blend-mode: overlay;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.rankings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('https://images.unsplash.com/photo-1606107557195-0e29a4b5b4aa?w=1920&q=80') center/cover no-repeat;
    background-blend-mode: overlay;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.guilds-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&q=80') center/cover no-repeat;
    background-blend-mode: overlay;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* ===== HEADER ===== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    gap: var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
    z-index: 2;
}

.logo a:hover {
    transform: scale(1.05);
}

/* Pokebolas Girando */
.pokeball {
    width: 50px;
    height: 50px;
    position: relative;
    animation: pokeballRotate 3s linear infinite;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
    z-index: 1;
}

.pokeball-left {
    animation: pokeballRotate 3s linear infinite;
}

.pokeball-right {
    animation: pokeballRotate 3s linear infinite reverse;
}

.pokeball::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 45%, #000000 45%, #000000 55%, #ffffff 55%, #ffffff 100%);
    border: 3px solid #000000;
    box-shadow: 
        inset 0 0 0 2px #ffffff,
        0 0 15px rgba(0, 212, 255, 0.5);
}

.pokeball::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, #ffffff 30%, #000000 30%, #000000 40%, #ffffff 40%, #ffffff 100%);
    border: 2px solid #000000;
    box-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8),
        inset 0 0 5px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.pokeball-left::before {
    background: linear-gradient(135deg, #ff4757 0%, #ff4757 45%, #000000 45%, #000000 55%, #ffffff 55%, #ffffff 100%);
    box-shadow: 
        inset 0 0 0 2px #ffffff,
        0 0 15px rgba(255, 71, 87, 0.6);
}

.pokeball-right::before {
    background: linear-gradient(135deg, #00d4ff 0%, #00d4ff 45%, #000000 45%, #000000 55%, #ffffff 55%, #ffffff 100%);
    box-shadow: 
        inset 0 0 0 2px #ffffff,
        0 0 15px rgba(0, 212, 255, 0.6);
}

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

.logo:hover .pokeball {
    animation-duration: 1.5s;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.9));
}

.logo:hover .pokeball-left {
    filter: drop-shadow(0 0 15px rgba(255, 71, 87, 0.9));
}

.logo:hover .pokeball-right {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.9));
}

/* Logo personalizada com CSS - Pokemon Oblivion */
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -0.5px;
    position: relative;
    padding: 12px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 255, 136, 0.15) 100%);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: visible;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    line-height: 1.1;
}

.logo-image {
    height: 75px; /* Aumentado 15% de 65px */
    width: auto;
    max-width: 322px; /* Aumentado 15% de 280px */
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
    transition: var(--transition-normal);
    animation: pulseLogo 2s ease-in-out infinite;
}

.logo-text::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.logo a:hover .logo-text::before {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

.logo-pokemon {
    color: #ffd700;
    text-shadow: 
        3px 3px 0 #1e3a8a,
        4px 4px 0 #0f172a,
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    position: relative;
    z-index: 1;
    animation: pokemonGlow 3s ease-in-out infinite;
    font-size: 1.1em;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    line-height: 1;
}

.logo-pokemon::before {
    content: 'Pokemon';
    position: absolute;
    top: 0;
    left: 0;
    color: #ffd700;
    text-shadow: 
        2px 2px 0 #1e3a8a,
        0 0 30px rgba(255, 215, 0, 0.8);
    filter: blur(8px);
    opacity: 0.6;
    z-index: -1;
    animation: pokemonBlur 3s ease-in-out infinite;
}

.logo-oblivion {
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 50%, #00d4ff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    position: relative;
    z-index: 1;
    animation: oblivionGradient 3s ease-in-out infinite;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.1em;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    display: block;
    line-height: 1;
    margin-top: 2px;
}

.logo-oblivion::after {
    content: 'Oblivion';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(12px);
    opacity: 0.5;
    z-index: -1;
    animation: oblivionBlur 3s ease-in-out infinite;
}

.logo-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.3) 0%, transparent 30%);
    border-radius: 50%;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.logo a:hover .logo-text::after {
    opacity: 1;
    animation: particleFloat 2s ease-in-out infinite;
}

@keyframes pokemonGlow {
    0%, 100% {
        text-shadow: 
            3px 3px 0 #1e3a8a,
            4px 4px 0 #0f172a,
            0 0 20px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.5),
            0 0 60px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 
            3px 3px 0 #1e3a8a,
            4px 4px 0 #0f172a,
            0 0 30px rgba(255, 215, 0, 1),
            0 0 60px rgba(255, 215, 0, 0.8),
            0 0 90px rgba(255, 215, 0, 0.5);
    }
}

@keyframes pokemonBlur {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes oblivionGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes oblivionBlur {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
        filter: brightness(1);
    }
    50% {
        opacity: 1;
        filter: brightness(1.3);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
    }
}

.logo a:hover .logo-pokemon {
    animation-duration: 1.5s;
}

.logo a:hover .logo-oblivion {
    animation-duration: 1.5s;
    filter: brightness(1.2);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    letter-spacing: 0.3px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid transparent;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.main-nav a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.main-nav a:hover {
    color: var(--color-primary);
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

.main-nav a:hover::after {
    opacity: 1;
}

.main-nav a.active {
    color: var(--color-primary);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 255, 136, 0.15) 100%);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 4px 15px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.main-nav a.active::before {
    width: 80%;
}

.main-nav a.active::after {
    opacity: 1;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-xs);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: #0a0e1a;
    color: #ffffff;
    border: 2px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: #141829;
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
    margin-top: -80px;
    padding-top: 120px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 255, 136, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-2xl) 0;
    position: relative;
}


.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.hero-pokemon {
    color: #ffd700;
    text-shadow: 
        4px 4px 0 #1e3a8a,
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4);
    animation: heroPokemonGlow 3s ease-in-out infinite;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.hero-oblivion {
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
    font-weight: 800;
    animation: heroOblivionGlow 3s ease-in-out infinite;
}

.hero-oblivion::after {
    content: 'Pokemon Oblivion';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: heroOblivionBlur 3s ease-in-out infinite;
}

@keyframes heroPokemonGlow {
    0%, 100% {
        text-shadow: 
            4px 4px 0 #1e3a8a,
            0 0 30px rgba(255, 215, 0, 0.6),
            0 0 60px rgba(255, 215, 0, 0.4);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            4px 4px 0 #1e3a8a,
            0 0 50px rgba(255, 215, 0, 0.9),
            0 0 100px rgba(255, 215, 0, 0.6);
        transform: scale(1.02);
    }
}

@keyframes heroOblivionGlow {
    0%, 100% {
        filter: brightness(1);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.2);
        transform: scale(1.02);
    }
}

@keyframes heroOblivionBlur {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, rgba(0, 255, 136, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: 0;
}

.hero-logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    animation-delay: 0.5s;
    z-index: 0;
}


@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.scroll-down {
    color: var(--text-primary);
    font-size: 2rem;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.scroll-down:hover {
    opacity: 1;
    color: var(--color-primary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--bg-secondary);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

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

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: var(--spacing-xs);
}

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

/* ===== SECTIONS ===== */
section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-icon {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.section-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

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

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--bg-primary);
    position: relative;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-card);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.feature-card:hover::after {
    width: 400px;
    height: 400px;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ===== SERVER INFO SECTION ===== */
.server-info-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 255, 136, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.server-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.server-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.info-card {
    background: var(--bg-card);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
}

.info-card:hover .info-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
}

.info-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

/* ===== NEWS SECTION ===== */
.news-section {
    background: var(--bg-secondary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.news-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

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

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

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.news-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.news-content {
    padding: var(--spacing-lg);
}

.news-date {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: var(--spacing-sm);
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.news-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.news-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: var(--transition-normal);
}

.news-link:hover {
    gap: var(--spacing-sm);
    color: var(--color-secondary);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl) 0;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-section h3 i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-section ul li a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.server-info li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.server-info li i {
    color: var(--color-primary);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: var(--spacing-xs);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--bg-secondary);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-title .section-icon {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ===== BOTÃO INTERATIVO DO PLAYER ===== */
.audio-player-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1001;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(0, 255, 136, 0.25) 100%);
    border: 3px solid rgba(0, 212, 255, 0.6);
    color: #00d4ff;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 6px 25px rgba(0, 212, 255, 0.4),
        0 0 20px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    animation: musicPulse 2.5s ease-in-out infinite;
}

.audio-player-toggle:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(0, 255, 136, 0.4) 100%);
    border-color: #00d4ff;
    transform: scale(1.15) rotate(20deg);
    box-shadow: 
        0 8px 35px rgba(0, 212, 255, 0.6),
        0 0 30px rgba(0, 212, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: none;
}

.audio-player-toggle.active {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.4) 0%, rgba(0, 212, 255, 0.4) 100%);
    color: #00ff88;
    border-color: #00ff88;
    box-shadow: 
        0 6px 25px rgba(0, 255, 136, 0.5),
        0 0 20px rgba(0, 255, 136, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes musicPulse {
    0%, 100% {
        box-shadow: 
            0 6px 25px rgba(0, 212, 255, 0.4),
            0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 6px 35px rgba(0, 212, 255, 0.7),
            0 0 30px rgba(0, 212, 255, 0.6);
    }
}

/* ===== PLAYER DE ÁUDIO ===== */
.audio-player {
    position: fixed;
    bottom: 30px;
    left: 110px;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 25px;
    padding: 0;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    min-width: 320px;
    max-width: 380px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-150%) scale(0.85);
    opacity: 0;
    pointer-events: none;
}

.audio-player.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.audio-player:hover {
    border-color: rgba(0, 212, 255, 0.7);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 0 35px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.4);
    transform: translateX(0) scale(1.02);
}

.audio-player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.25);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 255, 136, 0.15) 100%);
    border-radius: 25px 25px 0 0;
    position: relative;
    overflow: hidden;
}

.audio-player-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.audio-player-title {
    color: #00d4ff;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 15px rgba(0, 212, 255, 0.6),
        0 0 30px rgba(0, 212, 255, 0.3);
    position: relative;
    z-index: 1;
}

.audio-player-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 71, 87, 0.25);
    border: 2px solid rgba(255, 71, 87, 0.5);
    color: #ff4757;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(255, 71, 87, 0.3);
}

.audio-player-close:hover {
    background: rgba(255, 71, 87, 0.4);
    border-color: #ff4757;
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.5);
}

.audio-player-content {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 15px 20px;
}

.audio-play-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(0, 255, 136, 0.25) 100%);
    border: 3px solid rgba(0, 212, 255, 0.6);
    color: #00d4ff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 5px 20px rgba(0, 212, 255, 0.4),
        0 0 15px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.audio-play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.audio-play-btn:hover::before {
    width: 100%;
    height: 100%;
}

.audio-play-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(0, 255, 136, 0.4) 100%);
    border-color: #00d4ff;
    transform: scale(1.15);
    box-shadow: 
        0 8px 30px rgba(0, 212, 255, 0.6),
        0 0 25px rgba(0, 212, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.audio-play-btn.playing {
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.7);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
    animation: pulsePlay 2s ease-in-out infinite;
    box-shadow: 
        0 5px 20px rgba(0, 255, 136, 0.5),
        0 0 20px rgba(0, 255, 136, 0.4);
}

.audio-play-btn.playing:hover {
    box-shadow: 
        0 8px 30px rgba(0, 255, 136, 0.7),
        0 0 30px rgba(0, 255, 136, 0.6);
}

.audio-play-btn i {
    position: relative;
    z-index: 1;
}

@keyframes pulsePlay {
    0%, 100% {
        box-shadow: 
            0 5px 20px rgba(0, 255, 136, 0.5),
            0 0 20px rgba(0, 255, 136, 0.4);
    }
    50% {
        box-shadow: 
            0 5px 30px rgba(0, 255, 136, 0.8),
            0 0 35px rgba(0, 255, 136, 0.6);
    }
}

.audio-volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.audio-mute-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.15);
    border: 2px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
}

.audio-mute-btn:hover {
    background: rgba(0, 212, 255, 0.25);
    border-color: #00d4ff;
    transform: scale(1.12);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

.audio-mute-btn.muted {
    color: #ff4757;
    border-color: rgba(255, 71, 87, 0.6);
    background: rgba(255, 71, 87, 0.15);
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

.audio-mute-btn.muted:hover {
    background: rgba(255, 71, 87, 0.25);
    border-color: #ff4757;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.5);
}

.audio-volume-slider {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.audio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    cursor: pointer;
    box-shadow: 
        0 3px 10px rgba(0, 212, 255, 0.6),
        0 0 8px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.audio-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    box-shadow: 
        0 4px 15px rgba(0, 212, 255, 0.8),
        0 0 12px rgba(0, 212, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.audio-volume-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 3px 10px rgba(0, 212, 255, 0.6),
        0 0 8px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.audio-volume-slider::-moz-range-thumb:hover {
    transform: scale(1.25);
    box-shadow: 
        0 4px 15px rgba(0, 212, 255, 0.8),
        0 0 12px rgba(0, 212, 255, 0.6);
}

.audio-volume-slider::-moz-range-track {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.audio-volume-value {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 40px;
    text-align: right;
    text-shadow: 
        0 0 12px rgba(0, 212, 255, 0.6),
        0 0 24px rgba(0, 212, 255, 0.3);
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .audio-player-toggle {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .audio-player {
        bottom: 20px;
        left: 85px;
        min-width: 280px;
        max-width: 90%;
    }
    
    .pokeball {
        width: 35px;
        height: 35px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-text {
        font-size: 1.5rem;
        padding: 10px 18px;
    }
    
    .main-nav a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .audio-player-header {
        padding: 12px 15px;
    }
    
    .audio-player-title {
        font-size: 0.85rem;
    }
    
    .audio-player-content {
        padding: 12px 15px;
    }
    
    .audio-play-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .audio-volume-control {
        gap: 8px;
    }
    
    .audio-volume-value {
        font-size: 0.75rem;
        min-width: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .stats-grid,
    .features-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
