/* ========================================
   STPACK - DESIGN CYBERPUNK/FUTURISTA NEON
   Estilo: Gaming Futurista com Efeitos Neon
   ======================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Neon Cyberpunk */
    --neon-purple: #a855f7;
    --neon-violet: #c084fc;
    --neon-pink: #e879f9;
    --neon-cyan: #22d3ee;
    --black-bg: #1a0033;
    --black-card: #2d0052;
    --black-darker: #0f0021;

    /* Gradientes Neon */
    --gradient-neon: linear-gradient(135deg, #a855f7 0%, #c084fc 50%, #e879f9 100%);
    --gradient-bg: linear-gradient(180deg, #1a0033 0%, #2d0052 50%, #1a0033 100%);

    /* Shadows & Glows */
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(168, 85, 247, 0.3);
    --glow-pink: 0 0 20px rgba(232, 121, 249, 0.5), 0 0 40px rgba(232, 121, 249, 0.3);
    --glow-cyan: 0 0 20px rgba(34, 211, 238, 0.5), 0 0 40px rgba(34, 211, 238, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--black-bg);
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    margin-left: 80px;
    transition: margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
}

/* Quando sidebar expande, empurra o conteúdo */
body.sidebar-expanded {
    margin-left: 220px;
}

/* Scan Lines Effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 999;
    opacity: 0.3;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Container específico para livestream content */
.live-stream-content .container {
    max-width: 1100px;
    padding: 0 1.5rem;
}

/* === SIDEBAR EXPANDÍVEL CYBERPUNK === */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80px;
    background: rgba(15, 0, 33, 0.98);
    backdrop-filter: blur(30px);
    border-right: 3px solid var(--neon-purple);
    box-shadow: 5px 0 50px rgba(168, 85, 247, 0.5);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header:hover {
    width: 220px;
    box-shadow:
        5px 0 60px rgba(168, 85, 247, 0.7),
        5px 0 100px rgba(168, 85, 247, 0.4);
}

.header-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

/* Logo Circular com Anéis Pulsantes */
.logo-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--glow-purple);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px;
}

.main-header:hover .logo-circle {
    width: 60px;
    height: 60px;
    transform: scale(1.05);
}

.logo-circle:hover {
    transform: scale(1.1);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
    z-index: 2;
    transition: font-size 0.4s ease;
}

.main-header:hover .logo-text {
    font-size: 1.5rem;
}

/* Logo Image */
.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 1s;
}

@keyframes pulseRing {
    0% {
        width: 60px;
        height: 60px;
        opacity: 1;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* Navegação com Cards Expansíveis */
.main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    flex: 1;
    justify-content: center;
    width: 100%;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0.5rem;
    text-align: center;
    background: rgba(45, 0, 82, 0.4);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2);
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.nav-link:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--neon-purple);
    box-shadow:
        0 0 20px rgba(168, 85, 247, 0.6),
        0 0 40px rgba(168, 85, 247, 0.3),
        inset 0 0 20px rgba(168, 85, 247, 0.1);
    color: var(--neon-violet);
}

.main-header:hover .nav-link {
    padding: 1.2rem 1.5rem;
}

.nav-link.active {
    background: rgba(168, 85, 247, 0.2);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow:
        0 0 25px rgba(232, 121, 249, 0.7),
        0 0 50px rgba(232, 121, 249, 0.4),
        inset 0 0 30px rgba(232, 121, 249, 0.2);
}

.nav-link.active::before {
    opacity: 0.2;
}

.link-text {
    position: relative;
    z-index: 1;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    transition: gap 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header:hover .link-text {
    gap: 0.8rem;
    justify-content: flex-start;
}

.link-text::before {
    content: attr(data-icon);
    display: block;
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.8));
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.main-header:hover .link-text::before {
    font-size: 1.5rem;
}

/* Esconde o texto quando collapsed */
.link-text::after {
    content: attr(data-text);
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.main-header:hover .link-text::after {
    opacity: 1;
    max-width: 150px;
}

.link-bar {
    display: none;
}

.nav-divider {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-line {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--neon-purple);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.mobile-menu-btn.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: rgba(26, 0, 51, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--neon-purple);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.5);
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-link {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    border: 2px solid var(--neon-purple);
    border-radius: 8px;
    background: rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
}

.mobile-link:hover {
    background: rgba(168, 85, 247, 0.2);
    box-shadow: var(--glow-purple);
}

/* === SECTIONS === */
section {
    padding: 2rem 0;
    position: relative;
}

/* === PAGE HERO (para outras páginas) === */
.page-hero {
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 2rem;
    position: relative;
    width: 100%;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(168, 85, 247, 0.15) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.page-hero-header {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: glitch 3s infinite;
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.8));
    margin: 0;
}

/* === LIVE STREAM CONTENT SECTION === */
.live-stream-content {
    padding: 1.5rem 0;
    position: relative;
    width: 100%;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translateX(0); }
    92% { transform: translateX(-2px); }
    94% { transform: translateX(2px); }
    96% { transform: translateX(-2px); }
}

.stream-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* TV Frame Futurista - Tamanho Equilibrado */
.tv-frame {
    width: 100%;
    max-width: 1100px;
    background: var(--black-card);
    border: 2px solid var(--neon-purple);
    border-radius: 10px;
    padding: 0.8rem;
    box-shadow:
        var(--glow-purple),
        inset 0 0 50px rgba(168, 85, 247, 0.1);
    position: relative;
    overflow: hidden;
}

.tv-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        var(--neon-purple) 10%,
        transparent 20%
    );
    animation: rotate 4s linear infinite;
    opacity: 0.3;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.tv-screen {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #1a0033;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

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

.offline-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(26, 0, 51, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 2;
}

.offline-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.8));
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.offline-screen p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
}

/* === SEPARATOR NEON === */
.separator-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

.separator-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--neon-purple) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.separator-icon {
    font-size: 2.2rem;
    color: var(--neon-purple);
    animation: rotate 4s linear infinite;
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.8));
}

/* === PARTNERS SECTION === */
.partners {
    padding: 5rem 0;
    position: relative;
}

.partners h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: var(--black-card);
    border: 2px solid var(--neon-purple);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.partner-card:hover::before {
    opacity: 0.1;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-purple);
    border-color: var(--neon-pink);
}

.partner-card > * {
    position: relative;
    z-index: 1;
}

.partner-logo-placeholder {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(232, 121, 249, 0.1));
    border: 2px solid var(--neon-purple);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.5));
}

.partner-card h3 {
    font-size: 1.5rem;
    color: var(--neon-violet);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.partner-bonus {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bonus-item {
    flex: 1;
    background: rgba(168, 85, 247, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--neon-purple);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background: rgba(168, 85, 247, 0.2);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.partner-bonus-label {
    font-size: 0.8rem;
    color: var(--neon-violet);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.partner-bonus-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
}

.partner-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-neon);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-purple);
    border: 2px solid transparent;
}

.partner-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 30px rgba(168, 85, 247, 0.8),
        0 0 60px rgba(168, 85, 247, 0.5);
    border-color: var(--neon-cyan);
}

/* === FOOTER MINIMALISTA NOVO === */
.site-footer {
    position: relative;
    margin-top: 5rem;
    padding: 3rem 0 1.5rem;
    background: var(--black-darker);
    border-top: 2px solid var(--neon-purple);
    box-shadow: 0 -10px 40px rgba(168, 85, 247, 0.3);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand-col {
    gap: 1rem;
}

.footer-logo-mark {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    color: white;
    box-shadow: var(--glow-purple);
    overflow: hidden;
    padding: 5px;
}

/* Footer Logo Image */
.footer-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-slogan {
    color: rgba(192, 132, 252, 0.8);
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-heading {
    color: var(--neon-violet);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.social-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-minimal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-minimal:hover {
    color: var(--neon-violet);
    transform: translateX(5px);
}

.social-minimal svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--neon-purple);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
}

.footer-nav a:hover {
    color: var(--neon-violet);
    padding-left: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
}

.copyright {
    color: rgba(156, 163, 175, 0.8);
    font-size: 0.75rem;
}

.made-by {
    color: rgba(156, 163, 175, 0.8);
    font-size: 0.75rem;
}

.made-by a {
    color: var(--neon-violet);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.made-by a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(232, 121, 249, 0.5);
}

/* === NOVAS SECÇÕES: HORÁRIO E STATS === */
.stream-schedule {
    padding: 4rem 0;
    position: relative;
}

.stream-schedule h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.8rem;
    max-width: 1100px;
    margin: 0 auto;
}

.schedule-day {
    background: var(--black-card);
    border: 2px solid var(--neon-purple);
    border-radius: 10px;
    padding: 1rem 0.6rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.schedule-day:hover::before {
    opacity: 1;
}

.schedule-day:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-purple);
}

.day-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-violet);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.day-time {
    font-size: 0.95rem;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Courier New', monospace;
}

.stats-section {
    padding: 4rem 0;
    position: relative;
}

.stats-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-box {
    background: var(--black-card);
    border: 2px solid var(--neon-purple);
    border-radius: 10px;
    padding: 1.2rem 1rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-box:hover::before {
    opacity: 0.1;
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--glow-purple);
    border-color: var(--neon-pink);
}

.stat-number {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
    font-family: 'Courier New', monospace;
}

.stat-label {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    color: rgba(192, 132, 252, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === SISTEMA DE PARTÍCULAS === */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -500px) rotate(360deg);
        opacity: 0;
    }
}

/* Mouse trail */
.mouse-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: fadeTrail 1s ease-out forwards;
}

@keyframes fadeTrail {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Orbes flutuantes */
.orbs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    animation: floatOrb linear infinite;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(100px, -100px) scale(1.2);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50px, -200px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(150px, -150px) scale(1.1);
        opacity: 0.6;
    }
}

/* Adicionar glow pulsante em cards */
.partner-card,
.stat-box,
.schedule-day,
.spec-card,
.cs2-card {
    animation: subtleGlow 4s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
    }
}

/* === RESPONSIVE === */

/* Desktop Extra Large (1440p e acima) */
@media (min-width: 1441px) {
    .container {
        max-width: 1600px;
    }

    .tv-frame {
        max-width: 1600px;
    }

    .page-title {
        font-size: 5.5rem;
        letter-spacing: 10px;
    }

    .partners h2,
    .stream-schedule h2,
    .stats-section h2 {
        font-size: 3rem;
    }
}

/* Desktop Large (1200px - 1440px) */
@media (min-width: 1200px) and (max-width: 1440px) {
    .container {
        max-width: 1300px;
    }

    .tv-frame {
        max-width: 1450px;
    }

    .page-title {
        font-size: 5rem;
        letter-spacing: 9px;
    }
}

/* Desktop Perfeito (1920x1080 - Sweet Spot) */
@media (min-width: 1800px) and (max-width: 1920px) {
    .container {
        max-width: 1750px;
    }

    .tv-frame {
        max-width: 1750px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .schedule-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.75rem;
    }

    section {
        padding: 2rem 0;
    }

    .stat-box,
    .schedule-day {
        padding: 1.5rem;
    }
}

/* Desktop Normal (1080p: 1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: 1100px;
    }

    .tv-frame {
        max-width: 1200px;
    }

    .page-title {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .partners h2,
    .stream-schedule h2,
    .stats-section h2 {
        font-size: 2rem;
    }

    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    body {
        margin-left: 70px;
    }

    .main-header {
        width: 70px;
        padding: 1.5rem 0.3rem;
    }

    .main-header:hover {
        width: 200px;
    }

    .logo-circle {
        width: 45px;
        height: 45px;
    }

    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .tv-frame {
        max-width: 100%;
    }

    .live-stream-content {
        padding-top: 1rem;
    }

    .page-hero {
        padding-top: 2rem;
        min-height: 20vh;
    }

    .page-title {
        font-size: 3.5rem;
        letter-spacing: 6px;
    }

    .partners h2,
    .stream-schedule h2,
    .stats-section h2 {
        font-size: 2rem;
    }

    .stream-container {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

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

    .schedule-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (menos de 768px) */
@media (max-width: 767px) {
    /* Remove sidebar completamente - Só header no topo */
    body {
        margin-left: 0;
    }

    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        width: 100% !important;
        height: auto;
        flex-direction: row;
        padding: 1rem 0;
        border-right: none;
        border-bottom: 2px solid var(--neon-purple);
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
        overflow-y: visible;
    }

    .main-header:hover {
        width: 100% !important;
    }

    .header-content {
        max-width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 1.5rem;
        gap: 0;
        height: auto;
    }

    .logo-circle {
        width: 50px;
        height: 50px;
    }

    .main-header:hover .logo-circle {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .main-header:hover .logo-text {
        font-size: 1.3rem;
    }

    /* Esconde navegação desktop, mostra hamburger */
    .main-nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav {
        display: flex;
        top: 82px;
    }

    /* Ajustes de conteúdo mobile */
    .live-stream-content {
        padding-top: 1rem;
    }

    .page-hero {
        padding-top: 7rem;
        min-height: 20vh;
        padding-bottom: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .tv-frame {
        padding: 1rem;
        max-width: 100%;
    }

    .page-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .page-hero-header {
        margin-bottom: 2rem;
        padding-top: 1rem;
    }

    .partners h2 {
        font-size: 1.8rem;
    }

    .stream-schedule h2,
    .stats-section h2 {
        font-size: 1.6rem;
    }

    /* Grids mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Ajustes de cards mobile */
    section {
        padding: 3rem 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .partner-btn {
        font-size: 0.85rem;
        padding: 0.9rem;
    }
}

/* Mobile Extra Pequeno (menos de 480px) */
@media (max-width: 480px) {
    .header-content {
        padding: 0 1rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .page-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .partners h2,
    .stream-schedule h2,
    .stats-section h2 {
        font-size: 1.4rem;
    }

    .tv-frame {
        padding: 0.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .schedule-day {
        padding: 1rem;
    }

    .day-time {
        font-size: 1.2rem;
    }
}
