@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;700&display=swap');

:root {
    --primary-color: #FFD700;
    --primary-gradient: linear-gradient(90deg, #FFD700 0%, #FFB300 100%);
    --background-color: #08080D;
    --text-color: #e0e0e0;
    --text-muted-color: #b0b0b0;
    --card-background-color: rgba(15, 15, 25, 0.7);
    --darker-background: #050508;
    --font-body: 'Roboto', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
    --neon-glow-strong: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color), 0 0 15px var(--primary-color);
    --neon-glow-medium: 0 0 3px var(--primary-color), 0 0 6px var(--primary-color);
    --shadow-card: 0 5px 25px rgba(0,0,0,0.5);
    --shadow-header: 0 2px 10px rgba(0,0,0,0.3);
    --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 0 auto;
}

/* Header */
.site-header {
    background-color: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    width: 90%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-header);
    border-radius: 0 0 16px 16px;
    margin-bottom: 10px;
    animation: fadeInDown 0.8s;
    position: relative;
}

.site-header .logo-title {
    font-family: var(--font-heading);
    font-size: 2.1em;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 900;
    text-shadow: var(--neon-glow-medium);
    letter-spacing: 2px;
    transition: var(--transition);
}
.site-header .logo-title:hover {
    filter: brightness(1.2) drop-shadow(0 0 8px var(--primary-color));
}

.site-header nav {
    display: flex;
    align-items: center;
}
.site-header nav .nav-link {
    font-family: var(--font-heading);
    color: var(--text-color);
    padding: 8px 18px;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 20px;
    font-size: 1.05em;
    font-weight: bold;
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}
.site-header nav .nav-link:hover, .site-header nav .nav-link.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-shadow: var(--neon-glow-medium);
    background: rgba(255, 215, 0, 0.07);
}
.site-header nav .button-style {
    background: var(--primary-gradient);
    color: var(--background-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}
.site-header nav .button-style:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: var(--neon-glow-strong);
}

/* Ícones SVG */
.icon-svg {
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    fill: currentColor;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(8, 8, 13, 0.7), rgba(8, 8, 13, 0.9)), url('banner.png') no-repeat center center/cover;
    color: white;
    padding: 100px 20px 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    width: 100%;
    animation: fadeIn 1.2s;
    position: relative;
}
.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 4.5em;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 5px #fff,
        0 0 12px #fff,
        0 0 20px var(--primary-color),
        0 0 30px var(--primary-color),
        0 0 40px var(--primary-color),
        0 0 55px var(--primary-color),
        0 0 70px var(--primary-color);
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: 3px;
    animation: realisticNeonPulse 1.8s infinite ease-in-out;
    padding: 10px 25px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    display: inline-block;
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, rgba(255,215,0,0.25), rgba(255,215,0,0.7), rgba(255,215,0,0.25));
    border-image-slice: 1;
    box-shadow: 0 0 40px rgba(0,0,0,0.7), 0 0 20px rgba(255,215,0,0.2) inset;
    transform: perspective(600px) rotateX(3deg);
}
.hero-section p.subtitle {
    font-size: 1.5em;
    color: var(--text-muted-color);
    margin-bottom: 40px;
    max-width: 700px;
    animation: fadeInUp 1.5s;
}
.hero-section .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}
.hero-section .cta-buttons a {
    font-family: var(--font-heading);
    background: var(--primary-gradient);
    color: var(--background-color);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 10px 10px 0;
    animation: fadeInUp 1.7s;
}
.hero-section .cta-buttons a:hover {
    background: transparent;
    color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--neon-glow-strong);
}
.hero-section .cta-buttons a.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.hero-section .cta-buttons a.secondary:hover {
    background: var(--primary-gradient);
    color: var(--background-color);
}
.hero-section .hero-highlight {
    font-family: var(--font-heading);
    font-size: 1.5em;
    color: #FFD600;
    text-shadow: 0 2px 6px #000, 0 0 8px #FFD600;
    font-weight: 900;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
    text-align: center;
    min-height: 48px;
    line-height: 1.2;
    background: rgba(10,10,20,0.72);
    border-radius: 8px;
    padding: 10px 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    border: 1.5px solid rgba(255,215,0,0.18);
    animation: none;
    transition: opacity 0.7s, background 0.3s;
}

/* Conteúdo principal */
.content-wrapper {
    width: 90%;
    max-width: 1100px;
    padding: 40px 0;
    margin: 0 auto;
}
.section {
    background-color: var(--card-background-color);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    animation: fadeInUp 1.5s;
}
.section h2 {
    font-family: var(--font-heading);
    font-size: 2.3em;
    color: var(--primary-color);
    margin-top: 0;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
    text-shadow: var(--neon-glow-medium);
    letter-spacing: 1px;
}
.section p {
    line-height: 1.8;
    font-size: 1.13em;
    color: var(--text-color);
}
.placeholder-glow {
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color); }
    to   { text-shadow: 0 0 15px var(--primary-color), 0 0 25px var(--primary-color), 0 0 35px var(--primary-color); }
}

/* Footer */
footer {
    margin-top: auto;
    padding: 30px 20px;
    font-size: 1em;
    color: var(--text-muted-color);
    width: 100%;
    background-color: var(--darker-background);
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    letter-spacing: 0.5px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 1.5s;
}
footer p {
    margin: 5px 0;
}

/* Estilo para as estatísticas do site no rodapé */
.site-stats {
    margin: 15px 0;
    font-size: 0.9em;
    color: var(--text-muted-color);
}

.site-stats p {
    margin: 4px 0;
    display: inline-block; /* Para colocar lado a lado se houver espaço */
    margin-right: 15px; /* Espaçamento entre os contadores */
}

.site-stats p:last-child {
    margin-right: 0;
}

.site-stats span {
    color: var(--primary-color);
    font-weight: bold;
}

/* Animações de entrada */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 900px) {
    .content-wrapper, .site-header {
        width: 98%;
        padding: 0 2%;
    }
    .section {
        padding: 25px 10px;
    }
    .hero-section {
        padding: 60px 10px 40px 10px;
    }
    .site-header .logo-title {
        font-size: 1.3em;
    }
    .site-header nav {
        position: static !important;
        width: 100% !important;
        background: none !important;
        flex-direction: row !important;
        align-items: center !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        display: flex !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .site-header nav .nav-link {
        display: flex !important;
        margin: 0 8px 0 0 !important;
        width: auto !important;
        font-size: 1em !important;
        padding: 8px 10px !important;
        border-radius: 5px !important;
    }
    .menu-toggle {
        display: none !important;
    }
    .social-links {
        margin-left: 0;
        margin-top: 8px;
    }
    .centered-nav {
        flex-direction: row !important;
        gap: 8px !important;
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
    }
    .site-header {
        justify-content: center;
    }
    .site-header nav .nav-link {
        min-width: 0 !important;
        flex: 1 1 0 !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 8px 4px !important;
        font-size: 0.98em !important;
    }
}
@media (max-width: 600px) {
    .hero-section {
        padding: 40px 2vw 24px 2vw;
        min-height: 60vh;
    }
    .hero-section .cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: stretch;
    }
    .hero-section .cta-buttons a,
    .hero-section .cta-buttons .liberar-id,
    .hero-section .cta-buttons a.secondary {
        width: 100%;
        min-width: 0;
        max-width: 100vw;
        box-sizing: border-box;
        padding: 12px 0 !important;
        font-size: 1.05em !important;
        border-radius: 8px !important;
        margin: 0 0 8px 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .hero-section .cta-buttons .liberar-id {
        padding: 12px 0 !important;
        font-size: 1.05em !important;
        border-radius: 8px !important;
        margin: 0 0 8px 0 !important;
        width: 100%;
        min-width: 0;
        max-width: 100vw;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .content-wrapper {
        width: 100vw;
        max-width: 100vw;
        padding: 0 0 10px 0;
        margin: 0;
    }
    .section {
        padding: 10px 2vw;
        margin-bottom: 18px;
        border-radius: 8px;
    }
    .como-jogar .steps-wrapper {
        gap: 12px;
    }
    .como-jogar .step {
        min-width: 0;
        max-width: 100vw;
        padding: 16px 6px 12px 6px;
        border-radius: 8px;
    }
    .sobre-nos {
        padding: 10px 2vw;
        margin: 18px 0 24px 0;
        border-radius: 8px;
    }
    .sobre-nos-content {
        gap: 10px;
    }
    .sobre-nos-img img {
        width: 98vw;
        max-width: 320px;
        height: 110px;
        border-radius: 8px;
    }
    .site-header nav {
        display: flex !important;
        opacity: 1 !important;
        max-height: none !important;
        pointer-events: auto !important;
        position: static !important;
        background: none !important;
        box-shadow: none !important;
        flex-direction: row !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .site-header nav .nav-link {
        display: flex !important;
        margin: 0 8px 0 0 !important;
        width: auto !important;
        font-size: 1em !important;
        padding: 8px 10px !important;
        border-radius: 5px !important;
    }
    .centered-nav {
        gap: 4px !important;
    }
}
@media (max-width: 700px) {
    body {
        padding-left: 20px;
        padding-right: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .main-container {
        width: 100vw;
        max-width: 100vw;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .hero-section, .content-wrapper, .section, .sobre-nos {
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
    .site-header {
        flex-direction: column;
        align-items: center;
        padding: 10px 0 0 0;
        width: 100vw;
        min-width: 0;
    }
    .social-links {
        justify-content: center;
        align-items: center;
        margin: 0 0 8px 0 !important;
        width: 100vw;
        gap: 18px;
        display: flex !important;
    }
    .centered-nav {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100vw;
        gap: 8px;
        margin: 0 0 8px 0;
        display: flex !important;
    }
    .site-header nav {
        width: 100vw !important;
        justify-content: center !important;
        align-items: center !important;
        background: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 0 8px 0 !important;
        position: static !important;
        display: flex !important;
    }
    .site-header nav .nav-link {
        flex: 1 1 0;
        min-width: 0;
        max-width: 100vw;
        text-align: center;
        margin: 0 4px !important;
        padding: 12px 0 !important;
        font-size: 1em !important;
        border-radius: 6px !important;
        box-sizing: border-box;
    }
    .hero-section .hero-highlight {
        font-size: 1em;
        min-height: 28px;
        padding: 6px 8px;
    }
    .hero-section .cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: stretch;
    }
    .hero-section .cta-buttons a,
    .hero-section .cta-buttons .liberar-id,
    .hero-section .cta-buttons a.secondary {
        width: 100%;
        min-width: 0;
        max-width: 100vw;
        box-sizing: border-box;
        padding: 12px 0 !important;
        font-size: 1.05em !important;
        border-radius: 8px !important;
        margin: 0 0 8px 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .hero-section .cta-buttons .liberar-id {
        padding: 12px 0 !important;
        font-size: 1.05em !important;
        border-radius: 8px !important;
        margin: 0 0 8px 0 !important;
        width: 100%;
        min-width: 0;
        max-width: 100vw;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
}

/* Acessibilidade: foco visível */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Social Links Header/Footer */
.social-links, .footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 18px;
}
.social-links a, .footer-social a {
    color: var(--primary-color);
    font-size: 1.4em;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 50%;
}
.social-links a:hover, .footer-social a:hover {
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 0 8px var(--primary-color);
    color: #fff;
}

/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}
.menu-toggle:focus, .menu-toggle:hover {
    background: rgba(255, 215, 0, 0.08);
}
.menu-toggle .icon-svg {
    width: 2em;
    height: 2em;
    fill: var(--primary-color);
}

/* Server Status */
.server-status {
    margin-top: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 18px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: var(--shadow-card), 0 0 15px rgba(255, 215, 0, 0.2);
    animation: fadeInUp 2s;
    max-width: 500px;
    width: 90%;
    font-size: 1.3em;
    transition: all 0.3s ease;
}

.server-status:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card), 0 0 25px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-color);
}

#server-info-text {
    color: var(--text-color);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.status-indicator {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 8px;
    box-shadow: 0 0 5px currentColor;
}

.status-indicator.loading {
    background-color: #FFC107;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 8px #FFC107;
}

.status-indicator.online {
    background-color: #00e676;
    box-shadow: 0 0 8px #00e676, 0 0 15px #00e676;
    animation: pulse 2s infinite;
}

.status-indicator.offline {
    background-color: #F44336;
    box-shadow: 0 0 8px #F44336, 0 0 15px #F44336;
}

.players-list {
    position: fixed !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    background-color: rgba(10, 10, 20, 0.9);
    padding: 20px 15px 20px 20px;
    border-radius: 0 12px 12px 0;
    max-height: 450px;
    width: 320px;
    overflow-y: auto;
    display: none;
    border-left: none;
    border-top: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    text-align: left;
    z-index: 1000 !important;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(8px);
}

/* Estilização da Scrollbar para Webkit (Chrome, Safari, Edge novo) */
.players-list::-webkit-scrollbar {
    width: 8px;
}

.players-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.players-list::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.players-list::-webkit-scrollbar-thumb:hover {
    background-color: #FFB300;
}

.players-list::before {
    content: "JOGADORES ONLINE";
    display: block;
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.3em;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.4);
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px var(--primary-color);
}

.players-list.visible {
    display: block;
    animation: slideInLeft 0.5s forwards;
}

.players-list.visible .player-item {
    animation: listItemFadeIn 0.5s ease-out forwards;
    opacity: 0; /* Começa invisível para a animação */
}

/* Animação para itens da lista com delay escalonado */
.players-list.visible .player-item:nth-child(1) { animation-delay: 0.1s; }
.players-list.visible .player-item:nth-child(2) { animation-delay: 0.15s; }
.players-list.visible .player-item:nth-child(3) { animation-delay: 0.2s; }
.players-list.visible .player-item:nth-child(4) { animation-delay: 0.25s; }
.players-list.visible .player-item:nth-child(5) { animation-delay: 0.3s; }
.players-list.visible .player-item:nth-child(6) { animation-delay: 0.35s; }
.players-list.visible .player-item:nth-child(7) { animation-delay: 0.4s; }
.players-list.visible .player-item:nth-child(8) { animation-delay: 0.45s; }
.players-list.visible .player-item:nth-child(9) { animation-delay: 0.5s; }
.players-list.visible .player-item:nth-child(10) { animation-delay: 0.55s; }
/* Adicione mais se normalmente tiver mais de 10 jogadores visíveis de uma vez */

@keyframes listItemFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.player-item {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.2);
    margin-bottom: 8px;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    border-left: 4px solid transparent;
    position: relative;
}

.player-item::before { /* Pequeno detalhe visual */
    content: '';
    position: absolute;
    left: -2px; /* Ajustado para alinhar com a borda mais grossa */
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0%; /* Começa com altura 0 */
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: height 0.2s ease-in-out;
}

.player-item:hover::before {
    height: 60%; /* Altura aumenta no hover */
}

.player-item:hover {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    transform: translateX(10px) scale(1.03); /* Efeito mais pronunciado */
    border-left-color: var(--primary-color); /* Cor da borda principal no hover */
    box-shadow: 0 2px 12px rgba(255,215,0,0.15);
}

.player-name {
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.5px;
    font-size: 1.05em;
    transition: color 0.2s ease-in-out;
    width: 100%; /* Para ocupar o espaço disponível */
    text-align: left; /* Garantir alinhamento à esquerda */
}

.player-item:hover .player-name {
    color: var(--primary-color);
}

.toggle-players {
    cursor: pointer;
    position: fixed !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) translateX(-52px) rotate(-90deg) !important;
    transform-origin: left top !important;
    font-size: 1em;
    color: var(--primary-color);
    background-color: rgba(5, 5, 8, 0.85);
    border: 2px solid var(--primary-color);
    font-family: var(--font-heading);
    padding: 12px 18px;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
    z-index: 1001 !important;
    font-weight: bold;
    width: auto;
    min-width: 140px;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 2px 0px 15px rgba(0, 0, 0, 0.6), 0 0 10px var(--primary-color) inset;
    backdrop-filter: blur(5px);
}

.toggle-players:hover {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 2px 0px 20px rgba(0, 0, 0, 0.8), 0 0 15px var(--primary-color) inset;
}

.toggle-players.active {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 2px 0px 20px rgba(0, 0, 0, 0.8), 0 0 15px var(--primary-color) inset;
    transform: translateY(-50%) translateX(-52px) rotate(-90deg) scale(1.05) !important;
}

@keyframes neonPulse {
    from {
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 15px var(--primary-color),
            0 0 20px var(--primary-color),
            0 0 25px var(--primary-color),
            0 0 30px var(--primary-color),
            0 0 35px var(--primary-color);
    }
    to {
        text-shadow: 
            0 0 10px #fff,
            0 0 15px #fff,
            0 0 20px var(--primary-color),
            0 0 25px var(--primary-color),
            0 0 30px var(--primary-color),
            0 0 40px var(--primary-color),
            0 0 50px var(--primary-color);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateY(-50%) translateX(-100%) !important;
        opacity: 0.5;
    }
    to {
        transform: translateY(-50%) translateX(0) !important;
        opacity: 1;
    }
}

/* Como Jogar - Steps */
.como-jogar {
    background: linear-gradient(120deg, rgba(255,215,0,0.07) 0%, rgba(8,8,13,0.7) 100%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.como-jogar .steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px 18px;
    margin-top: 32px;
}
.como-jogar .step {
    background: rgba(20, 20, 30, 0.85);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    flex: 1 1 180px;
    min-width: 180px;
    max-width: 220px;
    padding: 28px 18px 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: fadeInUp 1.2s;
}
.como-jogar .step:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 32px rgba(255,215,0,0.13), 0 2px 12px rgba(0,0,0,0.22);
}
.como-jogar .step .icon-svg {
    width: 2.6em;
    height: 2.6em;
    margin-bottom: 12px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px var(--primary-color));
}
.como-jogar .step h3 {
    font-family: var(--font-heading);
    font-size: 1.15em;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    font-weight: 700;
    letter-spacing: 1px;
}
.como-jogar .step p {
    font-size: 1em;
    color: var(--text-color);
    margin: 0;
}
.como-jogar .step a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}
.como-jogar .step a:hover {
    color: #fff;
}
@media (max-width: 900px) {
    .como-jogar .steps-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }
    .como-jogar .step {
        max-width: 340px;
        width: 100%;
    }
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Nova animação para o H1 - simula flicker e pulsação de neon */
@keyframes realisticNeonPulse {
    0%, 100% {
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 15px var(--primary-color),
            0 0 20px var(--primary-color),
            0 0 25px var(--primary-color),
            0 0 30px var(--primary-color),
            0 0 35px var(--primary-color);
        opacity: 0.9;
    }
    50% {
        text-shadow: 
            0 0 7px #fff,
            0 0 15px #fff,
            0 0 25px var(--primary-color),
            0 0 35px var(--primary-color),
            0 0 45px var(--primary-color),
            0 0 60px var(--primary-color),
            0 0 75px var(--primary-color);
        opacity: 1;
    }
    /* Pequenos flickers */
    30%, 70% {
        opacity: 0.88;
    }
    40%, 60% {
        text-shadow: 
            0 0 6px #fff,
            0 0 12px #fff,
            0 0 20px var(--primary-color),
            0 0 30px var(--primary-color),
            0 0 40px var(--primary-color),
            0 0 50px var(--primary-color),
            0 0 65px var(--primary-color);
        opacity: 0.95;
    }
}

@keyframes intenseNeonPulse {
    0% {
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 15px var(--primary-color),
            0 0 20px var(--primary-color),
            0 0 25px var(--primary-color);
        opacity: 0.95;
    }
    50% {
        text-shadow: 
            0 0 8px #fff,
            0 0 15px #fff,
            0 0 25px var(--primary-color),
            0 0 35px var(--primary-color),
            0 0 45px var(--primary-color),
            0 0 55px var(--primary-color);
        opacity: 1;
    }
    100% {
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 15px var(--primary-color),
            0 0 20px var(--primary-color),
            0 0 25px var(--primary-color);
        opacity: 0.95;
    }
}

.reviews-carousel {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 38px auto 0 auto;
    max-width: 1100px;
    overflow: hidden;
    min-height: 170px;
    position: relative;
    z-index: 2;
    padding: 0 60px; /* padding lateral para evitar corte */
}
.review-list {
    display: flex;
    flex-direction: row;
    gap: 12px; /* gap menor para evitar corte */
    transition: transform 0.7s cubic-bezier(.77,0,.18,1);
    will-change: transform;
    justify-content: center;
    width: 100%;
}
.review-box {
    background: rgba(10,10,20,0.82);
    border: 2px solid rgba(255,215,0,0.18);
    border-radius: 14px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.22);
    color: #FFD600;
    min-width: 200px;
    max-width: 220px;
    padding: 18px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-family: var(--font-heading);
    font-size: 1.05em;
    position: relative;
    opacity: 0.93;
    transition: box-shadow 0.3s, border 0.3s;
}
.review-box .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD600 60%, #222 100%);
    border: 2.5px solid #FFD600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7em;
    color: #222;
    box-shadow: 0 0 8px #FFD60044;
    overflow: hidden;
}
.review-box .review-name {
    font-weight: bold;
    color: #FFD600;
    margin-bottom: 6px;
    font-size: 1.08em;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px #000;
}
.review-box .review-text {
    color: #fffbe7;
    font-size: 0.98em;
    text-align: center;
    text-shadow: 0 1px 4px #000;
}
@media (max-width: 900px) {
    .reviews-carousel {
        max-width: 98vw;
        padding: 0 8px;
    }
    .review-list {
        gap: 7px;
    }
    .review-box {
        min-width: 160px;
        max-width: 170px;
        font-size: 0.97em;
        padding: 12px 7px 12px 7px;
    }
    .review-box .avatar {
        width: 36px;
        height: 36px;
        font-size: 1.1em;
    }
}
@media (max-width: 600px) {
    .reviews-carousel {
        min-height: 120px;
    }
    .review-box {
        min-width: 120px;
        max-width: 130px;
        font-size: 0.85em;
        padding: 7px 3px 7px 3px;
    }
    .review-box .avatar {
        width: 28px;
        height: 28px;
        font-size: 0.8em;
    }
}

.centered-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 0%;
    gap: 32px;
    margin: 0 auto;
}

.sobre-nos {
    background: rgba(10,10,20,0.92);
    border: 2px solid rgba(255,215,0,0.10);
    border-radius: 14px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.18);
    margin: 40px auto 48px auto;
    max-width: 1100px;
    padding: 36px 32px;
    animation: fadeIn 1.2s;
}
.sobre-nos-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 38px;
}
.sobre-nos-img img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 12px #00000044;
    border: 2px solid #FFD60033;
    background: #222;
}
.sobre-nos-texto {
    flex: 1;
}
.sobre-nos-texto h2 {
    color: #FFD600;
    font-family: var(--font-heading);
    font-size: 2.1em;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px #000, 0 0 12px #FFD60044;
    border-bottom: 2px solid #FFD60044;
    padding-bottom: 8px;
}
.sobre-nos-texto p {
    color: #fffbe7;
    font-size: 1.13em;
    line-height: 1.7;
    text-shadow: 0 1px 4px #000;
}
@media (max-width: 900px) {
    .sobre-nos-content {
        flex-direction: column;
        gap: 18px;
    }
    .sobre-nos-img img {
        width: 98vw;
        max-width: 340px;
        height: 140px;
    }
    .sobre-nos {
        padding: 18px 4vw;
    }
}

.charts-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 24px;
}
.chart-box {
    background: #181818;
    border: 1.5px solid #FFD70044;
    border-radius: 12px;
    box-shadow: 0 2px 8px #00000033;
    padding: 10px 8px 8px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 210px;
    min-width: 180px;
    max-width: 220px;
    margin-bottom: 8px;
}
.chart-title {
    color: #FFD700;
    font-family: var(--font-heading);
    font-size: 1.08em;
    font-weight: bold;
    margin-bottom: 6px;
    text-align: center;
}
.chart-box canvas {
    width: 200px !important;
    height: 200px !important;
    max-width: 100%;
    background: #222;
    border-radius: 8px;
    margin-bottom: 2px;
}
@media (max-width: 900px) {
    .charts-flex-container {
        gap: 10px;
        justify-content: center;
    }
    .chart-box {
        width: 48vw;
        min-width: 120px;
        max-width: 180px;
        padding: 6px 2px 6px 2px;
    }
    .chart-box canvas {
        width: 120px !important;
        height: 120px !important;
    }
}
@media (max-width: 600px) {
    .charts-flex-container {
        gap: 6px;
    }
    .chart-box {
        width: 98vw;
        min-width: 90px;
        max-width: 120px;
        padding: 3px 1px 3px 1px;
    }
    .chart-box canvas {
        width: 90px !important;
        height: 90px !important;
    }
} 