.gamer-stats {
    position: fixed;
    left: 15px;
    top: 310px;
    bottom: auto;         /* pode trocar por top: 20px se quiser em cima */
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    animation: floatHUD 4s ease-in-out infinite;
}

/* ================= BOX ================= */

.stat-box {
    background: linear-gradient(145deg, rgba(20,20,25,0.9), rgba(10,10,15,0.9));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 10px 14px;
    text-align: left;
    min-width: 150px;

    box-shadow:
        0 0 10px rgba(0, 255, 255, 0.15),
        inset 0 0 8px rgba(0, 255, 255, 0.05);

    transition: 0.25s;
    backdrop-filter: blur(6px);
}

.stat-box:hover {
    transform: translateX(4px) scale(1.02);
    box-shadow:
        0 0 14px rgba(0, 255, 255, 0.35),
        inset 0 0 10px rgba(0, 255, 255, 0.12);
}

/* ================= ICON ================= */

.stat-box i {
    font-size: 14px;
    margin-right: 6px;
}

/* ================= TEXT ================= */

.stat-box .label {
    font-size: 9px;
    letter-spacing: 1.5px;
    opacity: 0.65;
    display: block;
}

.stat-box .number {
    font-size: 18px;
    font-weight: 800;
    display: block;
    margin-top: 2px;
}

/* ================= NEON ================= */

.online .number { color: #00ffff; text-shadow: 0 0 6px #00ffff; }
.today .number  { color: #ff2d55; text-shadow: 0 0 6px #ff2d55; }
.total .number  { color: #00ff88; text-shadow: 0 0 6px #00ff88; }

.online i { color: #00ffff; }
.today i  { color: #ff2d55; }
.total i  { color: #00ff88; }

@keyframes floatHUD {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

@media (max-width: 768px) {

    .gamer-stats {
        
        position: fixed;
        left: 15px;
        top: 200px;
        bottom: auto;         /* pode trocar por top: 20px se quiser em cima */
        display: none;
        flex-direction: column;
        gap: 12px;
        animation: floatHUD 4s ease-in-out infinite;
    }

    .stat-box {
        min-width: auto;
        padding: 8px 10px;
        border-radius: 10px;
        text-align: center;
    }

    .stat-box i {
        font-size: 12px;
        margin: 0 0 3px 0;
        display: block;
    }

    .stat-box .label {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .stat-box .number {
        font-size: 14px;
    }
}
.stat-box.countries {
    cursor: pointer;
    position: relative;
}

/* Dropdown escondido */
.countries-dropdown {
    position: absolute;
    left: 105%;
    top: 0;

    background: rgba(5, 10, 20, 0.95);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 10px;

    padding: 10px;
    min-width: 180px;

    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;

    transition: 0.25s ease;

    box-shadow:
        0 0 12px rgba(0, 255, 255, 0.35),
        inset 0 0 8px rgba(0, 255, 255, 0.08);
}

/* Hover ativa */
.stat-box.countries:hover .countries-dropdown {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Itens */
.country {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 4px 6px;
    border-radius: 6px;
    color: rgba(220, 240, 255, 0.85);
}

.country:hover {
    background: rgba(0, 255, 255, 0.08);
}

.country b {
    color: #00ffff;
    text-shadow: 0 0 6px #00ffff;
}
@media (max-width: 768px) {

    .countries-dropdown {
        left: 0;
        right: 0;
        top: auto;
        bottom: 115%;

        transform: translateY(10px);
    }

    .stat-box.countries:hover .countries-dropdown {
        transform: translateY(0);
    }
}
