:root {
    --reborn-red: #ff3b3b;
    --reborn-blue: #00d2ff;
    --reborn-dark: #05070a;
}

body {
    background-color: var(--reborn-dark);
    color: #f8fafc;
    overflow-x: hidden;
}

.font-gaming {
    font-family: 'Orbitron', sans-serif;
}

.glass {
    background: rgba(10, 15, 25, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Efeitos de Glow */
.glow-red {
    box-shadow: 0 0 30px rgba(255, 59, 59, 0.25);
}

.glow-blue {
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.35);
}

.text-glow-dual {
    background: linear-gradient(90deg, var(--reborn-blue), var(--reborn-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
}

.dual-border {
    position: relative;
    border: none !important;
}

.dual-border::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(to right, var(--reborn-blue), var(--reborn-red));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 40s linear infinite;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--reborn-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--reborn-blue), var(--reborn-red));
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #00d2ff, #ff3b3b);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Modal Animations */
.fade-in {
    opacity: 1 !important;
}

.zoom-in {
    transform: scale(1) !important;
}

#pokedex-modal.hidden {
    display: none;
    pointer-events: none;
}
/* --- SISTEMA DE CORES POKÉDEX VERSE --- */

/* Tipos Básicos e Elementais */
.NORMAL   { background-color: #A8A878 !important; color: white; }
.GRAMA { background-color: #10b981 !important; box-shadow: 0 0 15px rgba(16, 185, 129, 0.4); }
.FOGO { background-color: #ea580c !important; box-shadow: 0 0 15px rgba(234, 88, 12, 0.4); }
.ÁGUA { background-color: #3b82f6 !important; box-shadow: 0 0 15px rgba(59, 130, 246, 0.4); }
.ELÉTRICO { background-color: #caa616 !important; box-shadow: 0 0 15px rgba(250, 204, 21, 0.8); }
.GELO { background-color: #98D8D8 !important; box-shadow: 0 0 15px rgba(152, 216, 216, 0.4); color: #000 !important; }

/* Tipos Físicos e Naturais */
.TERRA { background-color: #E0C068 !important; box-shadow: 0 0 15px rgba(224, 192, 104, 0.4); }
.PEDRA { background-color: #B8A038 !important; box-shadow: 0 0 15px rgba(184, 160, 56, 0.4); }
.LUTADOR { background-color: #C03028 !important; box-shadow: 0 0 15px rgba(192, 48, 40, 0.4); }
.VOADOR { background-color: #818cf8 !important; box-shadow: 0 0 15px rgba(129, 140, 248, 0.4); }
.INSETO { background-color: #A8B820 !important; box-shadow: 0 0 15px rgba(168, 184, 32, 0.4); }
.AÇO { background-color: #B8B8D0 !important; box-shadow: 0 0 15px rgba(184, 184, 208, 0.4); color: #000 !important; }

/* Tipos Especiais e Místicos */
.VENENO { background-color: #a855f7 !important; box-shadow: 0 0 15px rgba(168, 85, 247, 0.4); }
.PSÍQUICO { background-color: #ec4899 !important; box-shadow: 0 0 15px rgba(236, 72, 153, 0.4); }
.FANTASMA { background-color: #4c1d95 !important; box-shadow: 0 0 15px rgba(76, 29, 149, 0.4); }
.DRAGÃO { background-color: #4338ca !important; box-shadow: 0 0 15px rgba(67, 56, 202, 0.4); }
.FADA { background-color: #EE99AC !important; box-shadow: 0 0 15px rgba(238, 153, 172, 0.4); }

/* Ajuste de visibilidade para tipos claros */
.AÇO, .GELO {
    color: #05070a !important; /* Texto escuro para contraste */
}

/* Estilo padrão para o texto dos badges */
.type-badge, span[class*="font-black"] {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
