* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis de tema */
:root {
    /* Tema escuro (padrão) */
    --bg-primary: #141414;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #222222;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-color: #33333370;
    --accent-primary: #7B47FF;
    --accent-secondary: #8B5FFF;
    --card-bg: rgba(255, 255, 255, 0.05);
    --sidebar-bg: rgba(255, 255, 255, 0.02);
    --particle-color: #7B47FF;
    --scrollbar-track: rgba(255, 255, 255, 0.02);
    --search-bg: rgba(255, 255, 255, 0.1);
    --header-shadow: none;
    --card-shadow: none;
    --card-border: rgba(255, 255, 255, 0.1);
}

/* ========================================
   🌞 TEMA CLARO COMPLETO - ORGANIZADO
   ======================================== */

/* 🎨 VARIÁVEIS DO TEMA CLARO */
[data-theme="light"] {
    --bg-primary: #f8f9fb;
    --bg-secondary: #ffffff;
    --bg-tertiary: #eef1f6;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: #e1e7ef;
    --accent-primary: #7B47FF;
    --accent-secondary: #9368FF;
    --card-bg: #ffffff;
    --sidebar-bg: rgba(255, 255, 255, 0.95);
    --particle-color: #7B47FF;
    --scrollbar-track: #e1e7ef;
    --search-bg: #ffffff;
    --header-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --card-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    --card-border: #e1e7ef;
}

/* 🎨 OVERLAY DE FUNDO - Diminuir opacidade para mostrar mais a imagem */
[data-theme="light"] body::after {
    opacity: 0.85;
    background: linear-gradient(135deg, #f8f9fb 0%, #eef1f6 100%);
}

/* 🏠 BACKGROUND E CORES BÁSICAS */
[data-theme="light"] body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--header-shadow);
    backdrop-filter: blur(20px);
}

[data-theme="light"] .header h1 {
    background: linear-gradient(135deg, #6b35e8, #8B5FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 📄 CARDS E CONTEÚDO */
[data-theme="light"] .card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--accent-primary);
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

[data-theme="light"] .card:hover {
    box-shadow: 0 8px 24px rgba(123, 71, 255, 0.12);
    border-left-color: var(--accent-secondary);
}

[data-theme="light"] .card h3,
[data-theme="light"] .card h4 {
    color: var(--text-primary);
}

[data-theme="light"] .card p {
    color: var(--text-secondary);
}

[data-theme="light"] .content h2 {
    color: var(--text-primary);
    text-shadow: none;
}

[data-theme="light"] .content p {
    color: var(--text-secondary);
}

[data-theme="light"] .content {
    position: relative;
    z-index: 10;
}

/* 📂 SIDEBAR ESQUERDA */
[data-theme="light"] .sidebar {
    background: transparent;
    z-index: 100;
}

[data-theme="light"] .category-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .category-item:hover {
    background: linear-gradient(135deg, rgba(123, 71, 255, 0.05), rgba(147, 104, 255, 0.05));
    border-color: rgba(123, 71, 255, 0.4);
    box-shadow: 0 4px 12px rgba(123, 71, 255, 0.08);
    transform: translateX(6px) scale(1.02);
}

[data-theme="light"] .category-item.active {
    background: linear-gradient(135deg, rgba(123, 71, 255, 0.12), rgba(147, 104, 255, 0.08));
    border-color: var(--accent-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 16px rgba(123, 71, 255, 0.15);
    transform: translateX(6px) scale(1.02);
}

/* 📊 SIDEBAR DIREITA */
[data-theme="light"] .sidebar-right {
    background: transparent;
    z-index: 100;
}

[data-theme="light"] .sidebar-right-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .sidebar-right-box:hover {
    border-color: rgba(123, 71, 255, 0.3);
    background: var(--card-bg);
    box-shadow: 0 4px 16px rgba(123, 71, 255, 0.08);
    transform: none;
}

[data-theme="light"] .sidebar-right-box h3 {
    color: var(--text-primary);
}

[data-theme="light"] .sidebar-right-box p {
    color: var(--text-secondary);
}

/* 🔘 BOTÕES DA SIDEBAR */
[data-theme="light"] .sidebar-button {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .sidebar-button:hover {
    border-color: rgba(123, 71, 255, 0.3);
    background: var(--card-bg);
    box-shadow: 0 4px 16px rgba(123, 71, 255, 0.08);
}

[data-theme="light"] .sidebar-button.active {
    background: linear-gradient(135deg, rgba(123, 71, 255, 0.12), rgba(147, 104, 255, 0.08));
    border-color: var(--accent-primary);
    box-shadow: 0 4px 16px rgba(123, 71, 255, 0.15);
    transform: scale(1.02);
}

[data-theme="light"] .sidebar-button h3 {
    color: var(--accent-primary);
}

[data-theme="light"] .sidebar-button p {
    color: var(--text-secondary);
}

/* 🔗 LINKS E ELEMENTOS INTERATIVOS */
[data-theme="light"] .command-link {
    color: var(--accent-primary);
    background: rgba(123, 71, 255, 0.08);
    border: 1px solid rgba(123, 71, 255, 0.2);
}

[data-theme="light"] .command-link:hover {
    background: rgba(123, 71, 255, 0.15);
    border-color: var(--accent-primary);
}

[data-theme="light"] .text-link {
    color: inherit;
}

[data-theme="light"] .text-link:hover {
    color: var(--accent-primary);
}

[data-theme="light"] .external-link {
    color: inherit;
}

[data-theme="light"] .external-link:hover {
    color: var(--accent-primary);
}

[data-theme="light"] .store-link {
    color: var(--accent-primary);
}

[data-theme="light"] .command-display {
    color: var(--accent-primary);
    background: rgba(123, 71, 255, 0.08);
    border: 1px solid rgba(123, 71, 255, 0.2);
}

[data-theme="light"] .command-display:hover {
    background: rgba(123, 71, 255, 0.15);
    border-color: var(--accent-primary);
}

/* 🔍 BUSCA */
[data-theme="light"] .search-input {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .search-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(123, 71, 255, 0.1);
}

[data-theme="light"] .search-input::placeholder {
    color: var(--text-muted);
}

[data-theme="light"] .search-icon {
    color: var(--text-muted);
}

[data-theme="light"] .search-results {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .search-result-item {
    color: var(--text-primary);
}

[data-theme="light"] .search-result-item:hover {
    background: linear-gradient(135deg, rgba(123, 71, 255, 0.08), rgba(147, 104, 255, 0.06));
    color: var(--text-primary);
}

[data-theme="light"] .search-results .search-result-category {
    color: var(--text-primary);
}

[data-theme="light"] .search-result-match {
    color: var(--text-secondary);
}

/* 📋 LISTA DE RECOMPENSAS */
[data-theme="light"] .reward-list li {
    color: var(--text-secondary);
}

[data-theme="light"] .reward-list li i {
    color: var(--accent-primary);
}

/* 👥 CONTADOR DE VISITANTES */
[data-theme="light"] .visitor-counter {
    background: var(--card-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .visitor-counter:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 16px rgba(123, 71, 255, 0.12);
}

[data-theme="light"] .visitor-counter #visitorCount {
    color: var(--accent-primary);
    font-weight: 700;
}

/* 📱 MOBILE MENU */
[data-theme="light"] .mobile-menu-toggle {
    background: var(--bg-primary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .mobile-menu-toggle:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

[data-theme="light"] .sidebar.mobile-menu-open {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/* 📊 TABELAS DE BENEFÍCIOS */
[data-theme="light"] .benefits-table {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .table-cell {
    background: rgba(248, 250, 252, 0.95);
    color: var(--text-primary);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .header-cell {
    background: rgba(241, 245, 249, 0.95);
    color: var(--text-primary);
    font-weight: 700;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .footer-cell {
    background: rgba(241, 245, 249, 0.95);
    color: var(--text-primary);
    font-weight: 700;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .benefit-cell {
    background: rgba(248, 250, 252, 0.95);
    color: var(--text-primary);
    font-weight: 600;
    text-align: left;
}

/* 🎨 CORES DAS COLUNAS DE TIERS */
[data-theme="light"] .deluxe-column {
    background: linear-gradient(135deg, #fef3c7, #fcd34d);
    color: #92400e;
}

[data-theme="light"] .luxury-column {
    background: linear-gradient(135deg, #fee2e2, #fca5a5);
    color: #991b1b;
}

[data-theme="light"] .prime-column {
    background: linear-gradient(135deg, #fed7aa, #fb923c);
    color: #9a3412;
}

[data-theme="light"] .investidor-column {
    background: linear-gradient(135deg, #ecfdf5, #86efac);
    color: #166534;
}

[data-theme="light"] .vip-safira {
    background: linear-gradient(135deg, #dbeafe, #93c5fd);
    color: #1e40af;
}

[data-theme="light"] .vip-rubi {
    background: linear-gradient(135deg, #fce7f3, #f9a8d4);
    color: #be185d;
}

[data-theme="light"] .vip-esmeralda {
    background: linear-gradient(135deg, #ecfdf5, #86efac);
    color: #166534;
}

[data-theme="light"] .vip-diamante {
    background: linear-gradient(135deg, #f0f9ff, #bae6fd);
    color: #0c4a6e;
}

/* ✅ ÍCONES DE CHECK E CROSS */
[data-theme="light"] .benefit-check {
    color: #059669;
    filter: drop-shadow(0 1px 2px rgba(5, 150, 105, 0.3));
}

[data-theme="light"] .benefit-cross {
    color: #dc2626;
    filter: drop-shadow(0 1px 2px rgba(220, 38, 38, 0.3));
}

/* 🎨 CORES INLINE ESPECÍFICAS */
[data-theme="light"] [style*="color: #9668e1"],
[data-theme="light"] [style*="color: rgb(150, 104, 225)"] {
    color: var(--accent-primary) !important;
}

[data-theme="light"] [style*="color: #ff8801"],
[data-theme="light"] [style*="color: #fb9f00"] {
    color: #f59e0b !important;
}

[data-theme="light"] [style*="color: #47a9ff"],
[data-theme="light"] [style*="color: #2d97f4"] {
    color: #3b82f6 !important;
}

[data-theme="light"] [style*="color: #22c55e"] {
    color: #10b981 !important;
}

[data-theme="light"] [style*="color: #ffffff"],
[data-theme="light"] [style*="color: white"] {
    color: var(--text-primary) !important;
}

/* 🌐 ÁREA DE CONTEÚDO */
[data-theme="light"] .content-area {
    background: transparent;
    position: relative;
    z-index: 10;
}

[data-theme="light"] .container {
    background: transparent;
}

/* 🎯 LOADING E SPINNER */
[data-theme="light"] .loading {
    color: var(--text-secondary);
}

[data-theme="light"] .loading p {
    color: var(--text-muted);
}

[data-theme="light"] .spinner {
    border-color: rgba(0, 0, 0, 0.1);
    border-top-color: var(--accent-primary);
}

/* 🎨 TÍTULOS E TEXTOS */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
    color: var(--text-primary);
}

[data-theme="light"] p,
[data-theme="light"] span,
[data-theme="light"] div {
    color: var(--text-secondary);
}

/* 🎨 ELEMENTOS INTERATIVOS GENÉRICOS */
[data-theme="light"] button {
    background: var(--bg-primary);
    color: var(--text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] button:hover {
    background: rgba(123, 71, 255, 0.05);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

[data-theme="light"] input,
[data-theme="light"] textarea,
[data-theme="light"] select {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] input:focus,
[data-theme="light"] textarea:focus,
[data-theme="light"] select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(123, 71, 255, 0.1);
}

/* 🎯 MODAIS */
[data-theme="light"] .modal-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

[data-theme="light"] .extra-modal {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(123, 71, 255, 0.1);
}

[data-theme="light"] .modal-header {
    background: linear-gradient(135deg, rgba(123, 71, 255, 0.08), rgba(147, 104, 255, 0.05));
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .modal-header h3 {
    color: var(--text-primary);
}

[data-theme="light"] .modal-header h3 i {
    color: var(--accent-primary);
}

[data-theme="light"] .modal-close {
    background: rgba(123, 71, 255, 0.1);
    color: var(--accent-primary);
}

@media (min-width: 769px) {
    [data-theme="light"] .modal-close:hover {
        background: var(--accent-primary);
        color: white;
    }
}

[data-theme="light"] .modal-content {
    background: transparent;
}

[data-theme="light"] .extra-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

@media (min-width: 769px) {
    [data-theme="light"] .extra-item:hover {
        background: linear-gradient(135deg, rgba(123, 71, 255, 0.05), rgba(147, 104, 255, 0.03));
        border-color: var(--accent-primary);
        box-shadow: 0 4px 12px rgba(123, 71, 255, 0.08);
        transform: translateY(-2px);
    }

    [data-theme="light"] .extra-item:hover .external-indicator,
    [data-theme="light"] .extra-item:hover .internal-indicator {
        color: var(--accent-primary);
    }
}

[data-theme="light"] .extra-icon {
    background: rgba(123, 71, 255, 0.12);
    color: var(--accent-primary);
}

[data-theme="light"] .extra-info h4 {
    color: var(--text-primary);
}

[data-theme="light"] .extra-info p {
    color: var(--text-secondary);
}

[data-theme="light"] .external-indicator,
[data-theme="light"] .internal-indicator {
    color: var(--text-muted);
}

/* 🎵 BOTÃO DISCORD E SUPPORT */
[data-theme="light"] .discord-btn {
    background: linear-gradient(135deg, #5865f2, #7289da);
}

[data-theme="light"] .support-balloon {
    background: var(--text-primary);
    color: #ffffff;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 8px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .support-balloon::after {
    border-top-color: var(--text-primary);
}

/* 🎨 SCROLLBAR */
[data-theme="light"] body::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

[data-theme="light"] body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-primary), rgba(123, 71, 255, 0.6));
}

[data-theme="light"] body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-secondary), var(--accent-primary));
}

/* 🎨 PARTÍCULAS E CANVAS */
[data-theme="light"] .particles-container {
    z-index: -1;
    opacity: 0.5;
}

[data-theme="light"] canvas {
    opacity: 0.4;
}


body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    margin: 0 200px;
    position: relative;
}

/* Background Image - Tela Inteira 16:9 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('assets/fundo.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: -2;
    pointer-events: none;
    
    /* Garantir aspecto 16:9 em telas muito largas ou altas */
    min-width: 100vw;
    min-height: 100vh;
    
    /* Para telas ultrawide, manter proporção */
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Overlay escuro para melhor legibilidade */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-primary);
    opacity: 0.75;
    z-index: -1;
    pointer-events: none;
}

/* Scrollbar customizada do site */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-primary), rgba(123, 71, 255, 0.6));
    border-radius: 10px;
    transition: all 0.2s ease;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-secondary), var(--accent-primary));
}

html {
    scrollbar-gutter: stable; /* Reserva espaço para scrollbar sem forçá-la */
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) var(--scrollbar-track);
}

h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--particle-color);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    5% {
        opacity: 0.6;
        transform: translateY(95vh) translateX(0) scale(1);
    }
    95% {
        opacity: 0.6;
        transform: translateY(5vh) translateX(0) scale(1);
    }
    100% {
        transform: translateY(-5vh) translateX(0) scale(0);
        opacity: 0;
    }
}

/* Header fixo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--header-shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    justify-content: space-between;
    padding: 0 230px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Botão da Loja - Apenas Desktop */
.store-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    height: 42px; /* Mesma altura da barra de pesquisa */
    background: rgba(255, 255, 255, 0.05); /* Mesmo background da barra de pesquisa */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Mesma borda da barra de pesquisa */
    border-radius: 12px; /* Mesmo border-radius da barra de pesquisa */
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem; /* Mesmo font-size da barra de pesquisa */
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    transform: translateY(0);
}

.store-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: none;
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.08); /* Mesmo hover da barra de pesquisa */
    border-color: rgba(123, 71, 255, 0.4); /* Borda roxa discreta */
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: none; /* Removendo o box-shadow exagerado */
}

.store-button:hover::before {
    animation: shimmerOnce 0.6s ease-out forwards;
}

@keyframes shimmerOnce {
    0% {
        left: -100%;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 1;
    }
}

.store-button:hover i {
    color: rgba(255, 255, 255, 0.95);
}

.store-button:hover .store-button-text {
    color: #ffffff;
}

.store-button:active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(0);
}

.store-button i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.store-button-text {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    transition: all 0.3s ease;
}


.header h1 {
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

/* Gradient especial para tema escuro */
:root .header h1 {
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Barra de pesquisa */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 180px;
    height: 40px;
    background: var(--search-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0 40px 0 12px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input:focus {
    border-color: var(--accent-primary);
    background: var(--search-bg);
    box-shadow: 0 0 0 3px rgba(123, 71, 255, 0.1);
}

.search-icon {
    position: absolute;
    right: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
}

/* Dropdown de resultados da pesquisa */
.search-results {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(145deg, #1a1a1a, #171717);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    z-index: 1001;
    margin-top: 8px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    display: none;
    width: 320px;
    max-width: calc(100vw - 40px);
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    animation: searchDropdown 0.2s ease-out;
}

/* Scrollbar customizada */
.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7B47FF, rgba(123, 71, 255, 0.6));
    border-radius: 10px;
    transition: all 0.2s ease;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #8B5FFF, #7B47FF);
}

/* Firefox scrollbar */
.search-results {
    scrollbar-width: thin;
    scrollbar-color: #7B47FF rgba(255, 255, 255, 0.02);
    overscroll-behavior: contain; /* Evita scroll vazamento */
    -webkit-overflow-scrolling: touch; /* Smooth scroll no iOS */
}

@keyframes searchDropdown {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.search-result-item {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.search-result-item:last-child {
    border-bottom: none;
    border-radius: 0 0 16px 16px;
}

.search-result-item:first-child {
    border-radius: 16px 16px 0 0;
}

.search-result-item:only-child {
    border-radius: 16px;
}

.search-result-item::before {
    display: none;
}

.search-result-item:hover {
    background: rgba(123, 71, 255, 0.1);
}

.search-result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    white-space: normal;
}

.search-result-category {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-result-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.search-result-match {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin-top: 2px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    word-wrap: break-word;
}

.search-highlight {
    color: #7B47FF;
    font-weight: 600;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    border-radius: 16px;
}

/* Tooltip personalizado para elementos com data-tooltip */
[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 1000;
    min-height: 16px;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-tooltip]::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 1000;
}

[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Estilo para comandos clicáveis - caixinha discreta */
.command-link {
    display: inline;
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', 'Lucida Console', monospace;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.command-link:hover {
    background: rgba(150, 104, 225, 0.2);
    border-color: rgba(150, 104, 225, 0.4);
    overflow: visible;
}

.command-link:active {
    background: rgba(150, 104, 225, 0.3);
}

/* Animação de copiado */
.command-link.copied {
    background: rgba(150, 104, 225, 0.3) !important;
    border-color: rgba(150, 104, 225, 0.5) !important;
    color: #ffffff !important;
    animation: pulseCommand 0.3s ease;
    overflow: visible;
}

@keyframes pulseCommand {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Estilo para comandos apenas visuais - sem função de clique */
.command-display {
    display: inline;
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', 'Lucida Console', monospace;
    font-size: inherit;
    font-weight: inherit;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Estilo para links da loja */
.store-link {
    color: #9668e1ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.store-link:hover {
    color: #a478e8;
    border-bottom-color: #9668e1ff;
}

/* Estilo para links de texto simples */
.text-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #47a9ffff;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.text-link:hover {
    color: #47a9ffff;
    border-bottom-color: #47a9ffff;
}

/* Estilo para links externos - abre em nova aba */
.external-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #47a9ffff;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.external-link:hover {
    color: #47a9ffff;
    border-bottom-color: #47a9ffff;
}

/* Container principal - NORMAL */
.container {
    display: flex;
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    position: relative;
    z-index: 10;
}

/* Sidebar das categorias - NORMAL */
.sidebar {
    position: fixed;
    left: 200px;
    top: 70px;
    width: 320px;
    height: calc(100vh - 70px);
    /*background-color: #141414;*/
    padding: 20px 25px;
    overflow-y: hidden;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

/* Nova Sidebar Direita - NORMAL */
.sidebar-right {
    position: fixed;
    right: 205px;
    top: 70px;
    width: 280px;
    height: calc(100vh - 70px);
    /*background-color: #141414;*/
    padding: 20px 25px;
    overflow-y: auto;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Caixas da sidebar direita */
.sidebar-right-box {
    background: #1B1B1B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.sidebar-right-box:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: #1F1F1F;
}

.sidebar-right-box h3 {
    color: #9668e1ff;
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-right-box p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Contador de visitantes */
.visitor-counter {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 14px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.visitor-counter:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: #1F1F1F;
}

.counter-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 4px;
}

.counter-header i {
    color: #7B47FF;
    font-size: 12px;
    opacity: 0.8;
}

.counter-label {
    color: #a0a0a0;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter-number {
    position: relative;
}

.visitor-counter #visitorCount {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: inline-block;
}


/* Botões especiais da sidebar da direita*/
.sidebar-button {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.sidebar-button:hover {
    border-color: #ffffff40;
    background: #1f1f1f77;
}

.sidebar-button.active {
    background: #1A1A1A;
    border-color: #ffffff40;
    transform: scale(1.02);
}

.sidebar-button h3 {
    color: #9668e1ff;
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-button p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Caixa especial da Loja do Servidor */
.store-box {
    background: #1F1F1F;
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 16px;
    padding: 18px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.store-box:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.5);
}

.store-box-icon {
    font-size: 1.3rem;
    color: #a855f7;
    transition: all 0.3s ease;
}

.store-box:hover .store-box-icon {
    color: #c084fc;
}

.store-box-text {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    letter-spacing: 0.025em;
}

/* CATEGORIAS - ESTILO MELHORADO */
.category-item {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    margin-bottom: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: #1f1f1f77;
    border-color: #ffffff40;
}

.category-item.active {
    background: #1A1A1A;
    border-color: #ffffff40;
    color: #ffffff;
    transform: translateX(10px) scale(1.0);
}

/* Área de conteúdo - NORMAL */
.content-area {
    margin-left: 280px;
    margin-right: 280px;
    flex: 1;
    padding: 40px;
    min-height: calc(100vh - 70px);
    max-width: calc(100vw - 800px);
    overflow-x: hidden;
    position: relative;
    z-index: 10;
}

.content {
    max-width: 930px;
    margin: 0 0 0 55px;
    position: relative;
    z-index: 10;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cccccc;
}

.card {
    background: #1b1b1bbb;
    border: 1px solid #ffffff1a;
    border-left: 4px solid #7b47ffb2;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Hover effect apenas para desktop */
@media (min-width: 1024px) {
    .card:hover {
        transform: translateY(-3px);
        border-left-color: rgba(123, 71, 255, 0.6);
    }
}

.card > p:last-of-type {
    margin-bottom: 0;
}

/* Lista com ícones FontAwesome - BÁSICO E SIMPLES */
.reward-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reward-list li {
    display: flex;
    align-items: center;
    padding: 6px 0;
    margin-bottom: 4px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

.reward-list li:hover {
    color: #ffffff;
}

/* Garantir cor correta dos spans na reward-list no tema escuro, exceto links e elementos com cor inline */
.reward-list li span:not(.text-link):not(.command-link):not(.store-link):not(.external-link):not([style*="color:"]) {
    color: inherit !important;
}

.reward-list li i {
    color: #47a9ffff;
    margin-right: 12px;
    width: 16px;
    text-align: center;
    font-size: 1.1rem;
}

.reward-list li .fa-check {
    color: #47a9ffff;
}

/* Mobile - MÍNIMAS mudanças necessárias */
@media (max-width: 768px) {
    .reward-list li {
        align-items: flex-start;
        padding: 8px 0;
    }
    
    .reward-list li i {
        margin-top: 2px;
    }
}

@media (max-width: 480px) {
    .reward-list li {
        font-size: 1rem;
    }
}

.loading {
    display: none;
    text-align: center;
    padding: 60px;
}

.spinner {
    border: 3px solid rgba(123, 71, 255, 0.2);
    border-top: 3px solid #7B47FF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
}

/* Discord Support Button Styles */
.discord-support-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
}

.discord-btn {
    background: linear-gradient(135deg, #5865f2, #7289da);
    border: none;
    color: white;
    padding: 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(88, 101, 242, 0.3),
        0 8px 30px rgba(88, 101, 242, 0.2);
    position: relative;
    z-index: 20;
}

.discord-btn:hover {
    background: linear-gradient(135deg, #4752c4, #5b6eae);
    transform: scale(1.1);
    box-shadow: 
        0 6px 20px rgba(88, 101, 242, 0.4),
        0 12px 40px rgba(88, 101, 242, 0.3);
}

.discord-btn:active {
    transform: scale(1.05);
}

.discord-icon {
    width: 24px;
    height: 24px;
    display: block;
}

/* Support Balloon */
.support-balloon {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    color: #333;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 15;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.support-balloon.show {
    opacity: 1;
    transform: translateY(0);
}

.support-balloon::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

/* Custom Toastify Styles */
.toastify {
    padding: 16px 20px !important;
    color: #ffffff !important;
    box-shadow: 
        0 10px 30px -5px rgba(0, 0, 0, 0.3),
        0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    background: linear-gradient(135deg, #7c3aed, #6366f1) !important;
    border-radius: 1rem !important;
    font-family: 'Montserrat', system-ui, sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.025em !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Tabela de Benefícios dos Investidores */
.benefits-table {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header,
.table-row,
.table-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-header {
    background: rgba(255, 255, 255, 0.05);
}

.table-footer {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: none;
    font-weight: 600;
}

.benefit-cell,
.tier-cell {
    padding: 15px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-cell {
    justify-content: flex-start;
    text-align: left;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.header-cell {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.footer-cell {
    font-weight: 600;
    color: #ffffff;
}

/* Cores dos Tiers */
.sheik-tier {
    background: rgba(255, 193, 7, 0.1);
    color: #FFC107;
    font-weight: 600;
}

.king-tier {
    background: rgba(244, 67, 54, 0.1);
    color: #F44336;
    font-weight: 600;
}

.god-tier {
    background: rgba(255, 235, 59, 0.1);
    color: #FFEB3B;
    font-weight: 600;
}

.invest-tier {
    background: rgba(0, 188, 212, 0.1);
    color: #00BCD4;
    font-weight: 600;
}

/* Valores específicos */
.sheik-value {
    color: #FFC107;
    font-weight: 600;
}

.king-value {
    color: #F44336;
    font-weight: 600;
}

.god-value {
    color: #FFEB3B;
    font-weight: 600;
}

.invest-value {
    color: #00BCD4;
    font-weight: 600;
}

/* VIPs */
.sheik-vip {
    color: #4CAF50;
    font-weight: 600;
}

.king-vip,
.god-vip {
    color: #9C27B0;
    font-weight: 600;
}

.invest-vip {
    color: #FF9800;
    font-weight: 600;
}

/* Totais */
.sheik-total {
    color: #FFC107;
    font-weight: 700;
}

.king-total {
    color: #F44336;
    font-weight: 700;
}

.god-total {
    color: #FFEB3B;
    font-weight: 700;
}

.invest-total {
    color: #00BCD4;
    font-weight: 700;
}

/* Ícone de check */
.benefit-check {
    color: #4CAF50;
    font-size: 1.1rem;
}

/* Ícones dos tiers */
.tier-cell i {
    margin-right: 6px;
}

/* Responsividade da tabela */
@media (max-width: 768px) {
    .table-header,
    .table-row,
    .table-footer {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    }
    
    .benefit-cell,
    .tier-cell {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .tier-cell i {
        margin-right: 4px;
    }
}

@media (max-width: 600px) {
    .table-header,
    .table-row,
    .table-footer {
        grid-template-columns: 1fr;
        gap: 1px;
    }
    
    .tier-cell {
        display: none;
    }
    
    .table-row:hover .tier-cell {
        display: flex;
        background: rgba(255, 255, 255, 0.02);
    }
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 1024px) {
    body {
        margin: 0 50px;
    }
    
    .header {
        padding: 0 50px;
    }
    
    .sidebar {
        left: 50px;
        width: 280px;
    }
    
    /* Esconder sidebar direita no tablet */
    .sidebar-right {
        display: none;
    }
    
    .content-area {
        margin-left: 250px;
        margin-right: 0; /* Remove margem direita no tablet */
        padding: 30px;
        max-width: calc(100vw - 300px); /* Ajuste para uma sidebar */
    }
    
    .content {
        margin: 0;
    }
}

/* Menu Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(123, 71, 255, 0.3);
}

.mobile-menu-toggle i {
    font-size: 1.1rem;
}

/* Botão Outros para mobile - Tamanho exato da palavra */
.more-button {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400 !important;
    text-align: left !important;
    justify-content: flex-start !important;
    margin-top: 10px !important;
    margin-left: 25px !important;
    margin-right: 25px !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    font-size: 0.9rem !important;
    width: auto !important;
    max-width: fit-content !important;
    display: inline-flex !important;
    align-self: center !important;
}

.more-button:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    transform: none !important;
}

.more-button:active {
    background: rgba(255, 255, 255, 0.12) !important;
}

.more-button i {
    margin-right: 6px;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    width: auto !important;
}

.more-button:hover i {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.show {
    opacity: 1;
}

/* Modal das categorias extras */
.extra-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(145deg, #1a1a1a, #171717);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    overflow: hidden;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.extra-modal.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Header do modal */
.modal-header {
    background: rgba(123, 71, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 i {
    color: #7B47FF;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Efeito hover do botão fechar apenas no desktop */
@media (min-width: 769px) {
    .modal-close:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
    }
}

/* Conteúdo do modal */
.modal-content {
    padding: 25px;
    max-height: calc(80vh - 80px);
    overflow-y: auto;
}

/* Item de categoria extra */
.extra-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.extra-item:last-child {
    margin-bottom: 0;
}

/* Remover efeitos hover no mobile */
@media (min-width: 769px) {
    .extra-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(123, 71, 255, 0.3);
        transform: translateY(-2px);
    }

    .extra-item:hover .external-indicator,
    .extra-item:hover .internal-indicator {
        color: #7B47FF;
    }
}

.extra-item:active {
    transform: translateY(0);
}

/* Ícone da categoria */
.extra-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 71, 255, 0.1);
    border-radius: 10px;
}

/* Informações da categoria */
.extra-info {
    flex: 1;
    min-width: 0;
}

.extra-info h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.extra-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Indicadores de ação */
.external-indicator,
.internal-indicator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-left: 10px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

/* Efeitos hover dos indicadores apenas no desktop */
@media (min-width: 769px) {
    .extra-item:hover .external-indicator,
    .extra-item:hover .internal-indicator {
        color: #7B47FF;
    }
}

.external-indicator {
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    body {
        margin: 0;
    }

    .header {
        padding: 0 20px;
    }
    
    .header-right {
        gap: 12px;
    }
    
    /* Esconder botão da loja no mobile */
    .store-button {
        display: none;
    }
    
    .header h1 {
        font-size: 1.2rem;
    }
    
    .header h1 img {
        width: 28px !important;
        height: 28px !important;
    }
    
    .search-input {
        width: 165px;
        height: 35px;
        font-size: 16px;
        padding: 0 35px 0 12px;
        border-radius: 10px;
    }
    
    .search-icon {
        right: 12px;
        font-size: 0.9rem;
    }
    
    .search-results {
        right: 0;
        width: 280px;
        max-width: calc(100vw - 40px);
        max-height: 300px;
        margin-right: 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        width: 38px;
        height: 38px;
        padding: 8px;
    }

    .mobile-menu-toggle i {
        font-size: 1rem;
    }
    
    .theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .sidebar {
        position: fixed;
        left: 0;
        top: 70px;
        width: 280px;
        height: calc(100vh - 70px);
        height: calc(100dvh - 70px);
        max-height: calc(100vh - 70px);
        max-height: calc(100dvh - 70px);
        padding: 15px 0 60px 0; /* Espaço mínimo para iOS */
        background-color: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(10px);
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.2s ease;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        gap: 0;
        justify-content: flex-start;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    
    .sidebar.mobile-menu-open {
        transform: translateX(0);
    }
    
    .sidebar .category-item {
        padding: 18px 25px;
        margin-bottom: 0;
        font-size: 1rem;
        text-align: left;
        justify-content: flex-start;
        min-height: auto;
        border-radius: 0;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 15px;
        flex-shrink: 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.85);
        font-weight: 500;
        transition: all 0.2s ease;
        transform: none;
    }
    
    .sidebar .category-item:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        transform: none;
    }
    
    .sidebar .category-item.active {
        background: rgba(123, 71, 255, 0.15);
        color: #ffffff;
        border-bottom-color: rgba(123, 71, 255, 0.3);
        transform: none;
    }
    
    .sidebar .category-item:last-child {
        border-bottom: none;
    }

    /* Esconder sidebar direita no mobile */
    .sidebar-right {
        display: none;
    }

    .container {
        flex-direction: column;
        margin-top: 70px;
    }

    .content-area {
        margin-left: 0;
        margin-right: 0; /* Remove margem direita no mobile */
        padding: 20px;
        max-width: 100%;
    }

    .content {
        margin: 0;
        max-width: 100%;
    }
    
    .content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .card {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .reward-list li {
        font-size: 0.95rem;
        padding: 10px 0;
        line-height: 1.5;
        text-align: justify;
    }
    
    .reward-list li i {
        font-size: 1rem;
        margin-top: 1px;
        margin-right: 10px;
    }

    .discord-support-container {
        bottom: 20px;
        right: 20px;
    }
    
    .discord-btn {
        padding: 14px;
    }
    
    .discord-icon {
        width: 20px;
        height: 20px;
    }

    .support-balloon {
        bottom: 60px;
        right: -30px;
        font-size: 12px;
        padding: 10px 14px;
        max-width: 150px;
        white-space: normal;
        text-align: center;
    }

    .support-balloon::after {
        right: 40px;
    }
    
    .command-link {
        font-size: 0.9em;
        padding: 3px 6px;
        word-break: break-word;
    }
    
    .search-result-match {
        white-space: normal;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 15px;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .header h1 {
        font-size: 1.1rem;
    }
    
    .search-input {
        width: 135px;
        height: 32px;
        font-size: 16px;
        padding: 0 32px 0 10px;
        border-radius: 8px;
    }
    
    .search-icon {
        right: 10px;
        font-size: 0.85rem;
    }
    
    .search-results {
        right: 0;
        width: 240px;
        max-width: calc(100vw - 30px);
        max-height: 250px;
        margin-right: 15px;
    }
    
    .mobile-menu-toggle {
        width: 32px;
        height: 32px;
        padding: 6px;
        border-radius: 6px;
    }
    
    .mobile-menu-toggle i {
        font-size: 0.9rem;
    }
    
    .theme-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .sidebar {
        padding: 10px 0 140px 0;
        gap: 0;
        width: 260px;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    
    .sidebar .category-item {
        font-size: 0.95rem;
        padding: 16px 20px;
        gap: 12px;
    }
    
    .content-area {
        padding: 15px;
    }
    
    .content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .card {
        padding: 18px;
        margin-bottom: 18px;
    }
    
    .card h3 {
        font-size: 1.3rem !important;
    }
    
    .card h4 {
        font-size: 1.05rem !important;
    }
    
    .reward-list li {
        font-size: 0.95rem;
    }
    
    .support-balloon {
        right: -20px;
        max-width: 120px;
        font-size: 11px;
    }
    
    /* Ajustes do modal para telas menores */
    .extra-modal {
        width: 95%;
        max-width: 350px;
    }
    
    .modal-header {
        padding: 18px 20px;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .extra-item {
        padding: 14px 16px;
        margin-bottom: 10px;
    }
    
    .extra-icon {
        font-size: 1.3rem;
        width: 36px;
        height: 36px;
        margin-right: 12px;
    }
    
    .extra-info h4 {
        font-size: 0.95rem;
    }
    
    .extra-info p {
        font-size: 0.8rem;
    }
}

/* Tabela de Benefícios dos Investidores - CSS Grid */
.benefits-table {
    display: grid;
    grid-template-columns: minmax(200px, auto) repeat(4, 1fr);
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 25px 0;
    gap: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 100;
}

/* Células da tabela */
.table-cell {
    background: rgba(20, 20, 20, 0.95);
    padding: 18px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
    min-height: 60px;
}

/* Célula de benefício (primeira coluna) */
.benefit-cell {
    justify-content: flex-start;
    text-align: left;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 20px;
}

/* Header da tabela */
.header-cell {
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
    gap: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Footer da tabela */
.footer-cell {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    color: #ffffff;
    font-size: 1.05rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* Cores dos Tiers */
.deluxe-tier {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
    color: #ffff55;
    font-weight: 700;
}

.luxury-tier {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2), rgba(244, 67, 54, 0.1));
    color: #ff5555;
    font-weight: 700;
}

.prime-tier {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 152, 0, 0.1));
    color: #ffaa00;
    font-weight: 700;
}

.investidor-tier {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 188, 212, 0.1));
    color: #55ffff;
    font-weight: 700;
}

/* Cores das colunas - cada coluna tem sua cor de fundo */
.deluxe-column {
    background: rgba(255, 193, 7, 0.08);
    color: #ffffff;
    font-weight: 600;
}

.luxury-column {
    background: rgba(244, 67, 54, 0.08);
    color: #ffffff;
    font-weight: 600;
}

.prime-column {
    background: rgba(255, 152, 0, 0.08);
    color: #ffffff;
    font-weight: 600;
}

.investidor-column {
    background: rgba(0, 188, 212, 0.08);
    color: #ffffff;
    font-weight: 600;
}

/* Cores específicas para os VIPs */
.vip-safira {
    color: #5555ff !important;
}

.vip-rubi {
    color: #ff5555 !important;
}

.vip-neon {
    color: #ff55ff !important;
}

/* Cores específicas para os TIERs */
.inv-deluxe {
    color: #ffff55 !important;
}

.inv-luxury {
    color: #ff5555 !important;
}

.inv-prime {
    color: #ffaa00 !important;
}

.inv-investor {
    color: #55ffff !important;
}

/* Ícone de check */
.benefit-check {
    color: #9668e1;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px rgba(150, 104, 225, 0.5));
}

/* Ícones dos tiers */
.table-cell i {
    margin-right: 6px;
    font-size: 1.1rem;
}

/* Responsividade - Tablet */
@media (max-width: 1024px) {
    .benefits-table {
        grid-template-columns: minmax(180px, auto) repeat(4, 1fr);
        font-size: 0.9rem;
    }
    
    .table-cell {
        padding: 15px 10px;
        min-height: 55px;
        font-size: 0.9rem;
    }
    
    .header-cell {
        font-size: 1rem;
    }
}

/* Responsividade - Mobile */
@media (max-width: 768px) {
    .benefits-table {
        grid-template-columns: minmax(160px, auto) repeat(4, 0.9fr);
        font-size: 0.85rem;
        gap: 0.5px;
    }
    
    .table-cell {
        padding: 12px 8px;
        font-size: 0.85rem;
        min-height: 50px;
    }
    
    .benefit-cell {
        padding-left: 12px;
    }
    
    .header-cell {
        font-size: 0.9rem;
        gap: 4px;
    }
    
    .table-cell i {
        margin-right: 4px;
        font-size: 1rem;
    }
    
    .footer-cell {
        font-size: 0.95rem;
    }
}

/* Responsividade - Mobile pequeno */
@media (max-width: 600px) {
    .benefits-table {
        grid-template-columns: minmax(140px, auto) repeat(4, 0.8fr);
        font-size: 0.8rem;
    }
    
    .table-cell {
        padding: 10px 6px;
        font-size: 0.8rem;
        min-height: 45px;
    }
    
    .benefit-cell {
        padding-left: 10px;
    }
    
    .header-cell {
        font-size: 0.85rem;
        gap: 2px;
    }
    
    .table-cell i {
        margin-right: 3px;
        font-size: 0.9rem;
    }
    
    .benefit-check {
        font-size: 1.1rem;
    }
}

/* Responsividade - Mobile muito pequeno */
@media (max-width: 480px) {
    .benefits-table {
        grid-template-columns: 1.3fr repeat(4, 0.7fr);
        font-size: 0.75rem;
    }
    
    .table-cell {
        padding: 8px 4px;
        font-size: 0.75rem;
        min-height: 40px;
    }
    
    .benefit-cell {
        padding-left: 8px;
    }
    
    .header-cell {
        font-size: 0.8rem;
        gap: 1px;
    }
    
    .footer-cell {
        font-size: 0.85rem;
    }
    
    .table-cell i {
        margin-right: 2px;
        font-size: 0.8rem;
    }
    
    .benefit-check {
        font-size: 1rem;
    }
}


