/*
Theme Name: Playhost Child
Theme URI: https://playfivem.com/
Author: Renato Assis
Author URI: https://playfivem.com/
Description: Tema filho do Playhost para customizações sem perda de atualizações.
Template: playhost
Version: 1.0.0
Text Domain: playhost-child
*/


/* ===== KEYFRAMES & ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

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

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.4), 0 0 40px rgba(139, 92, 246, 0.2); }
    50% { box-shadow: 0 0 30px rgba(99, 102, 241, 0.6), 0 0 60px rgba(139, 92, 246, 0.3); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(99, 102, 241, 0.3); }
    50% { border-color: rgba(139, 92, 246, 0.6); }
}

/* ===== RESET E BASE ===== */
h2.pxl-page-title.wow.fadeInUp,
.pxl-item--subtitle.wow.fadeInUp {
    display: none !important;
}

.pxl-server-profile {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #e2e8f0;
    background: linear-gradient(165deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    min-height: 100vh;
    padding-bottom: 0px;
    position: relative;
    overflow-x: hidden;
}

.pxl-server-profile::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ===== HERO/BANNER SECTION ===== */
.pxl-hero-banner {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1e3f 0%, #2d1b4e 100%);
}

.pxl-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeInScale 1s ease-out;
    transition: transform 0.5s ease;
}

.pxl-hero-banner:hover img {
    transform: scale(1.02);
}

.pxl-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(15, 15, 35, 0.2) 0%, 
        rgba(15, 15, 35, 0.5) 50%,
        rgba(15, 15, 35, 0.95) 100%
    );
}

/* ===== HEADER SECTION ===== */
.pxl-server-header {
    position: relative;
    margin-top: -140px;
    padding: 0 48px 48px;
    display: flex;
    gap: 36px;
    align-items: flex-end;
    z-index: 10;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.pxl-server-avatar {
    width: 180px;
    height: 180px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid transparent;
    background: linear-gradient(135deg, #0f0f23, #1a1a2e) padding-box,
                linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%) border-box;
    box-shadow: 
        0 25px 50px -12px rgba(99, 102, 241, 0.35),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glowPulse 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pxl-server-avatar:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px -12px rgba(99, 102, 241, 0.5),
        0 0 0 1px rgba(99, 102, 241, 0.2);
}

.pxl-server-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.pxl-server-info {
    flex: 1;
    min-width: 0;
}

.pxl-server-title {
    font-size: 45px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.pxl-server-subtitle {
    font-size: 17px;
    color: #94a3b8;
    margin: 0 0 24px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===== ACTION BUTTONS ===== */
.pxl-server-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.pxl-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pxl-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.pxl-btn:hover::before {
    left: 100%;
}

.pxl-btn-connect {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    background-size: 200% 200%;
    color: white;
    box-shadow: 
        0 10px 40px -10px rgba(99, 102, 241, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: gradientMove 3s ease infinite;
}

.pxl-btn-connect:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 50px -10px rgba(99, 102, 241, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pxl-btn-connect:active {
    transform: translateY(-2px) scale(1);
}

.pxl-btn-connect[aria-disabled="true"] {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(0.5);
}

.pxl-btn-discord {
    background: rgba(88, 101, 242, 0.1);
    color: #818cf8;
    border: 2px solid rgba(88, 101, 242, 0.3);
    backdrop-filter: blur(10px);
}

.pxl-btn-discord:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px rgba(88, 101, 242, 0.4);
}

/* ===== CONTENT WRAPPER ===== */
.pxl-server-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

/* ===== DESCRIPTION SECTION ===== */
.pxl-server-description {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.6) 0%, rgba(45, 27, 78, 0.4) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 32px;
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease-out 0.3s both;
    transition: all 0.4s ease;
}

.pxl-server-description:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px -20px rgba(99, 102, 241, 0.2);
}

.pxl-server-description p {
    margin: 0;
    line-height: 1.9;
    color: #cbd5e1;
    font-size: 16px;
    letter-spacing: 0.2px;
}

/* ===== STATS GRID ===== */
.pxl-server-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.pxl-stat-card {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.5) 0%, rgba(45, 27, 78, 0.3) 100%);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.pxl-stat-card:nth-child(1) { animation-delay: 0.4s; }
.pxl-stat-card:nth-child(2) { animation-delay: 0.5s; }
.pxl-stat-card:nth-child(3) { animation-delay: 0.6s; }
.pxl-stat-card:nth-child(4) { animation-delay: 0.7s; }

.pxl-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pxl-stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.08), transparent);
    transition: left 0.6s ease;
}

.pxl-stat-card:hover {
    background: linear-gradient(135deg, rgba(40, 40, 80, 0.6) 0%, rgba(55, 37, 88, 0.4) 100%);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px -20px rgba(99, 102, 241, 0.3),
        0 0 0 1px rgba(99, 102, 241, 0.1);
}

.pxl-stat-card:hover::before {
    opacity: 1;
}

.pxl-stat-card:hover::after {
    left: 100%;
}

.pxl-stat-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.pxl-stat-label .pxl-label-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pxl-stat-label .pxl-label-left i {
    font-size: 14px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pxl-tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.pxl-tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    color: #64748b;
    font-size: 13px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.pxl-tooltip-icon:hover {
    color: #a78bfa;
    opacity: 1;
    transform: scale(1.15);
}

.pxl-tooltip-text {
    display: none;
    position: fixed;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e2e8f0;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.5);
    z-index: 999999;
    pointer-events: none;
    max-width: 320px;
    white-space: normal !important;
}

.pxl-tooltip-text.show {
    display: block !important;
    visibility: visible !important;
}

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

.pxl-stat-value {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 40%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pxl-stat-subtitle {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    border: 1px solid;
    border-radius: 15px;
    text-align: center;
}

.pxl-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 16px;
}

.pxl-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pxl-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
    background-size: 200% 100%;
}

/* =====================================================
   CARD JOGADORES ONLINE - Design Premium
   ===================================================== */
.pxl-stat-card-players {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pxl-stat-card-players::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.15), transparent 40%);
    pointer-events: none;
}

.pxl-players-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 8px 0 16px;
    flex: 1;
}

.pxl-players-count-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pxl-players-count {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 40%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
    animation: countPulse 3s ease-in-out infinite;
}

@keyframes countPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.pxl-players-separator {
    font-size: 28px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 2px;
}

.pxl-players-max {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.pxl-players-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 6px;
}

.pxl-players-progress {
    margin-top: auto;
}

.pxl-players-progress-track {
    width: 100%;
    height: 8px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.pxl-players-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
    border-radius: 10px;
    position: relative;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 8px;
}

.pxl-players-progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6));
    border-radius: 0 10px 10px 0;
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.pxl-players-progress-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

.pxl-players-percent {
    font-size: 12px;
    font-weight: 700;
    color: #8b5cf6;
    padding: 2px 8px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 10px;
}

.pxl-players-recorde {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.pxl-players-recorde:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.1));
    border-color: rgba(251, 191, 36, 0.3);
}

.pxl-players-recorde i {
    color: #fbbf24;
    font-size: 14px;
}

.pxl-players-recorde strong {
    color: #fbbf24;
    font-weight: 700;
}

/* ===== DETAILS SECTION ===== */
.pxl-server-details {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.5) 0%, rgba(45, 27, 78, 0.3) 100%);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 32px;
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.pxl-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.pxl-detail-item {
    padding: 10px 22px 11px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.04) 100%);
    border-radius: 0px;
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, #6366f1, #8b5cf6) 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pxl-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pxl-detail-item:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
    transform: translateX(8px) scale(1.01);
    box-shadow: 0 10px 30px -15px rgba(99, 102, 241, 0.3);
}

.pxl-detail-item:hover::before {
    opacity: 1;
}

.pxl-detail-post-id {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-image: linear-gradient(180deg, #3b82f6, #6366f1) 1;
}

.pxl-detail-post-id .pxl-detail-value {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 24px;
    font-weight: 700;
    color: #93c5fd;
}

.pxl-detail-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.pxl-detail-label .pxl-label-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pxl-detail-label .pxl-label-left i {
    font-size: 13px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pxl-detail-value {
    font-size: 15px;
    color: #e2e8f0;
    word-break: break-all;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ===== TAGS SECTION ===== */
.pxl-server-tags {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.5) 0%, rgba(45, 27, 78, 0.3) 100%);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 32px;
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.pxl-server-video {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.5) 0%, rgba(45, 27, 78, 0.3) 100%);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 32px;
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.pxl-tags-title,
.pxl-video-title,
.pxl-description-title {
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.pxl-tags-title .pxl-label-left,
.pxl-video-title .pxl-label-left,
.pxl-description-title .pxl-label-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pxl-tags-title .pxl-label-left i,
.pxl-video-title .pxl-label-left i,
.pxl-description-title .pxl-label-left i {
    font-size: 14px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pxl-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pxl-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pxl-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.pxl-tag:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px -10px rgba(99, 102, 241, 0.4);
    color: #c7d2fe;
}

.pxl-tag:hover::before {
    width: 200px;
    height: 200px;
}

.fivem-last_update {
    text-align: center;
    padding: 14px;
    font-size: 12px;
    color: #ffffffb3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .pxl-server-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .pxl-server-header {
        padding: 0 32px 32px;
        gap: 28px;
    }

    .pxl-server-title {
        font-size: 38px;
    }

    .pxl-server-content {
        padding: 0 32px;
    }
    
    .pxl-server-avatar {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .pxl-hero-banner {
        height: 220px;
    }

    .pxl-server-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: -100px;
        padding: 0 20px 32px;
    }

    .pxl-server-avatar {
        width: 130px;
        height: 130px;
        border-width: 3px;
    }

    .pxl-server-title {
        font-size: 30px;
    }

    .pxl-server-subtitle {
        font-size: 15px;
    }

    .pxl-server-actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }

    .pxl-btn {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }

    .pxl-server-content {
        padding: 0 20px;
    }

    .pxl-server-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pxl-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pxl-detail-item,
    .pxl-server-description,
    .pxl-server-details,
    .pxl-server-tags,
    .pxl-server-video,
    .pxl-server-footer {
        padding: 24px;
    }
    
    .pxl-stat-card {
        padding: 22px;
    }
    
    .pxl-stat-value {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .pxl-server-title {
        font-size: 26px;
    }
    
    .pxl-server-avatar {
        width: 110px;
        height: 110px;
    }
    
    .pxl-hero-banner {
        height: 180px;
    }
}

#pxl-page-title-default {
    display: none !important;
}

#pxl-main {
    padding: 120px 0 120px !important;
}

.fivem-discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
}

.fivem-goto-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0000006b 0%, #818a9617 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.fivem-goto-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--fivem-surface);
    background: linear-gradient(135deg, var(--fivem-bg) 0%, var(--e-a-dark-bg) 100%);
}

.fivem-goto-btn svg {
    transition: transform 0.3s ease;
}

.fivem-goto-btn:hover svg {
    transform: translateX(3px);
}

.fivem-refresh-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
    color: #fff;
    font-size: 18px;
}

.fivem-refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.fivem-refresh-btn:disabled {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    cursor: not-allowed;
    box-shadow: none;
}

.fivem-refresh-btn .fa-sync-alt.spinning {
    animation: spin 1s linear infinite;
}

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

/* Toast de notificação */
.pxl-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 24px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    z-index: 99999;
    animation: slideIn 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.pxl-toast.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.pxl-toast.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.pxl-toast.info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.pxl-stat-recorde {
    font-size: 13px;
    color: #888;
    border: 1px solid;
    border-radius: 25px;
    text-align: center;
    position: relative;
    top: 15px;
}

.pxl-stat-recorde strong {
    background: linear-gradient(135deg, #865df5 0%, var(--wp-block-synced-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pxl-btn.pxl-btn-share {
    font-weight: 600;
    font-size: 15px;
    padding: 11px 15px;
    border-radius: 30px;
    background: rgb(245 245 245 / 11%);
    color: white;
    border: 1px solid rgb(224 224 224 / 16%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    position: absolute;
    top: -80%;
    right: 0;
    z-index: 10;
    margin-right: 20px;
}

@media (min-width: 1600px) {
    .pxl-btn.pxl-btn-share {
        width: 50px;
        height: 50px;
        padding: 12px 15px;
        font-size: 16px;
        top: -80%;
        right: 0;
    }
}

/* Desktop grande (1200px e acima) */
@media (min-width: 1200px) {
    .pxl-btn.pxl-btn-share {
        width: 50px;
        height: 50px;
        padding: 12px 15px;
        font-size: 16px;
        top: -80%;
        right: 0;
    }
}

/* Desktop e tablets grandes (768px a 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .pxl-btn.pxl-btn-share {
        width: 45px;
        height: 45px;
        padding: 11px 13px;
        font-size: 15px;
        top: -67%;
        right: 2px;
    }
}

/* Tablets (600px a 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .pxl-btn.pxl-btn-share {
        width: 40px;
        height: 40px;
        padding: 10px 12px;
        font-size: 14px;
        top: -75%;
        right: 5px;
    }
}

/* Tablets pequenos e smartphones grandes (480px a 599px) */
@media (min-width: 480px) and (max-width: 599px) {
    .pxl-btn.pxl-btn-share {
        width: 38px;
        height: 38px;
        padding: 9px 11px;
        font-size: 13px;
        top: -72%;
        right: 8px;
    }
}

/* Smartphones pequenos (até 479px) */
@media (max-width: 479px) {
    .pxl-btn.pxl-btn-share {
        width: 36px;
        height: 36px;
        padding: 8px 10px;
        font-size: 12px;
        top: -70%;
        right: 10px;
    }
}   
.pxl-btn-share[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 110%;
    right: 0;
    background: #222;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 9999;
    opacity: 0.95;
}  


    /* Toast Notifications */
    .pxl-toast {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 16px 24px;
        border-radius: 8px;
        font-size: 14px;
        z-index: 10000;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        animation: slideIn 0.3s ease forwards;
        max-width: 300px;
        word-wrap: break-word;
    }
    
    .pxl-toast.success {
        background: rgba(34, 197, 94, 0.95);
    }
    
    .pxl-toast.error {
        background: rgba(239, 68, 68, 0.95);
    }
    
    .pxl-toast.info {
        background: rgba(59, 130, 246, 0.95);
    }
    
    @keyframes slideIn {
        from {
            transform: translateX(400px);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    #pxl-refresh-icon.spinning {
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }
    
    @media (max-width: 600px) {
        .pxl-toast {
            bottom: 20px;
            right: 20px;
            left: 20px;
            max-width: none;
        }
    }

    /* Seção de Comentários */
    .pxl-server-comments {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 32px;
        margin-top: 24px;
        margin-bottom: 25px;
    }

    .pxl-comments-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    }

    .pxl-comments-wrapper {
        margin-top: 20px;
    }

    /* Contador de comentários */
    .pxl-comments-wrapper .pxl-comments-count {
        font-size: 18px;
        font-weight: 600;
        color: #8b5cf6;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    }

    /* Estilização do formulário de comentários */
    .pxl-comments-wrapper .comment-form {
        background: rgba(0, 0, 0, 0.2);
        padding: 24px;
        border-radius: 12px;
        margin-bottom: 32px;
    }

    .pxl-comments-wrapper .comment-form .comment-reply-title {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .pxl-comments-wrapper .comment-form .comment-reply-title i {
        color: #8b5cf6;
        margin-right: 8px;
    }

    .pxl-comments-wrapper .comment-form .comment-notes,
    .pxl-comments-wrapper .comment-form .logged-in-as {
        color: rgba(255, 255, 255, 0.7);
        font-size: 13px;
        margin-bottom: 16px;
    }

    .pxl-comments-wrapper .comment-form .required {
        color: #ef4444;
    }

    .pxl-comments-wrapper .comment-form label {
        color: #fff;
        font-weight: 500;
        margin-bottom: 8px;
        display: block;
    }

    .pxl-comments-wrapper .comment-form input[type="text"],
    .pxl-comments-wrapper .comment-form input[type="email"],
    .pxl-comments-wrapper .comment-form input[type="url"],
    .pxl-comments-wrapper .comment-form textarea {
        width: 100%;
        padding: 12px 16px;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: #fff;
        font-size: 14px;
        transition: all 0.3s ease;
        font-family: inherit;
    }

    .pxl-comments-wrapper .comment-form input:focus,
    .pxl-comments-wrapper .comment-form textarea:focus {
        outline: none;
        border-color: #8b5cf6;
        background: rgba(0, 0, 0, 0.4);
        box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    }

    .pxl-comments-wrapper .comment-form textarea {
        min-height: 120px;
        resize: vertical;
    }

    .pxl-comments-wrapper .comment-form .form-submit {
        margin-bottom: 0;
    }

    .pxl-comments-wrapper .comment-form .submit {
        background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
        color: #fff;
        padding: 12px 32px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 15px;
    }

    .pxl-comments-wrapper .comment-form .submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
    }

    .pxl-comments-wrapper .comment-form .submit i {
        margin-right: 8px;
    }

    /* Lista de comentários */
    .pxl-comments-wrapper .comment-list {
        list-style: none;
        padding: 0;
        margin: 0 0 32px 0;
    }

    .pxl-comments-wrapper .comment-list > li {
        margin-bottom: 0;
    }

    .pxl-comments-wrapper .comment-body {
        background: rgba(0, 0, 0, 0.2);
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 16px;
        border-left: 3px solid #8b5cf6;
        display: flex;
        gap: 16px;
    }

    .pxl-comments-wrapper .comment-avatar {
        flex-shrink: 0;
    }

    .pxl-comments-wrapper .comment-avatar img {
        border-radius: 50%;
        border: 2px solid rgba(139, 92, 246, 0.3);
    }

    .pxl-comments-wrapper .comment-content-wrapper {
        flex: 1;
        min-width: 0;
    }

    .pxl-comments-wrapper .comment-author-meta {
        margin-bottom: 12px;
    }

    .pxl-comments-wrapper .comment-author cite {
        font-weight: 600;
        color: #8b5cf6;
        font-style: normal;
    }

    .pxl-comments-wrapper .comment-author a {
        color: #8b5cf6;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .pxl-comments-wrapper .comment-author a:hover {
        color: #a78bfa;
    }

    .pxl-comments-wrapper .comment-meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        margin-top: 4px;
    }

    .pxl-comments-wrapper .comment-meta a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .pxl-comments-wrapper .comment-meta a:hover {
        color: rgba(255, 255, 255, 0.8);
    }

    .pxl-comments-wrapper .comment-meta i {
        margin-right: 4px;
    }

    .pxl-comments-wrapper .comment-awaiting-moderation {
        display: inline-block;
        background: rgba(251, 191, 36, 0.2);
        color: #fbbf24;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 13px;
        margin-bottom: 12px;
    }

    .pxl-comments-wrapper .comment-content {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .pxl-comments-wrapper .comment-content p {
        margin: 0 0 12px 0;
    }

    .pxl-comments-wrapper .comment-content p:last-child {
        margin-bottom: 0;
    }

    .pxl-comments-wrapper .reply {
        margin-top: 12px;
    }

    .pxl-comments-wrapper .comment-reply-link {
        color: #8b5cf6;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: color 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .pxl-comments-wrapper .comment-reply-link:hover {
        color: #a78bfa;
    }

    /* Comentários aninhados */
    .pxl-comments-wrapper .children {
        list-style: none;
        padding-left: 40px;
        margin-top: 16px;
    }

    /* Navegação de comentários */
    .pxl-comments-wrapper .comment-navigation {
        display: flex;
        justify-content: space-between;
        margin: 20px 0;
        padding: 16px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
    }

    .pxl-comments-wrapper .comment-navigation a {
        color: #8b5cf6;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .pxl-comments-wrapper .comment-navigation a:hover {
        color: #a78bfa;
    }

    .pxl-comments-wrapper .no-comments {
        color: rgba(255, 255, 255, 0.6);
        font-style: italic;
        text-align: center;
        padding: 24px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
    }

    @media (max-width: 768px) {
        .pxl-server-comments {
            padding: 20px;
        }

        .pxl-comments-wrapper .comment-body {
            flex-direction: column;
        }

        .pxl-comments-wrapper .children {
            padding-left: 20px;
        }

        .pxl-comments-wrapper .comment-navigation {
            flex-direction: column;
            gap: 12px;
        }
    }

    /* Estilo para o botão de editar no canto superior direito */
.comment-author-meta {
    position: relative;
}

.comment-edit-button {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.comment-edit-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: #8b5cf6;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.2);
}

.comment-edit-button a:hover {
    background: #7c3aed;
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
    transform: translateY(-1px);
}

.comment-edit-button a i {
    font-size: 12px;
}

/* Ajuste no layout para não sobrepor */
.comment-content-wrapper {
    position: relative;
}

.comment-author-meta {
    padding-right: 80px; /* Espaço para o botão de editar */
}
#tag-ads-footer {
    margin: 0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;
    padding: 1px 1px 1px 1px;
    position: relative;
    top: 25px;
}

.ads-banner-footer {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.ads-banner-footer > * {
    max-width: 100%;
    height: auto;
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
    .ads-banner-footer {
        padding: 15px;
    }
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .ads-banner-footer {
        padding: 10px;
        margin: 10px 0;
    }
}

/* Responsividade para telas pequenas */
@media (max-width: 480px) {
    .ads-banner-footer {
        padding: 8px;
    }
    
    .ads-banner-footer img,
    .ads-banner-footer iframe {
        max-width: 100% !important;
        height: auto !important;
    }
}

.bsaProContainer-5 {
    height: 310px !important;
    overflow: hidden !important;
    max-height: 310px !important;
}

.bsaProContainer-2 {
  max-height: 160px !important;
  overflow: hidden !important;
  height: 160px !important;
}

.bsaProContainer-2 .bsaProItemInner__img {
  height: 150px !important;
    max-height: 150px !important;
}

/* Ad Space 5 - altura 300px */
.bsaProContainer-5 .bsaProItemInner__img {
  height: 300px !important;
  max-height: 300px !important;
}

.bsaProContainer-5 .bsaProItem {
  max-height: 300px !important;
}

#bsa-block-125--125 .bsaProItemInner__img:hover {
    transform: scale(1.05);
    filter: brightness(0.9) contrast(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.bsaProDiscount {
    background-color: #df5050 !important;
    color: #FFFFFF !important;
    position: absolute;
    top: 200px;
}

.bsaProOrderingForm {
    background-color: #292a2d !important;
    color: #eaeaea !important;
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.6) 0%, rgba(45, 27, 78, 0.4) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.pxl-item--archive.pxl-item--standard {
    margin-bottom: 51px;
    background: #0000005e;
    padding: 10px;
    border-radius: 7px;
}

.uwp-account-form {
    background: #141720;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

/* OCULTAR BOTÃO DUPLICADO "SEND" */
.uwp-account-form button.pxl-wobble {
    display: none !important;
}

.uwp-account-form input[type="submit"],
.uwp-account-form .btn-primary {
    background: #5865f2;
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}


/* Menu Lateral */
.nav.flex-lg-column .nav-item {
    width: 100%;
    margin: 0.25rem 0 !important;
}

.nav.flex-lg-column .nav-link {
    color: #b9bbbe !important;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.nav.flex-lg-column .nav-link:hover {
    background: #404040;
    color: #ffffff !important;
    transform: translateX(5px);
}

.nav.flex-lg-column .nav-link.active {
    background: #5865f2 !important;
    color: #ffffff !important;
}

.nav.flex-lg-column .nav-link i {
    width: 24px;
    color: inherit;
}

#fluent_support_client_app * textarea {
    color: black;
    border: 1px solid #0000003d;
}

.bsui input, .bsui button, .bsui select, .bsui optgroup, .bsui textarea {
    color: black !important;
}

.fs_client_portal .fs_back_btn {
    color: var(--fs-white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -.6%;
    line-height: 20px;
    margin-left: 6px;
}

.fs_client_portal .fs_submit_button_container .fs_create_ticket_button {
    color: var(--fs-white) !important;
}

.fs_client_portal .fs_back_btn {
    color: var(--fs-white) !important;
}

.fs_client_portal .fs_customer_response_actions .fs_reply_btn {
    color: var(--fs-white) !important;
}

.fs_client_portal .fs_ticket_wrapper .fs_tickets_container .fs_tickets_header .fs_create_ticket_btn {
    color: var(--fs-white) !important;
}

.fivem-servers-container {
    --fivem-bg: #1a1d23;
    --fivem-surface: #23262b;
    --fivem-surface-2: #2a2d33;
    --fivem-border: #3a3d43;
    --fivem-text: #ffffff;
    --fivem-muted: #aaa;
    --fivem-muted-2: #888;
    --fivem-accent: #7c5cff;
    --fivem-accent-2: #a078ff;

    background: linear-gradient(180deg, var(--fivem-bg), #171a1f);
    color: var(--fivem-text);
    border-radius: 12px;
    padding: 18px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    border: 1px solid rgba(58, 61, 67, 0.65);
}

.fivem-header {
    margin-bottom: 25px;
}

.fivem-header h2 {
    margin: 0 0 14px 0;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.fivem-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.fivem-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
}

.fivem-search-box {
    flex: 1;
    min-width: 200px;
}

.fivem-search-box input {
    width: 100%;
    padding: 10px 15px;
    background: var(--fivem-surface-2);
    border: 1px solid var(--fivem-border);
    color: var(--fivem-text);
    border-radius: 4px;
    font-size: 14px;
    height: 41px;
    box-sizing: border-box;
}

.fivem-search-box input:focus {
    outline: none;
    border-color: var(--fivem-accent);
    box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.14);
}

.fivem-search-box input::placeholder {
    color: var(--fivem-muted-2);
}

.fivem-filter-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.fivem-filter-btn {
    padding: 10.3px 14px;
    background: var(--fivem-surface-2);
    border: 1px solid var(--fivem-border);
    color: #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Botão de filtro mobile - escondido por padrão */
.fivem-mobile-filter-toggle {
    display: none;
    width: 100%;
    padding: 12px 16px;
    background: var(--fivem-accent);
    border: 1px solid var(--fivem-accent);
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.fivem-mobile-filter-toggle:hover {
    background: var(--fivem-accent-2);
}

.fivem-mobile-filter-toggle .filter-icon {
    font-size: 16px;
}

.fivem-mobile-filter-toggle .filter-arrow {
    transition: transform 0.3s;
}

.fivem-mobile-filter-toggle.active .filter-arrow {
    transform: rotate(180deg);
}

.fivem-filter-btn:hover {
    border-color: var(--fivem-accent);
    color: #fff;
}

.fivem-filter-btn.active {
    background: var(--fivem-accent);
    border-color: var(--fivem-accent);
    color: #fff;
}

.fivem-sort-wrapper {
    position: relative;
    display: inline-block;
}

.fivem-sort-btn {
    padding: 11px 14px;
    background: var(--fivem-surface-2);
    border: 1px solid var(--fivem-border);
    color: #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fivem-sort-btn:hover {
    border-color: var(--fivem-accent);
    color: #fff;
}

.fivem-sort-btn.active {
    background: var(--fivem-accent);
    border-color: var(--fivem-accent);
    color: #fff;
}

.fivem-sort-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--fivem-surface);
    border: 1px solid var(--fivem-accent);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 100;
    pointer-events: none;
}

.fivem-sort-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--fivem-accent);
}

.fivem-sort-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.fivem-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    cursor: pointer;
    padding: 8px 12px;
    background: var(--fivem-surface-2);
    border: 1px solid var(--fivem-border);
    border-radius: 4px;
    transition: all 0.2s;
}

.fivem-checkbox:hover {
    border-color: var(--fivem-accent);
}

.fivem-checkbox input {
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--fivem-accent);
}

.fivem-servers-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fivem-server-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--fivem-surface);
    border-radius: 12px;
    transition: all 0.2s;
    align-items: flex-start;
}

.fivem-server-item:hover {
    background: #262a30;
    border-color: var(--fivem-accent);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.fivem-server-logo {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: var(--fivem-bg);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 1px solid rgba(58, 61, 67, 0.8);
}

.fivem-server-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fivem-server-info {
    flex: 1;
    min-width: 0;
}

.fivem-server-name {
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fivem-server-name a.fivem-server-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fivem-server-name a.fivem-server-link:hover {
    text-underline-offset: 3px;
}

.fivem-server-desc {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: var(--fivem-muted);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fivem-server-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.fivem-tag {
    display: inline-block;
    padding: 3px 8px;
    background: #f1f2f30a;
    color: #fff;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.fivem-tag-id {
    background: #f1f2f30a;
    color: #93c5fd;
    font-weight: 600;
    font-family: 'Consolas', 'Monaco', monospace;
    border: 1px solid rgb(255 255 255 / 0%);
    padding: 2px 5px 0px 5px;
}

.fivem-server-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
    margin-left: 8px;
    flex-wrap: wrap;
}

.fivem-server-max-players {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    min-width: 100px;
}

.fivem-players {
    font-size: 16px;
    font-weight: 700;
    color: var(--fivem-accent);
    line-height: 1.2;
}

.fivem-players-label {
    font-size: 10px;
    color: var(--fivem-muted-2);
    text-transform: uppercase;
    margin-top: 2px;
    line-height: 1;
}
                
.fivem-progress {
    width: 100px;
    height: 6px;
    background: var(--fivem-bg);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}

.fivem-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--fivem-accent), var(--fivem-accent-2));
    transition: width 0.3s;
}

.fivem-connect-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border: none;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    min-width: 110px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 6px;
    flex-shrink: 0;
}

.fivem-connect-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transition: left 0.5s;
}

.fivem-connect-btn:hover::before {
left: 100%;
}

.fivem-connect-btn:hover:not(:disabled) {
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(124, 58, 237, 0.6);
background: linear-gradient(135deg, #a855f7 0%, #d946ef 100%);
}

.fivem-connect-btn:active:not(:disabled) {
transform: translateY(0);
box-shadow: 0 2px 10px rgba(124, 58, 237, 0.4);
}

.fivem-connect-btn:disabled {
opacity: 0.6;
cursor: not-allowed;
background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
box-shadow: 0 4px 15px rgba(107, 114, 128, 0.4);
}

.fivem-connect-btn::after {
content: '▶';
display: inline-block;
font-size: 12px;
}

.fivem-discord-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.fivem-discord-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transition: left 0.5s;
}

.fivem-discord-btn:hover::before {
left: 100%;
}

.fivem-discord-btn:hover {
transform: translateY(-2px) scale(1.05);
box-shadow: 0 6px 25px rgba(88, 101, 242, 0.6);
background: linear-gradient(135deg, var(--e-a-btn-bg-active) 0%, var(--fivem-bg) 100%);
}

.fivem-discord-btn:hover svg {
transform: scale(1.1);
}

.fivem-discord-btn:active {
transform: translateY(0) scale(1);
box-shadow: 0 2px 10px rgba(88, 101, 242, 0.4);
}

/* Se quiser uma versão com texto */
.fivem-discord-btn-with-text {
width: auto;
padding: 12px 20px;
gap: 8px;
font-size: 14px;
font-weight: 700;
color: #fff;
text-transform: uppercase;
letter-spacing: 1px;
}

.fivem-discord-btn-with-text svg {
    width: 20px;
    height: 20px;
}

/* ===== BOTÃO DE REVIEW DEDICADO ===== */
.fivem-review-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    background: var(--bs-yellow);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    flex-shrink: 0;
}

.fivem-review-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.fivem-review-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.fivem-review-btn:hover::before {
    left: 100%;
}

.fivem-review-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px var(--bs-gray-900);
    background: linear-gradient(135deg, var(--bs-black) 0%, var(--bs-black) 100%);
}

.fivem-review-btn:hover svg {
    transform: scale(1.1);
}

.fivem-review-btn:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.4);
}

/* ===== BOTÕES DE REDES SOCIAIS PLAYFIVEM ===== */
.fivem-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    flex-shrink: 0;
}

.fivem-social-btn svg {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.fivem-social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.fivem-social-btn:hover::before {
    left: 100%;
}

.fivem-social-btn:hover {
    transform: translateY(-2px) scale(1.05);
}

.fivem-social-btn:hover svg {
    transform: scale(1.1);
}

.fivem-social-btn:active {
    transform: translateY(0) scale(1);
}

/* Instagram */
.fivem-instagram-btn {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.4);
}

.fivem-instagram-btn:hover {
    box-shadow: 0 6px 25px rgba(131, 58, 180, 0.6);
    background: linear-gradient(135deg, #9B5DC8 0%, #FD3838 50%, #FCBA5C 100%);
}

/* YouTube */
.fivem-youtube-btn {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.fivem-youtube-btn:hover {
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
    background: linear-gradient(135deg, #FF3333 0%, #E60000 100%);
}

/* Discord alternativo (PlayFiveM) */
.fivem-discord-alt-btn {
    background: linear-gradient(135deg, #7289DA 0%, #5B6EAE 100%);
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.4);
}

.fivem-discord-alt-btn:hover {
    box-shadow: 0 6px 25px rgba(114, 137, 218, 0.6);
    background: linear-gradient(135deg, #8A9DE8 0%, #6A7FC2 100%);
}

/* Twitter / X */
.fivem-twitter-btn {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.fivem-twitter-btn:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

/* Link genérico */
.fivem-link-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.fivem-link-btn:hover {
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.6);
    background: linear-gradient(135deg, #66BB6A 0%, #43A047 100%);
}

.fivem-goto-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(124, 58, 237, 0.5);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}

.fivem-goto-btn:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: #7c3aed;
    transform: translateX(3px);
}

.fivem-goto-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.fivem-auto-update {
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    position: relative;
}

.fivem-info-update {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(124, 58, 237, 0.3);
}

.fivem-alert {
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    font-size: 14px;
}

.fivem-alert-error {
    background: #5c2e2e;
    border: 1px solid #8a4444;
    color: #ff9999;
}

.fivem-alert-info {
    background: #2e4a5c;
    border: 1px solid #448a99;
    color: #99d9ff;
}

.fivem-servers-wrapper {
    max-height: 800px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
    overscroll-behavior: auto;
}

.fivem-load-more-container {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.fivem-loading-spinner {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--fivem-muted);
    font-size: 14px;
}

.fivem-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--fivem-border);
    border-top-color: var(--fivem-accent);
    border-radius: 50%;
    animation: fivem-spin 0.8s linear infinite;
}

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

.fivem-no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--fivem-muted);
    font-size: 15px;
}

.fivem-search-loading {
    position: relative;
}

.fivem-search-loading::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--fivem-border);
    border-top-color: var(--fivem-accent);
    border-radius: 50%;
    animation: fivem-spin 0.8s linear infinite;
}

.fivem-servers-wrapper::-webkit-scrollbar {
    width: 8px;
}

.fivem-servers-wrapper::-webkit-scrollbar-track {
    background: #1a1d23;
}

.fivem-servers-wrapper::-webkit-scrollbar-thumb {
    background: #3a3d43;
    border-radius: 4px;
}

.fivem-servers-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--fivem-accent);
}

.container_principal {
    width: 100%;
}

.fivem-server-banner img {
    border-radius: 12px !important;
    max-height: 84px;
    width: 100%;
    object-fit: cover;
    border: 1px solid rgba(58, 61, 67, 0.65);
}

.fivem-server-content {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--fivem-surface-2);
    border: 1px solid rgba(58, 61, 67, 0.75);
    border-radius: 12px;
    transition: all 0.2s;
    align-items: center;
    margin-top: 10px;
}

.fivem-title-row h2 {
    margin: 0;
}

.fivem-last-update {
    float: right;
    font-size: 12px;
    color: #ffffff7a;
}                

.fivem-auto-update {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fivem-auto-update-btn {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid var(--e-global-color-secondary);
    background: var(--e-a-btn-bg-danger-hover);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    cursor: help;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.fivem-auto-update-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 106, 92, 0.18);
}

.fivem-auto-update-tooltip {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    max-width: 340px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--fivem-surface);
    border: 1px solid var(--fivem-border);
    color: var(--fivem-text);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    z-index: 300;
    display: none;
    font-size: 12px;
    line-height: 1.35;
}

.fivem-auto-update-tooltip strong {
    color: #fff;
}

.fivem-auto-update:hover .fivem-auto-update-tooltip,
.fivem-auto-update:focus-within .fivem-auto-update-tooltip {
    display: block;
}

@media (max-width: 768px) {
    .fivem-controls {
        flex-direction: column;
    }
    
    .fivem-search-box {
        min-width: 100%;
    }
    
    .fivem-server-item {
        flex-direction: column;
    }
    
    .fivem-server-stats {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        margin-left: 0;
    }

    .fivem-connect-btn {
        flex: 1;
        min-width: 0;
    }
}
.fivem-views {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3em;
    font-weight: bold;
    background: linear-gradient(135deg, rgba(100, 94, 239, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 12px;
    padding: 1px 21px;
    box-shadow: 0 8px 32px rgba(100, 94, 239, 0.2),
                                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 94, 239, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
    float: right;
}

.fivem-views::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s;
}

.fivem-views:hover {
    background: linear-gradient(135deg, rgba(100, 94, 239, 0.25), rgba(139, 92, 246, 0.25));
    box-shadow: 0 12px 48px rgba(100, 94, 239, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}
.fivem-views:hover::before {
    left: 100%;
}

.eye-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}        
.counter-display {
    display: flex;
    flex-direction: row;
    gap: 2px;
    min-width: 80px;
    text-align: right;
    background: linear-gradient(135deg, #645eef, #8b5ce6);
    background-clip: text;
    font-variant-numeric: tabular-nums;
    position: relative;
}
.digit {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1.2em;
    height: 1.2em;
    overflow: hidden;
    position: relative;
}
.digit-scroller {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.digit-value {
    height: 1.2em;
    line-height: 1.2em;
    text-align: center;
}
.counter-display.incrementing {
    animation: bump 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes bump {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}   

.trp-shortcode-switcher {
    padding: 1px 0 !important
}

.trp-shortcode-overlay {
    top: 5px !important
}

/* ===== KK STAR RATINGS - CUSTOMIZAÇÃO ===== */

/* Container Principal - Estilo Reclame Aqui */
.pxl-rating-box {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-left: 10px;
}

.pxl-rating-box:hover {
    background: rgba(15, 15, 35, 0.95);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Badge da Nota */
.pxl-rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    padding: 6px 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    position: relative;
    overflow: hidden;
}

.pxl-rating-score::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmerRating 3s infinite;
}

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

.pxl-rating-number {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.pxl-rating-label {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Cores por classificação */
.pxl-rating-box.excellent .pxl-rating-score {
    background: linear-gradient(135deg, #10b981, #059669);
}

.pxl-rating-box.great .pxl-rating-score {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.pxl-rating-box.good .pxl-rating-score {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}

.pxl-rating-box.regular .pxl-rating-score {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.pxl-rating-box.bad .pxl-rating-score {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.pxl-rating-box.no-rating .pxl-rating-score {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

/* Seção de detalhes (estrelas + contagem) */
.pxl-rating-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Estilo do kk-star-ratings dentro do box */
.pxl-rating-box .kk-star-ratings.kksr-template {
    display: flex !important;
    align-items: center !important;
    gap: 6px;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0 !important;
    backdrop-filter: none;
    margin: 0 !important;
}

.pxl-rating-box .kk-star-ratings.kksr-template:hover {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

.pxl-rating-box .kk-star-ratings .kksr-stars {
    position: relative;
    display: flex;
    align-items: center;
}

.pxl-rating-box .kk-star-ratings .kksr-stars-inactive {
    display: flex;
    align-items: center;
}

.pxl-rating-box .kk-star-ratings .kksr-stars-active {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.pxl-rating-box .kk-star-ratings .kksr-star {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pxl-rating-box .kk-star-ratings .kksr-star .kksr-icon {
    width: 18px !important;
    height: 18px !important;
}

/* Estrelas inativas - cinza suave */
.pxl-rating-box .kk-star-ratings .kksr-stars-inactive .kksr-icon {
    background-color: rgba(255, 255, 255, 0.15) !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") !important;
    -webkit-mask-size: contain !important;
    mask-size: contain !important;
    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
}

/* Estrelas ativas - amarelo dourado */
.pxl-rating-box .kk-star-ratings .kksr-stars-active .kksr-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") !important;
    -webkit-mask-size: contain !important;
    mask-size: contain !important;
    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
}

/* Legenda - texto de votos */
.pxl-rating-box .kk-star-ratings .kksr-legend {
    font-size: 11px !important;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5) !important;
    white-space: nowrap;
    margin: 0 !important;
    padding: 0 !important;
    display: none !important; /* Oculta pois já temos a info no badge */
}

/* Espaçamento entre estrelas */
.pxl-rating-box .kk-star-ratings .kksr-star {
    padding-right: 2px !important;
}

.pxl-rating-box .kk-star-ratings .kksr-star:last-child {
    padding-right: 0 !important;
}

/* Remove elementos desnecessários do plugin */
.pxl-rating-box .kk-star-ratings .kksr-muted {
    display: none !important;
}

/* Contador de votos customizado */
.pxl-rating-box .pxl-rating-details::after {
    content: attr(data-votes);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsivo */
@media (max-width: 768px) {
    .pxl-rating-box {
        padding: 8px 12px;
        gap: 8px;
        margin-left: 6px;
    }
    
    .pxl-rating-score {
        min-width: 40px;
        padding: 4px 8px;
    }
    
    .pxl-rating-number {
        font-size: 16px;
    }
    
    .pxl-rating-label {
        font-size: 8px;
    }
    
    .pxl-rating-box .kk-star-ratings .kksr-star .kksr-icon {
        width: 14px !important;
        height: 14px !important;
    }
}

@media (max-width: 480px) {
    .pxl-rating-box {
        padding: 6px 10px;
    }
    
    .pxl-rating-score {
        min-width: 36px;
        padding: 3px 6px;
    }
    
    .pxl-rating-number {
        font-size: 14px;
    }
    
    .pxl-rating-label {
        font-size: 7px;
    }
    
    .pxl-rating-box .kk-star-ratings .kksr-star .kksr-icon {
        width: 12px !important;
        height: 12px !important;
    }
}

/* ===== CARD DE REPUTAÇÃO - ESTILO RECLAME AQUI ===== */
.pxl-stat-card-reputation {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(25, 25, 50, 0.9)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.pxl-stat-card-reputation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    transition: all 0.3s ease;
}

.pxl-stat-card-reputation.excellent::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.pxl-stat-card-reputation.great::before {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.pxl-stat-card-reputation.good::before {
    background: linear-gradient(90deg, #eab308, #ca8a04);
}

.pxl-stat-card-reputation.regular::before {
    background: linear-gradient(90deg, #f97316, #ea580c);
}

.pxl-stat-card-reputation.bad::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.pxl-stat-card-reputation.no-rating::before {
    background: linear-gradient(90deg, #6b7280, #4b5563);
}

/* Conteúdo principal da reputação */
.pxl-reputation-content {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 12px 0;
}

/* Badge circular com a nota */
.pxl-reputation-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    flex-shrink: 0;
    position: relative;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(16, 185, 129, 0.6); }
}

.pxl-reputation-badge.excellent {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.pxl-reputation-badge.great {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.pxl-reputation-badge.good {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
}

.pxl-reputation-badge.regular {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.pxl-reputation-badge.bad {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.pxl-reputation-badge.no-rating {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.4);
    animation: none;
}

.pxl-reputation-score {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Info da reputação */
.pxl-reputation-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.pxl-reputation-label {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pxl-stat-card-reputation.excellent .pxl-reputation-label {
    color: #10b981;
}

.pxl-stat-card-reputation.great .pxl-reputation-label {
    color: #22c55e;
}

.pxl-stat-card-reputation.good .pxl-reputation-label {
    color: #eab308;
}

.pxl-stat-card-reputation.regular .pxl-reputation-label {
    color: #f97316;
}

.pxl-stat-card-reputation.bad .pxl-reputation-label {
    color: #ef4444;
}

.pxl-stat-card-reputation.no-rating .pxl-reputation-label {
    color: #9ca3af;
}

/* Estrelas dentro do card */
.pxl-reputation-stars {
    display: flex;
    align-items: center;
}

.pxl-reputation-stars .kk-star-ratings.kksr-template {
    display: flex !important;
    align-items: center !important;
    gap: 4px;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pxl-reputation-stars .kk-star-ratings .kksr-star .kksr-icon {
    width: 20px !important;
    height: 20px !important;
}

.pxl-reputation-stars .kk-star-ratings .kksr-stars-inactive .kksr-icon {
    background-color: rgba(255, 255, 255, 0.15) !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") !important;
    -webkit-mask-size: contain !important;
    mask-size: contain !important;
}

.pxl-reputation-stars .kk-star-ratings .kksr-stars-active .kksr-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") !important;
    -webkit-mask-size: contain !important;
    mask-size: contain !important;
}

.pxl-reputation-stars .kk-star-ratings .kksr-legend {
    display: none !important;
}

.pxl-reputation-stars .kk-star-ratings .kksr-star {
    padding-right: 2px !important;
}

/* Descrição da reputação */
.pxl-reputation-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.pxl-stat-card-reputation.excellent .pxl-reputation-description {
    border-left-color: #10b981;
}

.pxl-stat-card-reputation.great .pxl-reputation-description {
    border-left-color: #22c55e;
}

.pxl-stat-card-reputation.good .pxl-reputation-description {
    border-left-color: #eab308;
}

.pxl-stat-card-reputation.regular .pxl-reputation-description {
    border-left-color: #f97316;
}

.pxl-stat-card-reputation.bad .pxl-reputation-description {
    border-left-color: #ef4444;
}

.pxl-reputation-description strong {
    color: #fff;
}

/* =====================================================
   CARD MODO DE JOGO - Design Moderno
   ===================================================== */
.pxl-stat-card-gamemode {
    position: relative;
    overflow: hidden;
}

.pxl-stat-card-gamemode::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--gamemode-color, #8b5cf6) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.pxl-stat-card-gamemode:hover::before {
    opacity: 0.15;
}

.pxl-gamemode-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    flex: 1;
    position: relative;
    top: 40px;
}

.pxl-gamemode-icon-wrapper {
    width: 80px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gamemode-color, #8b5cf6), color-mix(in srgb, var(--gamemode-color, #8b5cf6) 70%, #000));
    box-shadow: 0 4px 20px color-mix(in srgb, var(--gamemode-color, #8b5cf6) 40%, transparent);
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pxl-stat-card-gamemode:hover .pxl-gamemode-icon-wrapper {
    transform: scale(1.08);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--gamemode-color, #8b5cf6) 50%, transparent);
}

.pxl-gamemode-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.pxl-gamemode-icon-wrapper i {
    font-size: 24px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.pxl-gamemode-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.pxl-gamemode-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.2;
}

.pxl-gamemode-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* =====================================================
   CARD LOCALIZAÇÃO - Design Moderno
   ===================================================== */


.pxl-location-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    flex: 1;
    position: relative;
    top: 40px;
}

.pxl-location-flag {
    font-size: 57px;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    margin-bottom: 0px;
    width: 100px;
    height: 59px;
    display: block;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pxl-stat-card-location:hover .pxl-location-flag {
    transform: scale(1.1);
}

.pxl-location-flag2 {
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .3));
    margin-bottom: 0;
    width: 16px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pxl-stat-card-location:hover .pxl-location-flag2 {
    transform: scale(1.1);
}

.pxl-location-globe {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.pxl-location-globe::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent 30%);
    animation: globeSpin 4s linear infinite;
}

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

.pxl-location-globe i {
    font-size: 28px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.pxl-location-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.pxl-location-country {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.pxl-location-region {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Responsivo para os novos cards */
@media (max-width: 768px) {
    .pxl-gamemode-icon-wrapper {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .pxl-gamemode-icon-wrapper i {
        font-size: 22px;
    }
    
    .pxl-gamemode-name {
        font-size: 18px;
    }
    
    .pxl-location-flag {
        font-size: 46px;
    }

    .pxl-location-flag2 {
        font-size: 46px;
    }    
    
    .pxl-location-country {
        font-size: 18px;
    }
    
    .pxl-location-globe {
        width: 52px;
        height: 52px;
    }
    
    .pxl-location-globe i {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .pxl-gamemode-display,
    .pxl-location-display {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .pxl-gamemode-info,
    .pxl-location-info {
        align-items: center;
    }
    
    .pxl-gamemode-name {
        white-space: normal;
    }
    
    .pxl-location-ping-indicator {
        position: static;
        margin-top: 8px;
    }
}

/* Responsivo para o card de reputação */
@media (max-width: 768px) {
    .pxl-reputation-content {
        gap: 12px;
    }
    
    .pxl-reputation-badge {
        width: 56px;
        height: 56px;
    }
    
    .pxl-reputation-score {
        font-size: 20px;
    }
    
    .pxl-reputation-label {
        font-size: 16px;
    }
    
    .pxl-reputation-stars .kk-star-ratings .kksr-star .kksr-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    .pxl-reputation-description {
        font-size: 12px;
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .pxl-reputation-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .pxl-reputation-info {
        align-items: center;
    }
    
    .pxl-reputation-badge {
        width: 50px;
        height: 50px;
    }
    
    .pxl-reputation-score {
        font-size: 18px;
    }
    
    .pxl-reputation-label {
        font-size: 14px;
    }
    
    .pxl-reputation-description {
        text-align: left;
    }
}
.pxl-rating-cta {
    display: inline;
    font-size: 10px;
    text-align: center;
}

#bsa-block-1300--300 .bsaProItemInner__img {
    width: 100%;
    height: 250px;
}

/* ===== RESPONSIVIDADE COMPLETA PARA FIVEM SERVERS ===== */
@media (max-width: 767px) {
    .fivem-servers-container {
        padding: 10px;
        border-radius: 10px;
        margin: 10px 0;
    }
    
    .fivem-header {
        margin-bottom: 15px;
    }
    
    .fivem-header h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .fivem-title-row {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px;
    }
    
    .fivem-auto-update {
        position: static !important;
        margin-left: 0 !important;
        margin-top: 8px;
    }
    
    .fivem-auto-update-tooltip {
        left: 0;
        right: auto;
        min-width: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
    }
    
    .fivem-views {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        float: none !important;
        margin-bottom: 10px;
        display: inline-flex;
    }
    
    .fivem-controls {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .fivem-search-box {
        width: 100%;
        min-width: 100%;
    }
    
    .fivem-search-box input {
        padding: 12px 14px;
        font-size: 14px;
        height: 44px;
    }
    
    /* Mostra o botão de filtro no mobile */
    .fivem-mobile-filter-toggle {
        display: flex;
    }
    
    /* Esconde os filtros por padrão no mobile */
    .fivem-filter-group {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
        margin-top: 0;
    }
    
    /* Quando os filtros estão abertos */
    .fivem-filter-group.active {
        max-height: 800px;
        opacity: 1;
        margin-top: 12px;
    }
    
    /* Todos os filtros em full width no mobile */
    .fivem-filter-btn {
        width: 100%;
        padding: 12px 14px;
        font-size: 13px;
        text-align: left;
        white-space: normal;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    /* Dropdowns de filtros no mobile */
    .fivem-tag-dropdown-wrapper,
    .fivem-locale-dropdown-wrapper,
    .fivem-rating-dropdown-wrapper {
        width: 100%;
    }
    
    .fivem-tag-dropdown-btn,
    .fivem-locale-dropdown-btn,
    .fivem-rating-dropdown-btn {
        width: 100%;
        font-size: 13px;
        padding: 12px 14px;
        text-align: left;
    }
    
    .fivem-sort-wrapper {
        width: 100%;
    }
    
    .fivem-sort-btn {
        width: 100%;
        justify-content: space-between;
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .fivem-sort-tooltip {
        left: 0;
        right: 0;
        transform: translateX(0);
    }
    
    .fivem-sort-tooltip::after {
        left: 20px;
        transform: translateX(0);
    }
    
    .fivem-checkbox {
        font-size: 13px;
        padding: 10px;
    }
    
    .fivem-servers-list {
        gap: 10px;
    }
    
    .fivem-server-item {
        flex-direction: column;
        padding: 12px;
        gap: 12px;
        align-items: stretch;
    }
    
    .fivem-server-logo {
        width: 100%;
        height: 160px;
        border-radius: 10px;
        margin: 0;
    }
    
    .fivem-server-info {
        width: 100%;
    }
    
    .fivem-server-name {
        font-size: 16px;
        margin-bottom: 8px;
        line-clamp: 2;
    }
    
    .fivem-server-name a.fivem-server-link {
        display: block;
    }
    
    .fivem-server-desc {
        font-size: 13px;
        line-clamp: 2;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    
    .fivem-server-tags {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .fivem-tag {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .fivem-tag-id {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    .fivem-server-stats {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
        display: flex;
        margin-left: 0;
    }
    
    .fivem-server-max-players {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        min-width: auto;
        order: 1;
    }
    
    .fivem-players {
        font-size: 16px;
        line-height: 1.2;
    }
    
    .fivem-players-label {
        font-size: 10px;
        margin-top: 2px;
    }
    
    .fivem-progress {
        width: 100%;
        height: 6px;
        margin-top: 6px;
    }
    
    /* Botões em linha no mobile */
    .fivem-connect-btn {
        flex: 1;
        min-width: 120px;
        padding: 11px 16px;
        font-size: 12px;
        letter-spacing: 0.5px;
        height: 42px;
        order: 2;
    }
    
    .fivem-discord-btn {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        order: 3;
    }
    
    .fivem-goto-btn {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        order: 4;
    }
    
    .fivem-server-banner img {
        max-height: 140px;
        border-radius: 10px !important;
    }
    
    .fivem-server-content {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }
    
    .fivem-servers-wrapper {
        max-height: none;
        padding-right: 0;
    }
    
    .fivem-alert {
        padding: 12px;
        font-size: 13px;
        margin: 15px 0;
    }
    
    .fivem-load-more-container {
        padding: 15px 0;
    }
    
    .fivem-no-results {
        padding: 30px 15px;
        font-size: 14px;
    }
}

/* Smartphones pequenos */
@media (max-width: 480px) {
    .fivem-servers-container {
        padding: 8px;
        border-radius: 8px;
    }
    
    .fivem-header h2 {
        font-size: 18px;
    }
    
    .fivem-filter-group {
        grid-template-columns: 1fr;
    }
    
    .fivem-server-logo {
        height: 125px;
    }
    
    .fivem-server-name {
        font-size: 15px;
    }
    
    .fivem-server-desc {
        font-size: 12px;
    }
    
    .fivem-tag {
        font-size: 9px;
        padding: 2px 6px;
    }
    .fivem-checkbox-group {
        width: 100%;
    } 
    .fivem-server-banner img {
        height: 39px;
    }
    .fivem-title-row h2 {
        font-size: 16px;
        position: absolute;
        left: 212px;
        top: 28px;
    }
    .fivem-auto-update {
        position: absolute !important;
        left: 174px;
        top: 16px;
    }   
    .fivem-auto-update-tooltip {
        left: -186px;
    }    
    .bsaProContainer-5 {
        height: 200px !important;
        position: relative;
        margin-top: -180px;
    }    
    .fivem-views {
        font-size: 1.0em;
    }     
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .fivem-servers-container {
        padding: 16px;
    }
    
    .fivem-header h2 {
        font-size: 26px;
    }
    
    .fivem-controls {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .fivem-search-box {
        flex: 1;
        min-width: 280px;
    }
    
    .fivem-server-item {
        flex-direction: row;
        padding: 16px;
    }
    
    .fivem-server-logo {
        width: 90px;
        height: 90px;
        margin-right: 16px;
    }
    
    .fivem-server-stats {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
    }
    
    .fivem-connect-btn {
        min-width: 130px;
        width: auto;
        padding: 10px 24px;
    }
    
    .fivem-discord-btn {
        width: 44px;
        height: 44px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .fivem-servers-container {
        padding: 25px;
    }
    
    .fivem-header h2 {
        font-size: 30px;
    }
    
    .fivem-server-item {
        padding: 16px;
    }
    
    .fivem-server-logo {
        width: 100px;
        height: 100px;
    }
    
    .fivem-servers-list {
        gap: 10px;
    }
}

.fivem-checkbox-group {
    display: flex;
    gap: 8px;
}

.uwp_widgets.uwp_widget_author_box {
    display: none;
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pxl-user .pxl-user-form span{
    display: none !important;
}