/* Custom CSS for DayZ Server Website */

:root {
    /* ═══════════════════════════════════════════════════════════════════════════
       DESIGN SUNSET - Paleta baseada na imagem loadingscreen.png
       Tema: Pôr do Sol Pós-Apocalíptico - Solitude & Sobrevivência
       ═══════════════════════════════════════════════════════════════════════════ */
    
    /* Cores do Céu - Sunset */
    --sunset-yellow: #FFB347;         /* Amarelo-laranja do horizonte */
    --sunset-orange: #FF6B35;         /* Laranja intenso */
    --sunset-red: #C41E3A;            /* Vermelho profundo */
    --sunset-purple: #6B2C91;         /* Roxo escuro do céu */
    --sunset-dark: #2D1B3D;           /* Roxo muito escuro */
    
    /* Silhuetas e Sombras */
    --silhouette-black: #0A0A0A;      /* Preto das silhuetas */
    --shadow-deep: #1a1a1a;           /* Sombra profunda */
    --shadow-medium: #2d2d2d;         /* Sombra média */
    
    /* Cores Principais (compatibilidade mantida) */
    --primary-color: #C41E3A;         /* Vermelho sangue (do "Z" da imagem) */
    --primary: #C41E3A;               /* Alias para compatibilidade */
    --primary-dark: #8B1538;          /* Vermelho escuro */
    --primary-light: #E63946;          /* Vermelho claro */
    
    /* Cores Secundárias (compatibilidade mantida) */
    --secondary-color: #FF6B35;       /* Laranja intenso */
    --secondary: #FF6B35;             /* Alias */
    --accent-color: #FFB347;          /* Dourado do pôr do sol */
    --accent-gold: #FFB347;           /* Dourado */
    --accent-orange: #FF6B35;         /* Laranja */
    --accent-purple: #6B2C91;         /* Roxo */
    
    /* Backgrounds (compatibilidade mantida) */
    --dark-bg: #0A0A0A;               /* Preto profundo */
    --bg-primary: #0A0A0A;            /* Alias */
    --bg-secondary: #1a1a1a;          /* Preto suave */
    --dark-card: #1a1a1a;             /* Cinza escuro (compatibilidade) */
    --bg-card: rgba(26, 26, 26, 0.8);  /* Card semi-transparente */
    
    /* Bordas */
    --dark-border: #4a4a4a;           /* Cinza médio (compatibilidade) */
    --border: rgba(196, 30, 58, 0.3);  /* Borda vermelha sutil */
    --border-gold: rgba(255, 179, 71, 0.3); /* Borda dourada */
    
    /* Textos (compatibilidade mantida) */
    --text-muted: #9CA3AF;            /* Cinza médio */
    --text-light: #F5F5F5;            /* Branco suave */
    --text-primary: #F5F5F5;          /* Branco suave */
    --text-secondary: #D4D4D4;        /* Cinza claro */
    --text-gold: #FFB347;             /* Dourado */
    
    /* Estados (compatibilidade mantida) */
    --success-color: #16a34a;         /* Verde mais suave */
    --warning-color: #FF6B35;         /* Laranja alerta */
    --danger-color: #C41E3A;          /* Vermelho sangue */
    --info-color: #2563eb;             /* Azul mais suave */
    
    /* Cores específicas (compatibilidade mantida) */
    --blood-red: #C41E3A;             /* Vermelho sangue */
    --rust-orange: #FF6B35;           /* Laranja */
    --charcoal: #4a4a4a;              /* Carvão */
    --bone-white: #F5F5F5;            /* Branco suave */
    --shadow-dark: #1a1a1a;           /* Sombra escura */
}

/* Base Styles */
body {
    font-family: 'Rajdhani', 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Otimização de performance */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background com gradiente de pôr do sol (sutil) - Otimizado */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, 
            var(--sunset-dark) 0%,
            var(--sunset-purple) 20%,
            var(--sunset-red) 40%,
            var(--sunset-orange) 60%,
            var(--sunset-yellow) 80%,
            var(--sunset-dark) 100%
        );
    opacity: 0.12;
    z-index: -2;
    pointer-events: none;
    /* Otimização: força aceleração de hardware */
    transform: translateZ(0);
    will-change: opacity;
}

/* Overlay escuro para contraste - Otimizado */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-primary) 100%);
    z-index: -1;
    pointer-events: none;
    /* Otimização: força aceleração de hardware */
    transform: translateZ(0);
}

/* Typography */
.font-gamer {
    font-family: 'Orbitron', monospace;
}

.font-display {
    font-family: 'Bebas Neue', 'Orbitron', sans-serif;
    letter-spacing: 0.15em;
}

.font-mono {
    font-family: 'Orbitron', monospace;
}

/* Typography - Text Gradient (Sunset Style) */
.text-gradient {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(196, 30, 58, 0.5);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', 'Rajdhani', 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

/* Z-index para conteúdo das páginas sobre e regras */
.hero-section .container,
.hero-section-shop .container {
    position: relative;
    z-index: 10;
}

.hero-section .text-gradient,
.hero-section-shop .text-gradient,
.hero-section .display-1 .text-gradient {
    position: relative;
    z-index: 15;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
}

.hero-section .lead,
.hero-section-shop .lead {
    position: relative;
    z-index: 15;
}

/* Hero Badge - Sunset Style */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: rgba(196, 30, 58, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.3);
    position: relative;
    z-index: 10;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulseSunset 2s infinite;
    box-shadow: 0 0 10px var(--accent-gold);
}


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

.hero-subtitle {
    color: var(--text-secondary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 10;
}

/* Text Titulo (consolidated) */
.text-titulo,
.hero-section .text-titulo,
span.text-titulo[data-i18n="hero.subtitle"] {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3) !important;
}

.hero-section .fw-bold .text-gradient {
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Força a cor para o título específico */
.hero-section .display-1.fw-bold.mb-4.text-shadow .text-gradient {
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3) !important;
}

/* Text gradient for hero subtitle (consolidated) */
span.text-gradient[data-i18n="hero.subtitle"] {
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3) !important;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.text-shadow-lg {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

/* Background Gradients */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--dark-bg), var(--dark-card));
}

/* Hero Section - Sunset Style */
.hero-section {
    min-height: 85vh;
    background: 
        linear-gradient(180deg, 
            rgba(10, 10, 10, 0.9) 0%,
            rgba(43, 27, 61, 0.7) 30%,
            rgba(196, 30, 58, 0.5) 60%,
            rgba(255, 107, 53, 0.4) 80%,
            rgba(255, 179, 71, 0.3) 100%
        ),
        url('../imgs/legadoz_back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 120px; /* Compensar menu fixo + espaçamento padrão */
    padding-bottom: 4rem;
    overflow: hidden;
}

/* Ajustar espaçamento quando navbar está scrolled (logo pequena) */
.navbar.scrolled ~ main .hero-section {
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
    /* Otimização: força aceleração de hardware */
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 2;
}

/* Efeito de partículas de poeira sutil */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(196, 30, 58, 0.03) 2px, rgba(196, 30, 58, 0.03) 4px);
    z-index: 3;
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Cards */
.card {
    /* Otimização: transições apenas em propriedades específicas */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    background: var(--dark-card);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transform: translateZ(0);
}

/* Server card with background image - remove extra space */
.card.position-relative[style*="overflow"] {
    height: auto;
}

.card.position-relative[style*="overflow"] .card-body[style*="min-height"] {
    height: auto;
    min-height: auto;
}

@media (min-width: 992px) {
    .card.position-relative[style*="overflow"] .card-body[style*="min-height"] {
        min-height: 400px !important;
    }
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(196, 30, 58, 0.3);
    border-color: var(--accent-gold);
}

/* Card Sunset Style - para novos cards */
.card-sunset {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card-sunset::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--accent-gold) 20%,
        var(--primary) 50%,
        var(--accent-gold) 80%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-sunset:hover::before {
    opacity: 1;
}

.card-sunset:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(196, 30, 58, 0.4),
        0 0 60px rgba(255, 179, 71, 0.2);
}

.server-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

/* Buttons */
.btn {
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: 2px solid var(--primary);
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 
        0 4px 20px rgba(196, 30, 58, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 40px rgba(196, 30, 58, 0.7),
        0 0 50px rgba(255, 179, 71, 0.4);
    color: var(--text-primary);
    border-color: var(--accent-gold);
}

.btn-outline-light {
    border: 2px solid var(--border);
    color: var(--text-primary);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-light:hover {
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.2) 0%,
        rgba(255, 107, 53, 0.2) 100%
    );
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(196, 30, 58, 0.5),
        0 0 40px rgba(255, 179, 71, 0.3);
}

/* DZLCOIN Button - Sunset Style */
.btn-dzlcoin {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    border: 2px solid var(--accent-gold);
    color: var(--bg-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 
        0 4px 20px rgba(255, 179, 71, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-dzlcoin::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.6s ease;
}

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

.btn-dzlcoin:hover {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 40px rgba(255, 179, 71, 0.7),
        0 0 50px rgba(255, 107, 53, 0.4);
    color: var(--bg-primary);
    border-color: var(--accent-orange);
}

/* VIP Button - Sunset Style */
.btn-vip {
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.2) 0%,
        rgba(255, 107, 53, 0.2) 100%
    );
    border: 2px solid var(--primary);
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 
        0 4px 15px rgba(196, 30, 58, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.btn-vip:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
    box-shadow: 
        0 8px 30px rgba(196, 30, 58, 0.5),
        0 0 40px rgba(255, 179, 71, 0.3);
    color: var(--accent-gold);
}

/* Mobile Menu Buttons - Sunset Style */
.btn-dzlcoin-mobile,
.nav-btn-mobile.btn-dzlcoin {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    border: 2px solid var(--accent-gold);
    color: var(--bg-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 
        0 4px 20px rgba(255, 179, 71, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    /* Otimização: transições apenas em propriedades específicas */
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    transform: translateZ(0);
}

.btn-dzlcoin-mobile:hover,
.nav-btn-mobile.btn-dzlcoin:hover {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(255, 179, 71, 0.7);
    color: var(--bg-primary);
    border-color: var(--accent-orange);
}

.btn-vip-mobile,
.nav-btn-mobile.btn-vip {
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.2) 0%,
        rgba(255, 107, 53, 0.2) 100%
    );
    border: 2px solid var(--primary);
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 
        0 4px 15px rgba(196, 30, 58, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    /* Otimização: transições apenas em propriedades específicas */
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, color 0.4s ease;
    transform: translateZ(0);
}

.btn-vip-mobile:hover,
.nav-btn-mobile.btn-vip:hover {
    transform: translateY(-2px);
    border-color: var(--accent-gold);
    box-shadow: 
        0 8px 30px rgba(196, 30, 58, 0.5),
        0 0 40px rgba(255, 179, 71, 0.3);
    color: var(--accent-gold);
}

/* Form Controls */
.form-control, .form-select {
    background-color: var(--dark-card);
    border-color: var(--dark-border);
    color: #f8fafc;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background-color: var(--dark-card);
    border-color: var(--primary-color);
    color: #f8fafc;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Input Groups */
.input-group-text {
    background-color: var(--dark-card);
    border-color: var(--dark-border);
    color: var(--text-muted);
}

/* Badges - Sunset Style */
.badge {
    font-weight: 500;
    font-family: 'Bebas Neue', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
}

.badge.bg-danger {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color: var(--text-light) !important;
    box-shadow: 0 2px 10px rgba(196, 30, 58, 0.5);
}

.badge.bg-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #15803d 100%) !important;
    color: var(--text-light) !important;
    box-shadow: 0 2px 10px rgba(22, 163, 74, 0.4);
}

.badge.bg-info {
    background: linear-gradient(135deg, var(--info-color) 0%, #1d4ed8 100%) !important;
    color: var(--text-light) !important;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
}

.badge.bg-warning {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%) !important;
    color: var(--silhouette-black) !important;
    box-shadow: 0 2px 10px rgba(255, 179, 71, 0.5);
}

.badge.pulse {
    animation: pulseSunset 2s infinite;
}

/* Accordion - Sunset Style */
.accordion-item {
    background-color: var(--bg-card) !important;
    border: 2px solid var(--border) !important;
    border-radius: 0.5rem !important;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.accordion-button {
    background-color: var(--bg-card) !important;
    color: var(--text-primary) !important;
    border: none;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-card) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.3);
    border-bottom: 2px solid var(--accent-gold);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(196, 30, 58, 0.25);
    border-color: var(--accent-gold);
}

.accordion-body {
    background-color: var(--bg-card);
    color: var(--text-secondary);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.25);
}

.accordion-body {
    background-color: var(--dark-card);
    color: var(--text-muted);
}

/* Modal */
.modal-content {
    background-color: var(--dark-card);
    border-color: var(--dark-border);
}

.modal-header {
    border-bottom-color: var(--dark-border);
}

.modal-footer {
    border-top-color: var(--dark-border);
}

/* Toast */
.toast {
    background-color: var(--dark-card);
    border-color: var(--dark-border);
    color: #f8fafc;
}

/* Dropdown Menu - Base Styles */
.dropdown-menu {
    background-color: var(--dark-card) !important;
    border: 1px solid var(--dark-border) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    z-index: 1050 !important;
}

.dropdown-item {
    color: #ffffff !important;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem !important;
}

.dropdown-item:hover, 
.dropdown-item:focus {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.dropdown-item.active {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.dropdown-menu .dropdown-item i {
    margin-right: 0.5rem;
}

/* When dropdown is SHOWN - Force background */
.dropdown.show .dropdown-menu,
.dropdown.show > .dropdown-menu {
    background-color: var(--dark-card) !important;
    background: var(--dark-card) !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

/* Navbar dropdown specific styles when shown */
.navbar .dropdown.show .dropdown-menu,
.navbar-dark .dropdown.show .dropdown-menu {
    background-color: var(--dark-card) !important;
    background: var(--dark-card) !important;
    opacity: 1 !important;
    border: 1px solid var(--dark-border) !important;
}

/* Dropdown toggle button when open */
.navbar .dropdown.show > .dropdown-toggle,
.navbar .dropdown.show .dropdown-toggle {
    background-color: rgba(30, 41, 59, 0.5) !important;
    border-radius: 5px;
    color: white !important;
}

/* Ensure dropdown has proper styling in navbar */
.navbar .dropdown-menu,
.navbar-dark .dropdown-menu {
    background-color: var(--dark-card) !important;
    border-color: var(--dark-border) !important;
    margin-top: 0.5rem !important;
}

/* Force white text for language dropdown items */
.navbar .dropdown-menu .dropdown-item,
.navbar-dark .dropdown-menu .dropdown-item,
#languageDropdown,
#languageDropdownMobile,
.navbar .dropdown-toggle,
.navbar-dark .dropdown-toggle {
    color: #ffffff !important;
}

.navbar .dropdown-menu .dropdown-item i,
.navbar-dark .dropdown-menu .dropdown-item i {
    color: #ffffff !important;
}

/* Fix for all dropdown menus to have dark background */
ul.dropdown-menu,
.dropdown-menu.show,
.dropdown-menu[data-bs-popper] {
    background-color: var(--dark-card) !important;
    background: var(--dark-card) !important;
}

/* Floating Discord Button */
.floating-discord {
    position: fixed;
    z-index: 1000;
}

.floating-discord .btn,
.floating-discord .btn-discord,
.btn-discord.position-fixed {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    animation: float 3s ease-in-out infinite !important;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4) !important;
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    z-index: 1000 !important;
    padding: 0 !important;
    border: none !important;
}

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

/* Loading Animation */
.loading-dots {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 20px;
}

.loading-dots div {
    position: absolute;
    top: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary-color);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading-dots div:nth-child(1) {
    left: 8px;
    animation: loading-dots1 0.6s infinite;
}

.loading-dots div:nth-child(2) {
    left: 8px;
    animation: loading-dots2 0.6s infinite;
}

.loading-dots div:nth-child(3) {
    left: 32px;
    animation: loading-dots2 0.6s infinite;
}

.loading-dots div:nth-child(4) {
    left: 56px;
    animation: loading-dots3 0.6s infinite;
}

@keyframes loading-dots1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes loading-dots3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes loading-dots2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

/* Product Grid */
#products-grid.row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
}

#products-grid .col {
    display: flex !important;
    flex-direction: column;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    width: 100% !important;
    margin-bottom: 1rem;
}

/* Small screens - 2 columns */
@media (min-width: 576px) {
    #products-grid .col {
        width: 50% !important;
    }
}

/* Medium screens - 3 columns */
@media (min-width: 768px) {
    #products-grid .col {
        width: 33.333333% !important;
    }
}

/* Large screens - 4 columns */
@media (min-width: 992px) {
    #products-grid .col {
        width: 25% !important;
    }
}

.product-card {
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.card-img-top {
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    /* Hero Section adjustments */
    .hero-section, .hero-section-shop {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .display-2 {
        font-size: 2.5rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
    
    /* Cards */
    .coin-card {
        margin-bottom: 1rem;
    }
    
    /* Buttons */
    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Hero overlay adjustment for smaller tablets */
    .hero-overlay {
        background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
    }
    
    /* Section padding */
    section.py-5 {
        padding: 3rem 0 !important;
    }
    
    /* Footer adjustments for tablets */
    footer .container {
        padding: 3rem 1.5rem;
    }
    
    footer img {
        height: 60px;
    }
}

@media (max-width: 768px) {
    /* Fix alignment for cash icon in buttons on mobile */
    .coin-card .btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem;
    }
    
    .coin-card .btn i {
        line-height: 1 !important;
        vertical-align: middle !important;
        display: inline-block !important;
    }
    /* Hero Section */
    .hero-section {
        min-height: 70vh;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .hero-section .container {
        padding-top: 3rem;
    }
    
    .hero-section-shop {
        padding-top: 5rem;
        padding-bottom: 1.5rem;
        min-height: 70vh;
    }
    
    .hero-section-shop .container {
        padding-top: 1rem;
        padding-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-section-shop .row {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero-section-shop .col-12 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-section-shop .display-4 {
        font-size: 2rem;
        margin-bottom: 0.75rem !important;
        text-align: center;
    }
    
    .hero-section-shop .lead {
        font-size: 1rem;
        margin-bottom: 1.25rem !important;
        text-align: center;
        width: 100%;
    }
    
    .hero-section-shop .filter-bar-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 0;
    }
    
    .hero-section-shop .btn-group {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Typography */
    .display-2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .h2 {
        font-size: 1.25rem;
    }
    
    .display-3 {
        font-size: 1.75rem;
    }
    
    .display-4 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    /* Center content in hero */
    .hero-section .container > .row > .col-12 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-section .d-flex.flex-column.flex-sm-row.gap-3 {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    /* Buttons */
    .btn-lg {
        font-size: 0.95rem;
        padding: 0.65rem 1.25rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .d-flex.flex-column.flex-sm-row.gap-3 {
        flex-direction: column !important;
    }
    
    /* Server Info Card */
    .card.bg-dark.bg-opacity-30 {
        max-width: 100% !important;
        margin: 2rem auto !important;
        width: 100%;
    }
    
    /* Stats Cards */
    .card-body h6 {
        font-size: 0.85rem;
    }
    
    /* Video Section */
    .ratio {
        margin: 1rem 0;
    }
    
    /* Badges */
    .badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

@media (max-width: 576px) {
    /* Header/Navbar */
    nav.navbar {
        padding: 0.5rem 0;
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(10px);
    }
    
    .navbar-brand img {
        height: 75px !important;
    }
    
    .navbar-nav {
        align-items: flex-start;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }
    
    .navbar-nav .btn {
        margin-left: 0 !important;
        margin-top: 0.5rem;
        width: auto;
        max-width: fit-content;
    }
    
    .navbar-nav .dropdown-toggle {
        margin-left: 0 !important;
    }
    
    .dropdown-menu {
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 60vh;
        padding-top: 6rem !important;
        padding-bottom: 4rem;
    }
    
    .hero-section .container {
        padding-top: 4rem !important;
    }
    
    .hero-section-shop {
        padding-top: 6rem !important;
        padding-bottom: 1rem;
        min-height: 60vh;
    }
    
    .hero-section-shop .container {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-section-shop .row {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
    }
    
    .hero-section-shop .col-12 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0;
    }
    
    .hero-section-shop .display-4 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem !important;
        text-align: center;
        width: 100%;
    }
    
    .hero-section-shop .lead {
        font-size: 0.9rem;
        margin-bottom: 1rem !important;
        text-align: center;
        width: 100%;
    }
    
    .hero-section-shop .filter-bar-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 0;
        padding: 0;
    }
    
    .hero-section-shop .btn-group {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    /* Container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Ensure hero content is centered and has proper spacing */
    .hero-section .container .row {
        margin: 0 auto;
    }
    
    .hero-section .container .row .col-12 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }
    
    /* Badge spacing on mobile */
    .hero-section .badge {
        margin-bottom: 1rem;
    }
    
    /* Title spacing on mobile */
    .hero-section .display-2 {
        margin-top: 0.5rem;
        margin-bottom: 1rem !important;
    }
    
    /* Typography */
    .display-2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem !important;
    }
    
    .h2 {
        font-size: 1.1rem;
    }
    
    .display-3 {
        font-size: 1.5rem;
    }
    
    .display-4 {
        font-size: 1.35rem;
    }
    
    .lead {
        font-size: 0.95rem;
        margin-bottom: 1.5rem !important;
    }
    
    /* Buttons */
    .btn-lg {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Botões do hero - menos espaçamento no mobile */
    .hero-section .d-flex.gap-4 {
        gap: 0.5rem !important;
    }
    
    /* Scroll indicator mais baixo no mobile */
    .hero-section .scroll-indicator {
        bottom: 0.5rem !important;
    }
    
    /* Cards */
    .card-body {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    /* Server Info */
    .text-sm {
        font-size: 0.85rem;
    }
    
    /* Badges */
    .badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
    
    /* Stats Section */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    /* Coin Cards */
    .coin-icon i {
        font-size: 3rem !important;
    }
    
    .coin-card h3 {
        font-size: 1.25rem;
    }
    
    /* Server Info Card */
    .card.bg-dark.bg-opacity-30 {
        margin: 1.5rem 0 !important;
        max-width: 100%;
    }
    
    .row.g-3 {
        gap: 0.5rem !important;
    }
    
    /* Footer */
    footer {
        font-size: 0.875rem;
    }
    
    footer .container {
        padding: 2rem 1rem;
    }
    
    footer img {
        height: 50px !important;
        margin-bottom: 0.75rem !important;
    }
    
    footer .btn-sm {
        padding: 0.375rem 0.75rem;
        font-size: 0.85rem;
    }
    
    footer .row.align-items-center {
        text-align: center !important;
    }
    
    footer .col-md-6 {
        margin-bottom: 1rem;
    }
    
    /* Stats Section */
    .bg-dark .row.g-4 > .col-6,
    .bg-dark .row.g-4 > .col-md-3 {
        margin-bottom: 1rem;
    }
    
    .bg-dark .card {
        height: 100%;
    }
    
    .bg-dark .card-body {
        padding: 1rem;
    }
    
    .bg-dark .card-body i {
        font-size: 1.5rem !important;
    }
    
    .bg-dark .card-body .h3 {
        font-size: 1.5rem;
    }
    
    /* Video */
    .ratio-16x9 {
        min-height: 200px;
    }
    
    /* Image in cards */
    img.w-100.h-100 {
        max-height: 250px;
        object-fit: cover;
    }
    
    /* Sections padding */
    section.py-5 {
        padding: 2rem 0 !important;
    }
    
    section.py-3 {
        padding: 1.5rem 0 !important;
    }
}

@media (max-width: 400px) {
    .display-2 {
        font-size: 1.5rem;
    }
    
    .display-4 {
        font-size: 1.2rem;
    }
    
    .btn-lg {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    /* Extra small adjustments */
    .navbar-brand img {
        height: 70px !important;
    }
    
    .badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
    
    .lead {
        font-size: 0.9rem;
    }
    
    .text-sm {
        font-size: 0.8rem !important;
    }
    
    .font-monospace {
        font-size: 0.85rem;
        word-break: break-all;
    }
    
    /* Coin cards extra small */
    .coin-card .card-body {
        padding: 1rem 0.75rem;
    }
    
    .coin-icon i {
        font-size: 2.5rem !important;
    }
    
    .coin-card h3 {
        font-size: 1.1rem;
    }
    
    .coin-card .h3 {
        font-size: 1.5rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-card);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) 1;
}

.shadow-primary {
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.shadow-secondary {
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Glow Effects */
.glow-primary {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.glow-secondary {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

/* Hover Effects */
.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow:hover {
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.4);
}

/* Text Effects */
.text-glow {
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* Custom Bootstrap Overrides - Sunset Style */
.navbar {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border);
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

/* Prevent menu duplication on desktop */
@media (min-width: 992px) {
    .navbar-collapse.d-lg-none {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 4px 40px rgba(196, 30, 58, 0.3);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar.scrolled .navbar-content {
    min-height: 100px;
}

.nav-link {
    /* Otimização: transições apenas em propriedades específicas */
    transition: color 0.3s ease, transform 0.3s ease;
    color: var(--text-secondary) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    position: relative;
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--accent-gold) !important;
    text-shadow: none;
}

.nav-link:hover::after {
    width: 80%;
}

/* New Menu Layout Styles */
.navbar-content {
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-nav-left {
    flex: 0 0 auto;
    width: auto;
    order: 1;
}

.navbar-nav-left .navbar-nav {
    flex-direction: row;
    gap: 0.5rem;
    margin: 0;
}

.navbar-brand {
    position: relative;
    order: 2;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    max-width: 400px;
    pointer-events: auto;
    margin: 0 auto;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-logo {
    height: auto;
    max-height: 180px;
    width: auto;
    max-width: 300px;
    display: block;
    transition: all 0.3s ease;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(196, 30, 58, 0.6));
}

.navbar-logo:hover {
    filter: drop-shadow(0 0 25px rgba(196, 30, 58, 0.9));
}

.navbar-nav-right {
    flex: 0 0 auto;
    width: auto;
    order: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* Ensure equal spacing on both sides for logo centering */
@media (min-width: 992px) {
    .navbar-nav-left {
        flex: 1 1 0;
        display: flex;
        justify-content: flex-start;
        min-width: 0;
    }
    
    .navbar-nav-right {
        flex: 1 1 0;
        display: flex;
        justify-content: flex-end;
        min-width: 0;
    }
    
    .navbar-brand {
        position: relative;
        margin: 0;
        padding: 0.5rem 0;
    }
    
    .navbar.scrolled .navbar-brand {
        padding: 0.5rem 0;
    }
    
    .navbar.scrolled .navbar-logo {
        max-height: 80px !important;
        max-width: 200px !important;
    }
}

/* Responsive adjustments for new layout */
@media (max-width: 991px) {
    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .navbar-brand {
        position: relative;
        transform: none;
        margin: 0 auto !important;
        padding: 0.5rem 0 !important;
        order: 2;
        flex: 0 0 auto;
    }
    
    .navbar-logo {
        max-height: 80px !important;
        max-width: 200px !important;
    }
    
    .navbar-content {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .navbar-toggler {
        order: 1 !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-brand {
        order: 2 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .navbar-nav-right {
        order: 3 !important;
    }
    
    /* Language dropdown on mobile - right side, outside hamburger menu */
    .language-dropdown-mobile,
    .navbar-content > .language-dropdown-mobile,
    .d-lg-none.order-3.language-dropdown-mobile {
        order: 3 !important;
        margin-left: auto !important;
        position: relative !important;
        z-index: 1050 !important;
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }
    
    .language-dropdown-mobile .dropdown {
        position: relative !important;
    }
    
    .language-dropdown-mobile .dropdown-menu {
        right: 0 !important;
        left: auto !important;
        margin-top: 0.5rem !important;
        position: absolute !important;
        top: 100% !important;
        z-index: 1051 !important;
    }
    
    .language-dropdown-mobile .nav-link.dropdown-toggle {
        padding: 0.5rem 0.75rem !important;
        color: #ffffff !important;
        white-space: nowrap !important;
    }
    
    /* CRITICAL: Ensure language dropdown is NEVER inside collapse menu */
    .navbar-collapse .language-dropdown-mobile,
    .navbar-collapse .d-lg-none.order-3,
    .navbar-collapse #languageDropdownMobile,
    .navbar-collapse [id="languageDropdownMobile"],
    #navbarNav .language-dropdown-mobile {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Ensure it stays in navbar-content, not in collapse */
    .navbar-content {
        position: relative;
    }
    
    /* Double check - hide any language dropdown inside collapse */
    .collapse .language-dropdown-mobile,
    .navbar-collapse .language-dropdown-mobile {
        display: none !important;
    }
    
    /* Hide old collapse menu - replaced by drawer */
    .navbar-collapse {
        display: none !important;
    }
    
    /* Floating Discord Button - Move up on mobile */
    .floating-discord .btn,
    .floating-discord .btn-discord,
    .btn-discord.position-fixed {
        bottom: 7.5rem !important;
        right: 1.5rem !important;
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: #5865F2 !important;
        border-color: #5865F2 !important;
        color: #ffffff !important;
        box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4) !important;
        z-index: 1000 !important;
    }
    
    .floating-discord .btn:hover,
    .floating-discord .btn-discord:hover,
    .btn-discord.position-fixed:hover {
        background-color: #4752C4 !important;
        border-color: #4752C4 !important;
    }
    
}

/* ========================================
   DRAWER MENU - SIDEBAR LATERAL SUNSET
   ======================================== */

/* Drawer Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer Menu Container */
.drawer-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.98) 0%,
        rgba(26, 26, 26, 0.95) 50%,
        rgba(10, 10, 10, 0.98) 100%
    );
    /* Otimização: blur reduzido para melhor performance */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-left: 3px solid var(--accent-gold);
    box-shadow: 
        -10px 0 50px rgba(0, 0, 0, 0.8),
        -5px 0 30px rgba(196, 30, 58, 0.4),
        0 0 20px rgba(255, 179, 71, 0.2);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    /* Otimização: transição apenas em right (mais simples que transform) */
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    /* Otimização: força aceleração de hardware */
    transform: translateZ(0);
}

.drawer-menu.active {
    right: 0;
}

/* Drawer Scrollbar */
.drawer-menu::-webkit-scrollbar {
    width: 6px;
}

.drawer-menu::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.5);
}

.drawer-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-gold), var(--primary));
    border-radius: 3px;
}

.drawer-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary), var(--accent-gold));
}

/* Drawer Header */
.drawer-header {
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--border);
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.1) 0%,
        rgba(255, 179, 71, 0.05) 100%
    );
    position: relative;
}

.drawer-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--accent-gold) 50%,
        transparent 100%
    );
}

.drawer-logo img {
    height: auto;
    max-height: 80px;
    max-width: 200px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 179, 71, 0.6));
    transition: filter 0.3s ease;
    object-fit: contain;
}

.drawer-logo:hover img {
    filter: drop-shadow(0 0 25px rgba(255, 179, 71, 0.9));
}

.drawer-close {
    background: rgba(196, 30, 58, 0.2);
    border: 2px solid var(--primary);
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* Otimização: transições apenas em propriedades específicas */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.2rem;
    transform: translateZ(0);
}

.drawer-close:hover {
    background: var(--primary);
    border-color: var(--accent-gold);
    color: var(--text-primary);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.6);
}

/* Drawer Navigation */
.drawer-nav {
    flex: 1;
    padding: 1.5rem 0;
    overflow-y: auto;
}

.drawer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-nav-item {
    margin: 0;
    padding: 0;
}

.drawer-nav-item.drawer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--border) 20%,
        var(--accent-gold) 50%,
        var(--border) 80%,
        transparent 100%
    );
    margin: 1rem 1.5rem;
    opacity: 0.5;
}

.drawer-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    /* Otimização: transições apenas em propriedades específicas */
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, padding-left 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
    transform: translateZ(0);
}

.drawer-nav-link i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    color: var(--text-muted);
    /* Otimização: transições apenas em propriedades específicas */
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
    transform: translateZ(0);
}

.drawer-nav-link span {
    flex: 1;
}

.drawer-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, 
        rgba(255, 179, 71, 0.1) 0%,
        transparent 100%
    );
    transition: width 0.3s ease;
}

.drawer-nav-link:hover {
    color: var(--accent-gold);
    background: rgba(255, 179, 71, 0.05);
    border-left-color: var(--accent-gold);
    padding-left: 2rem;
}

.drawer-nav-link:hover::before {
    width: 100%;
}

.drawer-nav-link:hover i {
    color: var(--accent-gold);
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 179, 71, 0.6);
}

/* Special Links - COINS and VIP */
.drawer-nav-link-coin {
    background: linear-gradient(135deg, 
        rgba(255, 179, 71, 0.1) 0%,
        rgba(255, 107, 53, 0.05) 100%
    );
    border-left-color: var(--accent-gold);
}

.drawer-nav-link-coin:hover {
    background: linear-gradient(135deg, 
        rgba(255, 179, 71, 0.2) 0%,
        rgba(255, 107, 53, 0.1) 100%
    );
    box-shadow: inset 0 0 20px rgba(255, 179, 71, 0.2);
}

.drawer-nav-link-vip {
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.1) 0%,
        rgba(255, 107, 53, 0.05) 100%
    );
    border-left-color: var(--primary);
}

.drawer-nav-link-vip:hover {
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.2) 0%,
        rgba(255, 107, 53, 0.1) 100%
    );
    box-shadow: inset 0 0 20px rgba(196, 30, 58, 0.2);
}

/* Drawer Footer */
.drawer-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--border);
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.8) 0%,
        rgba(26, 26, 26, 0.6) 100%
    );
}

.drawer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, 
        rgba(88, 101, 242, 0.2) 0%,
        rgba(88, 101, 242, 0.1) 100%
    );
    border: 2px solid rgba(88, 101, 242, 0.3);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.drawer-social-link i {
    font-size: 1.3rem;
}

.drawer-social-link:hover {
    background: linear-gradient(135deg, 
        rgba(88, 101, 242, 0.4) 0%,
        rgba(88, 101, 242, 0.2) 100%
    );
    border-color: #5865F2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

/* Hamburger Button - Active State */
.drawer-toggle.active .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 179, 71, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .drawer-menu {
        width: 280px;
    }
    
    .drawer-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .drawer-logo img {
        max-height: 60px;
        max-width: 150px;
    }
    
    .drawer-nav-link {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
}

/* Footer - Sunset Style */
footer {
    background: #0a0a0a;
    border-top: 2px solid var(--accent-gold);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 179, 71, 0.3) 25%,
        var(--accent-gold) 50%,
        rgba(255, 179, 71, 0.3) 75%,
        transparent 100%);
    opacity: 0.8;
    box-shadow: 0 0 20px rgba(255, 179, 71, 0.3);
    z-index: 2;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top, 
            rgba(255, 179, 71, 0.05) 0%, 
            transparent 70%),
        linear-gradient(135deg, 
            rgba(196, 30, 58, 0.03) 0%,
            transparent 50%,
            rgba(255, 179, 71, 0.02) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Footer Logo */
footer img {
    filter: drop-shadow(0 0 10px rgba(255, 179, 71, 0.3));
    transition: filter 0.3s ease;
}

footer img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 179, 71, 0.5));
}

/* Footer Social Buttons */
.btn-social {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.btn-social::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.btn-social:hover::before {
    width: 100%;
    height: 100%;
}

.btn-social i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.btn-discord-footer {
    background: rgba(88, 101, 242, 0.1);
    border-color: #5865F2;
    color: #5865F2;
}

.btn-discord-footer:hover {
    background: #5865F2;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

.btn-youtube-footer {
    background: rgba(255, 0, 0, 0.1);
    border-color: #FF0000;
    color: #FF0000;
}

.btn-youtube-footer:hover {
    background: #FF0000;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

.btn-tiktok-footer {
    background: rgba(0, 0, 0, 0.1);
    border-color: #000000;
    color: #000000;
}

.btn-tiktok-footer:hover {
    background: #000000;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.btn-instagram-footer {
    background: linear-gradient(135deg, 
        rgba(225, 48, 108, 0.1) 0%,
        rgba(131, 58, 180, 0.1) 100%);
    border-color: #E1306C;
    color: #E1306C;
}

.btn-instagram-footer:hover {
    background: linear-gradient(135deg, #E1306C 0%, #833AB4 100%);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
}

/* Footer Section Titles */
.footer-section-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 179, 71, 0.3);
}

/* Footer Links */
.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary));
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-gold) !important;
    text-shadow: 0 0 8px rgba(255, 179, 71, 0.5);
    transform: translateX(5px);
}

.footer-link:hover::after {
    width: 100%;
}

/* Footer Copyright */
footer hr {
    border-color: rgba(255, 179, 71, 0.2);
    margin: 2rem 0;
}

footer .text-white {
    color: var(--text-secondary) !important;
}

footer a.text-primary {
    color: var(--accent-gold) !important;
    transition: all 0.3s ease;
}

footer a.text-primary:hover {
    color: var(--primary) !important;
    text-shadow: 0 0 8px rgba(196, 30, 58, 0.5);
}

/* Feature Icon Images - Coins Page */
.feature-icon-img {
    width: auto;
    height: 150px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(196, 30, 58, 0.5));
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.feature-icon-img:hover {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 0 25px rgba(196, 30, 58, 0.8));
}

/* Ajuste de posicionamento para imagem de inovação */
.feature-icon-img-right {
    object-position: 60% center;
    transform: translateX(15px) translateZ(0);
}

.feature-icon-img-right:hover {
    transform: translateX(15px) scale(1.1) translateY(-5px);
}

/* Responsive - Feature Icons */
@media (max-width: 768px) {
    .feature-icon-img {
        height: 120px;
    }
    
    .feature-icon-img-right {
        transform: translateX(10px) translateZ(0);
    }
    
    .feature-icon-img-right:hover {
        transform: translateX(10px) scale(1.1) translateY(-5px);
    }
}

/* Success/Error States */
.is-valid {
    border-color: var(--success-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.25);
}

.is-invalid {
    border-color: var(--danger-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Custom Animations - Sunset Style */
@keyframes pulseSunset {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px var(--accent-gold);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
        box-shadow: 0 0 20px var(--accent-gold);
    }
}

@keyframes bloodDrip {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(2px);
    }
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--primary) 20%,
        var(--primary-dark) 50%,
        var(--primary) 80%,
        transparent 100%
    );
    opacity: 0.6;
    filter: blur(2px);
}

/* Custom Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Coin Cards - Sunset Style */
.coin-card {
    /* Otimização: transições apenas em propriedades específicas */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border) !important;
    background: var(--bg-card) !important;
    /* Otimização: blur reduzido */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    /* Otimização: força aceleração de hardware */
    transform: translateZ(0);
    will-change: transform;
}

.coin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--accent-gold) 20%,
        var(--primary) 50%,
        var(--accent-gold) 80%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.coin-card:hover::before {
    opacity: 1;
}

.coin-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(196, 30, 58, 0.4),
        0 0 60px rgba(255, 179, 71, 0.2) !important;
    border-color: var(--accent-gold) !important;
}

.coin-icon {
    animation: coinSpin 5s linear infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.coin-icon img {
    display: block;
}

@keyframes coinSpin {
    0%, 100% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
}

/* Product Cards Enhanced */
.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--dark-border) !important;
    background: var(--dark-card) !important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color) !important;
}

.product-card .card-img-top {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
}

.product-card .card-img-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(220, 38, 38, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .card-img-top::before {
    opacity: 1;
}

/* Enhanced text shadow for hero */
.text-shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Hero Section for Shop - Sunset Style */
.hero-section-shop {
    background: 
        linear-gradient(180deg, 
            rgba(10, 10, 10, 0.9) 0%,
            rgba(43, 27, 61, 0.7) 30%,
            rgba(196, 30, 58, 0.5) 60%,
            rgba(255, 107, 53, 0.4) 80%,
            rgba(255, 179, 71, 0.3) 100%
        ),
        url('../imgs/legadoz_back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 185px;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-section-shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
}

.hero-section-shop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(196, 30, 58, 0.03) 2px, rgba(196, 30, 58, 0.03) 4px);
    z-index: 2;
    pointer-events: none;
}

/* Ajustar espaçamento quando navbar está scrolled (logo pequena) */
.navbar.scrolled ~ main .hero-section-shop {
    padding-top: 80px;
}

/* Hero Coin Icon - Página Coins */
.hero-coin-icon {
    position: relative;
    z-index: 15;
    display: inline-block;
    animation: coinFloat 3s ease-in-out infinite;
    transform: translateZ(0);
}

.hero-coin-icon i {
    font-size: 5rem;
    color: var(--accent-gold);
    text-shadow: 
        0 0 20px rgba(255, 179, 71, 0.8),
        0 0 40px rgba(255, 179, 71, 0.5),
        0 0 60px rgba(255, 107, 53, 0.3);
    filter: drop-shadow(0 0 10px rgba(255, 179, 71, 0.6));
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-coin-icon:hover i {
    transform: scale(1.1) rotate(15deg);
}

@keyframes coinFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Hero Badge Coins - Página Coins */
.hero-badge-coins {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: 
        linear-gradient(135deg, 
            rgba(196, 30, 58, 0.15) 0%, 
            rgba(255, 107, 53, 0.1) 50%,
            rgba(196, 30, 58, 0.15) 100%),
        radial-gradient(circle at center, rgba(255, 179, 71, 0.1) 0%, transparent 70%);
    border: 1px solid rgba(255, 179, 71, 0.4);
    border-top: 2px solid rgba(255, 179, 71, 0.6);
    border-radius: 15px 15px 25px 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 
        0 4px 20px rgba(196, 30, 58, 0.3),
        0 0 30px rgba(255, 179, 71, 0.2),
        inset 0 1px 0 rgba(255, 179, 71, 0.3);
    position: relative;
    z-index: 15;
    backdrop-filter: blur(10px);
    font-family: 'Bebas Neue', sans-serif;
    overflow: visible;
    transform: translateZ(0);
}

.hero-badge-coins::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.2) 0%, transparent 70%);
    animation: badgeGlow 3s ease-in-out infinite;
    pointer-events: none;
}

/* Icon Group - Coins */
.badge-coins-icon-group {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon-main {
    color: var(--primary);
    font-size: 1.8rem;
    animation: heartBeat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(196, 30, 58, 0.9));
    position: relative;
    z-index: 3;
}

.badge-icon-coin-1,
.badge-icon-coin-2,
.badge-icon-coin-3 {
    position: absolute;
    color: var(--accent-gold);
    font-size: 0.9rem;
    filter: drop-shadow(0 0 4px rgba(255, 179, 71, 0.8));
    opacity: 0.8;
}

.badge-icon-coin-1 {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    animation: coinFloat1 2s ease-in-out infinite;
    z-index: 1;
}

.badge-icon-coin-2 {
    bottom: -8px;
    left: 20%;
    animation: coinFloat2 2.5s ease-in-out infinite;
    z-index: 1;
}

.badge-icon-coin-3 {
    bottom: -8px;
    right: 20%;
    animation: coinFloat3 2.2s ease-in-out infinite;
    z-index: 1;
}

@keyframes coinFloat1 {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) translateY(-5px) rotate(10deg);
        opacity: 1;
    }
}

@keyframes coinFloat2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-4px) rotate(-10deg);
        opacity: 1;
    }
}

@keyframes coinFloat3 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-4px) rotate(10deg);
        opacity: 1;
    }
}

.hero-badge-coins span {
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 179, 71, 0.5);
}

@keyframes badgeGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(30%, 30%) scale(1.2);
        opacity: 0.6;
    }
}


@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
}

/* Hero Description Box - Página Coins */
.hero-description-box {
    max-width: 700px;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(43, 27, 61, 0.5) 50%,
        rgba(10, 10, 10, 0.7) 100%);
    border: 1px solid rgba(255, 179, 71, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(255, 179, 71, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 15;
    transform: translateZ(0);
}

.hero-description-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(255, 179, 71, 0.1) 0%, 
        transparent 70%);
    border-radius: 20px;
    z-index: -1;
    pointer-events: none;
}

.hero-description-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}

/* Hero VIP Icon - Página VIP */
.hero-vip-icon {
    position: relative;
    z-index: 15;
    display: inline-block;
    animation: vipFloat 3s ease-in-out infinite;
    transform: translateZ(0);
}

.hero-vip-icon i {
    font-size: 5rem;
    color: var(--accent-gold);
    text-shadow: 
        0 0 20px rgba(255, 179, 71, 0.8),
        0 0 40px rgba(255, 179, 71, 0.5),
        0 0 60px rgba(255, 107, 53, 0.3);
    filter: drop-shadow(0 0 10px rgba(255, 179, 71, 0.6));
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-vip-icon:hover i {
    transform: scale(1.1) rotate(15deg);
}

@keyframes vipFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

/* Hero Badge VIP - Página VIP */
.hero-badge-vip {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: 
        linear-gradient(135deg, 
            rgba(255, 179, 71, 0.2) 0%, 
            rgba(255, 107, 53, 0.15) 50%,
            rgba(196, 30, 58, 0.2) 100%),
        linear-gradient(45deg, transparent 30%, rgba(255, 179, 71, 0.1) 50%, transparent 70%);
    border: 1px solid rgba(255, 179, 71, 0.5);
    border-left: 3px solid var(--accent-gold);
    border-right: 3px solid var(--accent-gold);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 
        0 0 25px rgba(255, 179, 71, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 179, 71, 0.15),
        inset -2px 0 10px rgba(255, 179, 71, 0.2),
        inset 2px 0 10px rgba(255, 179, 71, 0.2);
    position: relative;
    z-index: 15;
    backdrop-filter: blur(10px);
    font-family: 'Bebas Neue', sans-serif;
    overflow: hidden;
    transform: translateZ(0);
}

.hero-badge-vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 179, 71, 0.4) 50%, 
        transparent 100%);
    animation: badgeShine 2.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    border-radius: 8px;
    overflow: hidden;
}

/* Icon Group - VIP */
.badge-vip-icon-group {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.badge-vip-icon-group .badge-icon-main {
    color: var(--accent-gold);
    font-size: 2rem;
    animation: lightningPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 179, 71, 0.9));
    position: relative;
    z-index: 3;
}

.badge-icon-star-1,
.badge-icon-star-2,
.badge-icon-star-3 {
    position: absolute;
    color: var(--accent-gold);
    font-size: 0.7rem;
    filter: drop-shadow(0 0 4px rgba(255, 179, 71, 0.8));
    opacity: 0.9;
}

.badge-icon-star-1 {
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    animation: starTwinkle1 2s ease-in-out infinite;
    z-index: 1;
}

.badge-icon-star-2 {
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    animation: starTwinkle2 2.3s ease-in-out infinite;
    z-index: 1;
}

.badge-icon-star-3 {
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    animation: starTwinkle3 2.1s ease-in-out infinite;
    z-index: 1;
}

@keyframes starTwinkle1 {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateX(-50%) scale(1.3);
        opacity: 1;
    }
}

@keyframes starTwinkle2 {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-50%) scale(1.3);
        opacity: 1;
    }
}

@keyframes starTwinkle3 {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-50%) scale(1.3);
        opacity: 1;
    }
}

.hero-badge-vip span {
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(255, 179, 71, 0.6);
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes lightningPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    25% {
        transform: scale(1.3);
        opacity: 0.8;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    75% {
        transform: scale(1.2);
        opacity: 0.9;
    }
}

/* Responsive - Hero Coins e VIP */
@media (max-width: 768px) {
    .hero-coin-icon i,
    .hero-vip-icon i {
        font-size: 3.5rem;
    }
    
    .hero-badge-coins,
    .hero-badge-vip {
        padding: 0.75rem 1.75rem;
        font-size: 0.7rem;
        gap: 0.75rem;
    }
    
    .badge-coins-icon-group,
    .badge-vip-icon-group {
        width: 40px;
        height: 40px;
    }
    
    .badge-icon-main {
        font-size: 1.4rem !important;
    }
    
    .badge-icon-coin-1,
    .badge-icon-coin-2,
    .badge-icon-coin-3,
    .badge-icon-star-1,
    .badge-icon-star-2,
    .badge-icon-star-3 {
        font-size: 0.7rem !important;
    }
    
    .hero-description-box {
        padding: 1.5rem 1.75rem;
        margin: 0 1rem;
    }
    
    .hero-description-box p {
        font-size: 1rem;
    }
}

/* Contact Gradient - Same as header */
.contact-gradient {
    background: linear-gradient(135deg, #0c0a0a 0%, #1c1917 25%, #1a1614 50%, #1c1917 75%, #0c0a0a 100%) !important;
    border: 1px solid rgba(220, 38, 38, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(220, 38, 38, 0.05) !important;
}

/* Discord Button - Original Discord Blue */
.btn-discord,
.floating-discord .btn,
.floating-discord .btn-discord,
.btn-discord.position-fixed {
    background-color: #5865F2 !important;
    border-color: #5865F2 !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.btn-discord:hover,
.floating-discord .btn:hover,
.floating-discord .btn-discord:hover,
.btn-discord.position-fixed:hover {
    background-color: #4752C4 !important;
    border-color: #4752C4 !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6) !important;
}

.btn-discord:focus,
.floating-discord .btn:focus,
.floating-discord .btn-discord:focus,
.btn-discord.position-fixed:focus {
    background-color: #4752C4 !important;
    border-color: #4752C4 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(88, 101, 242, 0.5) !important;
}

.btn-discord i,
.floating-discord .btn i,
.floating-discord .btn-discord i,
.btn-discord.position-fixed i {
    color: #ffffff !important;
    font-size: 1.5rem !important;
}

/* Discord Dialog Styling */
.discord-dialog {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 280px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #5865F2;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    animation: slideInUp 0.3s ease-out;
}

.discord-dialog-content {
    padding: 16px;
    color: white;
    text-align: center;
}

.discord-dialog-content p {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.discord-dialog-content .btn-discord {
    font-size: 12px;
    padding: 6px 12px;
}

.btn-close-discord {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.btn-close-discord:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
}

/* YouTube Videos Carousel */
#youtubeVideosCarousel {
    max-width: 1000px;
    margin: 0 auto;
}

#youtubeVideosCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

#youtubeVideosCarousel .ratio {
    background: #000;
}

#youtubeVideosCarousel .card-footer {
    min-height: 70px;
}

#youtubeThumbnailsGrid {
    max-width: 1200px;
    margin: 0 auto;
}

#youtubeThumbnailsGrid .video-thumbnail {
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    border: 2px solid transparent;
    border-radius: 0.375rem;
    padding: 0.25rem;
}

#youtubeThumbnailsGrid .video-thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    opacity: 1;
}

#youtubeThumbnailsGrid .video-thumbnail.active {
    border-color: var(--primary-color);
    opacity: 1;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

#youtubeThumbnailsGrid .video-thumbnail:not(.active) {
    opacity: 0.7;
}

#youtubeThumbnailsGrid .video-thumbnail img {
    transition: transform 0.2s;
}

#youtubeThumbnailsGrid .video-thumbnail:hover img {
    transform: scale(1.02);
}

/* Responsividade para thumbnails */
@media (max-width: 768px) {
    #youtubeThumbnailsGrid .col-lg-2 {
        flex: 0 0 auto;
        width: 33.333333%;
    }
}

@media (max-width: 576px) {
    #youtubeThumbnailsGrid .col-lg-2 {
        flex: 0 0 auto;
        width: 50%;
    }
}

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

.hero-section-shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23dc2626" stop-opacity="0.1"/><stop offset="100%" stop-color="%23dc2626" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}
