/* --- Sistema de Estilos Imersivos: Treinadores (Aventura Clássica) --- */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Cores de Aventura */
    --primary: #1E40AF;
    /* Azul Profundo (Confiança e Exploração) */
    --primary-light: #3B82F6;
    --secondary: #DC2626;
    /* Vermelho Aventura (Ação e Insígnias) */
    --accent: #F59E0B;
    /* Amarelo Energia (Relâmpagos e Vitalidade) */
    --success: #10B981;
    /* Verde Natureza (Grama Alta e Florestas) */
    --danger: #EF4444;
    /* Perigo / HP Baixo */

    /* Tons Neutros e Diários */
    --bg-light: #F8FAFC;
    --bg-journal: #FCFAF6;
    /* Fundo creme sutil (Diário de Treinador) */
    --text-dark: #0F172A;
    --text-muted: #475569;
    --border: #E2E8F0;
    --border-tatile: #CBD5E1;

    /* Sombras e Profundidade Retrô-Moderna */
    --shadow-flat: 0 4px 0 0 #E2E8F0;
    --shadow-btn-primary: 0 4px 0 0 #1D4ED8;
    --shadow-btn-success: 0 4px 0 0 #047857;
    --shadow-btn-danger: 0 4px 0 0 #B91C1C;
    --shadow-premium: 0 8px 30px rgba(15, 23, 42, 0.04);
}

/* Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-light);
    /* Padrão de bolinhas/grade retrô sutil imitando tela de console de bolso antigo */
    background-image: radial-gradient(#E2E8F0 1.2px, transparent 1.2px), radial-gradient(#E2E8F0 1.2px, var(--bg-light) 1.2px);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    color: var(--text-dark);
    padding-bottom: 90px;
    /* Espaço generoso para a navegação tátil inferior */
    min-height: 100vh;
}

.container {
    padding: 1.2rem;
    max-width: 600px;
    /* Foco absoluto em Mobile-First */
    margin: 0 auto;
}

/* Utilitários Imersivos */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1.2rem;
}

.mt-2 {
    margin-top: 1.2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1.5px solid currentColor;
}

.badge-blue {
    background: #EFF6FF;
    color: #1E40AF;
}

.badge-green {
    background: #ECFDF5;
    color: #047857;
}

.badge-yellow {
    background: #FFFBEB;
    color: #B45309;
}

/* Cabeçalho Imersivo - Estilo Console de Bolso */
.header {
    background: var(--bg-journal);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--border-tatile);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.header h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-icon {
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-flat);
}

.btn-icon:active {
    transform: translateY(2px);
    box-shadow: none;
}

/* Hub Grid e Cards de Ações Principais */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.hub-card {
    background: var(--bg-journal);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: 2px solid var(--border-tatile);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-flat);
    position: relative;
    overflow: hidden;
}

.hub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary);
    opacity: 0.8;
}

.hub-card:nth-child(2)::before {
    background: var(--secondary);
}

.hub-card:nth-child(3)::before {
    background: var(--accent);
}

.hub-card:nth-child(4)::before {
    background: var(--success);
}

.hub-card:active {
    transform: translateY(3px);
    box-shadow: none;
    background: #FAF8F5;
}

.hub-icon {
    font-size: 2.5rem;
    filter: drop-shadow(1px 2px 0 rgba(0, 0, 0, 0.1));
    transition: transform 0.2s ease;
}

.hub-card:hover .hub-icon {
    transform: scale(1.1) rotate(-5deg);
}

.hub-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

/* Cards Estilo Diário de Aventura */
.card {
    background: var(--bg-journal);
    border-radius: 24px;
    padding: 1.4rem;
    margin-bottom: 1.2rem;
    border: 2px solid var(--border-tatile);
    box-shadow: var(--shadow-flat);
    transition: all 0.2s ease;
    position: relative;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: space-between;
    letter-spacing: -0.02em;
    border-bottom: 2px dashed var(--border-tatile);
    padding-bottom: 0.5rem;
}

.active-card {
    border-color: var(--primary-light) !important;
    background-color: #F0F7FF !important;
    box-shadow: 0 4px 0 0 var(--primary-light) !important;
}

.card-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Botões Táteis Tipo Controle Portátil */
.btn {
    padding: 0.9rem 1.4rem;
    border-radius: 16px;
    border: 2px solid var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 0 0 var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn:active {
    transform: translateY(3px) scale(0.97);
    box-shadow: none;
}

.btn-primary {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-btn-primary);
}

.btn-primary:active {
    box-shadow: none;
}

.btn-success {
    background: var(--success);
    color: white;
    border-color: #047857;
    box-shadow: var(--shadow-btn-success);
}

.btn-success:active {
    box-shadow: none;
}

.btn-danger {
    background: var(--danger);
    color: white;
    border-color: #B91C1C;
    box-shadow: var(--shadow-btn-danger);
}

.btn-danger:active {
    box-shadow: none;
}

.btn-secondary {
    background: #F1F5F9;
    color: var(--text-dark);
    border-color: #CBD5E1;
    box-shadow: 0 4px 0 0 #CBD5E1;
}

.btn-secondary:active {
    box-shadow: none;
}

.btn-release {
    padding: 6px 12px;
    background: #FEE2E2;
    color: #EF4444;
    border: 2px solid #FCA5A5;
    border-radius: 8px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    transition: all 0.1s ease;
}

.btn-release:active {
    transform: scale(0.95);
}

/* Navegação Inferior Clássica */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-journal);
    display: flex;
    justify-content: space-around;
    padding: 0.7rem 0.5rem;
    border-top: 4px solid var(--border-tatile);
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.05);
}

.nav-item {
    text-decoration: none;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    gap: 0.2rem;
    transition: all 0.15s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
}

.nav-item.active {
    color: var(--primary);
    background: #EFF6FF;
}

.nav-icon {
    font-size: 1.5rem;
    filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.05));
}

/* Campos de Entrada e Selects */
.filter-select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 2px solid var(--border-tatile);
    background: white;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s ease;
    box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.02);
}

.filter-select:focus {
    border-color: var(--primary-light);
}

.form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

/* Modais Tipo Pokedex */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: var(--bg-journal);
    margin: 8vh auto;
    padding: 1.8rem;
    border-radius: 28px;
    border: 4px solid var(--text-dark);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 0 0 rgba(15, 23, 42, 0.15);
}

.close-modal {
    position: absolute;
    right: 1.2rem;
    top: 1rem;
    font-size: 2.2rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    transition: color 0.15s ease;
}

.close-modal:hover {
    color: var(--secondary);
}

/* Barras de HP de Arena de Batalha (Cinematográfica) */
.hp-bar-container {
    width: 100%;
    height: 14px;
    background: #E2E8F0;
    border-radius: 10px;
    margin-top: 0.5rem;
    overflow: hidden;
    border: 2px solid var(--text-dark);
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981, #34D399);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-low {
    background: linear-gradient(90deg, #EF4444, #F87171) !important;
}

/* Tabela de Movimentos da Pokédex */
.moves-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

.moves-table th {
    text-align: left;
    padding: 0.6rem;
    background: #EDF2F7;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border-tatile);
}

.moves-table td {
    padding: 0.8rem 0.6rem;
    border-bottom: 1px solid var(--border);
}

.strength-badge {
    padding: 3px 8px;
    border-radius: 6px;
    color: white;
    font-weight: 800;
    font-size: 0.75rem;
    font-family: 'Outfit', sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.strength-1 {
    background: #64748B;
}

.strength-2 {
    background: var(--primary-light);
}

.strength-3 {
    background: var(--secondary);
}

/* Batalhas de Intensidade e Ações */
.btn-intensity,
.btn-d6 {
    background: white;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 0.6rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    flex: 1;
    box-shadow: 0 3px 0 0 var(--text-dark);
    transition: all 0.1s ease;
}

.btn-intensity.active,
.btn-d6.active {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(1px);
    box-shadow: 0 2px 0 0 var(--text-dark);
}

.btn-intensity:disabled,
.btn-d6:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    box-shadow: none;
    background: #E2E8F0;
    transform: none;
}

.btn-d6 {
    font-size: 2.3rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem;
    min-height: 58px;
    border-radius: 14px;
}

.btn-action {
    background: white;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 0.9rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 4px 0 0 var(--text-dark);
    transition: all 0.1s ease;
    text-transform: uppercase;
}

.btn-action.active {
    background: var(--secondary);
    color: white;
    box-shadow: 0 2px 0 0 var(--text-dark);
    transform: translateY(2px);
}

/* Diário de Logs do Combate */
.battle-log-entry {
    margin-bottom: 0.7rem;
    padding-bottom: 0.7rem;
    border-bottom: 1.5px dashed var(--border-tatile);
    line-height: 1.5;
    font-size: 0.9rem;
}

.log-player {
    color: var(--primary-light);
    font-weight: 700;
}

.log-npc {
    color: var(--secondary);
    font-weight: 700;
}

.log-system {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.8rem;
}

hr {
    border: none;
    border-top: 2px dashed var(--border-tatile);
    margin: 1.5rem 0;
}

/* Transições Suaves das Telas (Views) */
.view {
    display: none;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.view.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- HUD IMERSIVA DE TREINADOR --- */
.trainer-card {
    border: 2px solid var(--border-tatile) !important;
    background-color: var(--bg-journal) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 0 0 var(--text-dark) !important;
    position: relative;
    overflow: hidden;
}

.trainer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 var(--text-dark) !important;
    border-color: var(--primary) !important;
}

.trainer-card.active-card {
    border-color: var(--primary) !important;
    background: radial-gradient(circle at 10% 10%, #FEFDF0 0%, var(--bg-journal) 100%) !important;
    box-shadow: 0 6px 0 0 var(--primary) !important;
}

.trainer-card.active-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* --- ARENA DE BATALHA CINEMATOGRÁFICA --- */
#battle-arena {
    padding: 1.2rem;
    border-radius: 28px;
    transition: all 0.5s ease-in-out;
}

/* Cores de HP em Gradiente */
.hp-high {
    background: linear-gradient(90deg, #10B981 0%, #34D399 100%) !important;
}

.hp-medium {
    background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 100%) !important;
}

.hp-low {
    background: linear-gradient(90deg, #EF4444 0%, #F87171 100%) !important;
}

/* Fundos de Arena Dinâmicos por Terreno */
.arena-bg-grama {
    background: radial-gradient(circle, #f0fdf4 0%, #bbf7d0 100%) !important;
    border: 3px solid #16a34a !important;
    box-shadow: 0 6px 0px 0px #15803d !important;
}

.arena-bg-floresta {
    background: radial-gradient(circle, #f0fdf4 0%, #86efac 100%) !important;
    border: 3px solid #15803d !important;
    box-shadow: 0 6px 0px 0px #166534 !important;
}

.arena-bg-floresta_1 {
    background: radial-gradient(circle, #f0fdf4 0%, #dcfce7 100%) !important;
    border: 3px solid #16a34a !important;
    box-shadow: 0 6px 0px 0px #15803d !important;
}

.arena-bg-floresta_2 {
    background: radial-gradient(circle, #f0fdf4 0%, #86efac 100%) !important;
    border: 3px solid #15803d !important;
    box-shadow: 0 6px 0px 0px #166534 !important;
}

.arena-bg-floresta_3 {
    background: radial-gradient(circle, #fef3c7 0%, #fbcfe8 100%) !important;
    border: 3px solid #db2777 !important;
    box-shadow: 0 6px 0px 0px #be185d !important;
}

.arena-bg-floresta_4 {
    background: radial-gradient(circle, #f0fdf4 0%, #99f6e4 100%) !important;
    border: 3px solid #0d9488 !important;
    box-shadow: 0 6px 0px 0px #0f766e !important;
}

.arena-bg-floresta_5 {
    background: radial-gradient(circle, #ffffff 0%, #cbd5e1 100%) !important;
    border: 3px solid #475569 !important;
    box-shadow: 0 6px 0px 0px #334155 !important;
}

.arena-bg-cidade {
    background: radial-gradient(circle, #f8fafc 0%, #cbd5e1 100%) !important;
    border: 3px solid #475569 !important;
    box-shadow: 0 6px 0px 0px #334155 !important;
}

.arena-bg-caverna {
    background: radial-gradient(circle, #f1f5f9 0%, #94a3b8 100%) !important;
    border: 3px solid #334155 !important;
    box-shadow: 0 6px 0px 0px #1e293b !important;
}

.arena-bg-ginasio {
    background: radial-gradient(circle, #cbd5e1 0%, #475569 100%) !important;
    border: 3px solid #334155 !important;
    box-shadow: 0 6px 0px 0px #1e293b !important;
}

.arena-bg-centro_pokemon {
    background: radial-gradient(circle, #fff5f5 0%, #fed7d7 100%) !important;
    border: 3px solid #e53e3e !important;
    box-shadow: 0 6px 0px 0px #9b2c2c !important;
}

.arena-bg-aquatico {
    background: radial-gradient(circle, #e0f2fe 0%, #0284c7 60%, #0369a1 100%) !important;
    border: 3px solid #0284c7 !important;
    box-shadow: 0 6px 0px 0px #0369a1 !important;
    position: relative;
    overflow: hidden;
}
.arena-bg-aquatico::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

/* Tipo Badges coloridos na Arena */
.type-badge-arena {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.1rem 0.4rem;
    border-radius: 6px;
    border: 1px solid currentColor;
    font-family: 'Outfit', sans-serif;
    margin-top: 0.2rem;
}

/* Destaque Visual de Iniciativa e Turno Ativo */
@keyframes active-pulse {
    0% {
        border-color: var(--border-tatile);
        transform: scale(1);
    }

    50% {
        border-color: var(--primary);
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
        transform: scale(1.02);
    }

    100% {
        border-color: var(--border-tatile);
        transform: scale(1);
    }
}

.turn-active {
    animation: active-pulse 2s infinite ease-in-out !important;
    background: radial-gradient(circle at 50% 50%, #fcfdfc 0%, #f8fafc 100%) !important;
}

/* Animações Físicas de Combate */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-8px);
    }

    40%,
    80% {
        transform: translateX(8px);
    }
}

.shake-anim {
    animation: shake 0.4s ease-in-out !important;
}

@keyframes dodge {
    0% {
        transform: translateX(0);
    }

    30% {
        transform: translateX(25px) scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: translateX(0);
    }
}

.dodge-anim {
    animation: dodge 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

@keyframes block {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 0 0 var(--text-dark);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
        border-color: var(--primary-light);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 0 0 var(--text-dark);
    }
}

.block-anim {
    animation: block 0.4s ease-in-out !important;
}

/* --- HUD IMERSIVA DO MAPA DE AVENTURA --- */

.adventure-map-container {
    background: #14532d;
    border: 3px solid var(--text-dark);
    box-shadow: 0 6px 0 0 var(--text-dark);
    border-radius: 18px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-image:
        repeating-linear-gradient(45deg, rgba(20, 83, 45, 0.4) 0px, rgba(20, 83, 45, 0.4) 2px, transparent 2px, transparent 12px),
        repeating-linear-gradient(-45deg, rgba(20, 83, 45, 0.4) 0px, rgba(20, 83, 45, 0.4) 2px, transparent 2px, transparent 12px),
        linear-gradient(180deg, #166534 0%, #114224 100%);
}

.adventure-map-container .adventure-map-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    border-bottom: 2px dashed rgba(255, 255, 255, 0.2) !important;
}

.adventure-map-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--text-dark);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px dashed var(--border-tatile);
    padding-bottom: 0.6rem;
}

/* Trilhas Horizontais */
.adventure-path-viewport {
    overflow-x: auto;
    padding: 2.8rem 0.5rem 1.8rem 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border-tatile) transparent;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    position: relative;
}

.adventure-path-viewport::-webkit-scrollbar {
    height: 6px;
}

.adventure-path-viewport::-webkit-scrollbar-thumb {
    background-color: var(--border-tatile);
    border-radius: 10px;
}

.checkpoint-node {
    flex: 0 0 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--text-dark);
    background: white;
    box-shadow: 0 4px 0 0 var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    z-index: 2;
}

.checkpoint-node:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 0 0 var(--text-dark);
}

.checkpoint-node.completed {
    background: #dbeafe;
    border-color: var(--primary);
    color: var(--primary);
}

.checkpoint-node.completed::after {
    content: "✓";
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkpoint-node.current {
    background: var(--secondary);
    border-color: var(--text-dark);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.3), 0 6px 0 0 var(--text-dark);
    animation: marker-pulse 2s infinite ease-in-out;
}

@keyframes marker-pulse {

    0%,
    100% {
        transform: scale(1.15) translateY(0);
    }

    50% {
        transform: scale(1.2) translateY(-4px);
        box-shadow: 0 0 15px rgba(245, 158, 11, 0.6), 0 6px 0 0 var(--text-dark);
    }
}

.checkpoint-node.current::before {
    content: "VOCÊ";
    position: absolute;
    top: -24px;
    background: var(--secondary);
    color: white;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 0.1rem 0.4rem;
    border-radius: 6px;
    border: 1.5px solid var(--text-dark);
    white-space: nowrap;
    box-shadow: 0 2px 0 0 var(--text-dark);
}

.checkpoint-node.future {
    background: #e2e8f0;
    border-color: #cbd5e1;
    color: #94a3b8;
    opacity: 0.8;
}

.checkpoint-node-title {
    font-size: 0.6rem;
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 600;
}

/* Estilos Temáticos para Nós do Mapa Aquático (Cerulean Gym / Misty) */
.checkpoint-node.node-biome-aquatico {
    border-color: #0284c7 !important;
}

.checkpoint-node.node-biome-aquatico.completed {
    background: #e0f2fe !important;
    border-color: #0284c7 !important;
    color: #0369a1 !important;
}

.checkpoint-node.node-biome-aquatico.completed::after {
    background: #0284c7 !important;
}

.checkpoint-node.node-biome-aquatico.current {
    background: #38bdf8 !important;
    border-color: #0284c7 !important;
    color: white !important;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.4), 0 6px 0 0 var(--text-dark) !important;
}

.checkpoint-node.node-biome-aquatico.current::before {
    background: #0284c7 !important;
}

.checkpoint-node.node-biome-aquatico.future {
    background: #f0f9ff !important;
    border-color: #bae6fd !important;
    color: #38bdf8 !important;
}

/* Card Principal de Rota Redesenhado */
.route-hero-card {
    background: white;
    border: 3px solid var(--text-dark);
    box-shadow: 0 6px 0 0 var(--text-dark);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.bioma-illustrator-container {
    height: 180px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--text-dark);
}

/* Gradientes dos biomas */
.bioma-illustrator-container.grama {
    background: linear-gradient(180deg, #7dd3fc 0%, #4ade80 100%);
}

.bioma-illustrator-container.floresta {
    background: linear-gradient(180deg, #cbd5e1 0%, #15803d 100%);
}

.bioma-illustrator-container.caverna {
    background: linear-gradient(180deg, #020617 0%, #334155 100%);
}

.bioma-illustrator-container.montanha {
    background: linear-gradient(180deg, #bae6fd 0%, #475569 100%);
}

.bioma-illustrator-container.urbano {
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
}

.bioma-illustrator-container.ginasio {
    background: linear-gradient(180deg, #7dd3fc 0%, #e0f2fe 100%) !important;
}

.bioma-illustrator-container.aquatico {
    background: linear-gradient(180deg, #0ea5e9 0%, #0369a1 100%) !important;
}

/* Elementos visuais por bioma usando CSS puro */
.bioma-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.layer-grass {
    background-image: radial-gradient(ellipse at bottom, #22c55e 60%, transparent 61%);
    background-size: 200% 100%;
    background-position: center bottom;
}

.layer-forest {
    background-image:
        linear-gradient(135deg, transparent 50%, #14532d 50%),
        linear-gradient(225deg, transparent 50%, #14532d 50%);
    background-size: 40px 100px;
    background-position: bottom left, bottom left;
    background-repeat: repeat-x;
}

.layer-cave {
    background: radial-gradient(circle at 50% 120%, #1e293b 20%, transparent 70%);
}

.layer-mountain {
    background-image:
        linear-gradient(120deg, transparent 40%, #334155 40%, #1e293b 80%, transparent 80%),
        linear-gradient(240deg, transparent 40%, #334155 40%, #1e293b 80%, transparent 80%);
    background-size: 150px 150px;
    background-position: bottom center;
    background-repeat: repeat-x;
}

.layer-city {
    background: linear-gradient(180deg, transparent 60%, #020617 60%);
    background-size: 100% 100%;
}

.layer-gym-pewter {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: 
        /* Porta de madeira marrom central */
        linear-gradient(90deg, #78350f 0%, #78350f 45%, #451a03 45%, #451a03 55%, #78350f 55%, #78350f 100%) no-repeat bottom 15px center / 40px 24px,
        /* Grande rocha cinza central (Pewter Gym) */
        radial-gradient(ellipse at center, #cbd5e1 50%, #64748b 90%, transparent 92%) no-repeat bottom 15px center / 160px 85px,
        /* Montanhas cinzas no canto esquerdo */
        radial-gradient(circle at 0% 100%, #94a3b8 30%, #475569 80%, transparent 85%) no-repeat bottom left / 90px 120px,
        /* Montanhas cinzas no canto direito */
        radial-gradient(circle at 100% 100%, #94a3b8 30%, #475569 80%, transparent 85%) no-repeat bottom right / 90px 120px,
        /* Solo de terra na base */
        linear-gradient(180deg, #b45309 0%, #78350f 100%) no-repeat bottom 0px left / 100% 15px;
    z-index: 1;
}

/* Moldura Terracota / Laranja Rústica */
.layer-gym-pewter::before {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 95px;
    border: 6px solid #c2410c;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
}

/* Inscrição entalhada na rocha "PEWTER GYM" */
.layer-gym-pewter::after {
    content: "PEWTER GYM";
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Outfit', 'Trebuchet MS', sans-serif;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #1e293b;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.7);
    z-index: 3;
    pointer-events: none;
}

/* Ginásio de Cerulean (Estilo Anime Clássico com Domo Listrado e Estátua de Dewgong) */
.layer-gym-cerulean {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 180" width="100%" height="100%"><circle cx="45" cy="110" r="30" fill="%2315803d" opacity="0.8"/><circle cx="25" cy="120" r="25" fill="%23166534" opacity="0.8"/><circle cx="360" cy="110" r="30" fill="%2315803d" opacity="0.8"/><circle cx="380" cy="120" r="25" fill="%23166534" opacity="0.8"/><path d="M 80,140 A 120,120 0 0,1 320,140 Z" fill="%23db2777" /><path d="M 100,140 A 120,120 0 0,1 300,140 Z" fill="%23ea580c" /><path d="M 120,140 A 120,120 0 0,1 280,140 Z" fill="%23eab308" /><path d="M 140,140 A 120,120 0 0,1 260,140 Z" fill="%23ea580c" /><path d="M 160,140 A 120,120 0 0,1 240,140 Z" fill="%23db2777" /><path d="M 180,140 A 120,120 0 0,1 220,140 Z" fill="%23e2e8f0" /><path d="M 60,140 L 340,140 L 335,175 L 65,175 Z" fill="%23fca5a5" stroke="%23b91c1c" stroke-width="1.5" /><rect x="75" y="140" width="8" height="35" fill="white" stroke="%230284c7" stroke-width="0.5"/><path d="M 75,145 L 83,148 M 75,153 L 83,156 M 75,161 L 83,164 M 75,169 L 83,172" stroke="%233b82f6" stroke-width="2" /><rect x="120" y="140" width="8" height="35" fill="white" stroke="%230284c7" stroke-width="0.5"/><path d="M 120,145 L 128,148 M 120,153 L 128,156 M 120,161 L 128,164 M 120,169 L 128,172" stroke="%233b82f6" stroke-width="2" /><rect x="165" y="140" width="8" height="35" fill="white" stroke="%230284c7" stroke-width="0.5"/><path d="M 165,145 L 173,148 M 165,153 L 173,156 M 165,161 L 173,164 M 165,169 L 173,172" stroke="%233b82f6" stroke-width="2" /><rect x="227" y="140" width="8" height="35" fill="white" stroke="%230284c7" stroke-width="0.5"/><path d="M 227,145 L 235,148 M 227,153 L 235,156 M 227,161 L 235,164 M 227,169 L 235,172" stroke="%233b82f6" stroke-width="2" /><rect x="272" y="140" width="8" height="35" fill="white" stroke="%230284c7" stroke-width="0.5"/><path d="M 272,145 L 280,148 M 272,153 L 280,156 M 272,161 L 280,164 M 272,169 L 280,172" stroke="%233b82f6" stroke-width="2" /><rect x="317" y="140" width="8" height="35" fill="white" stroke="%230284c7" stroke-width="0.5"/><path d="M 317,145 L 325,148 M 317,153 L 325,156 M 317,161 L 325,164 M 317,169 L 325,172" stroke="%233b82f6" stroke-width="2" /><rect x="185" y="145" width="30" height="30" fill="%231d4ed8" stroke="%231e3a8a" stroke-width="1.5" /><line x1="200" y1="145" x2="200" y2="175" stroke="%231e3a8a" stroke-width="1.5" /><circle cx="195" cy="160" r="1.5" fill="%23facc15" /><circle cx="205" cy="160" r="1.5" fill="%23facc15" /><path d="M 40,175 L 360,175 L 370,180 L 30,180 Z" fill="%2394a3b8" /><path d="M 120,95 C 120,70 145,50 170,50 C 190,50 205,65 210,75 C 220,70 235,70 250,75 C 275,65 295,65 305,80 C 295,95 270,105 250,110 C 220,115 180,115 160,112 C 140,108 120,105 120,95 Z" fill="white" stroke="%23cbd5e1" stroke-width="1.5" /><path d="M 155,95 C 140,97 125,103 120,112 C 130,113 145,108 155,100 Z" fill="white" stroke="%23cbd5e1" stroke-width="1" /><path d="M 205,95 C 220,97 235,103 240,112 C 230,113 215,108 205,100 Z" fill="white" stroke="%23cbd5e1" stroke-width="1" /><path d="M 305,80 C 315,70 330,70 335,80 C 330,85 315,85 305,80 Z" fill="white" stroke="%23cbd5e1" stroke-width="1" /><path d="M 305,80 C 320,85 330,95 325,100 C 315,95 310,85 305,80 Z" fill="white" stroke="%23cbd5e1" stroke-width="1" /><circle cx="145" cy="68" r="2.5" fill="%231e293b" /><circle cx="144" cy="67" r="0.8" fill="white" /><path d="M 130,75 C 130,75 133,78 136,75" stroke="%23cbd5e1" stroke-width="1" fill="none" /><path d="M 140,55 L 144,48 L 146,55 Z" fill="white" stroke="%23cbd5e1" stroke-width="1" /><path d="M 60,130 C 70,120 85,120 95,130 C 105,140 120,140 130,130 C 140,120 155,120 165,130 C 175,140 190,140 200,130 C 210,120 225,120 235,130 C 245,140 260,140 270,130 C 280,120 295,120 305,130 C 315,140 330,140 340,130 L 340,145 C 340,145 325,150 305,143 C 295,140 280,140 270,145 C 260,150 245,150 235,145 C 225,140 210,140 200,145 C 190,150 175,150 165,145 C 155,140 140,140 130,145 C 120,150 105,150 95,145 C 85,140 70,140 60,145 Z" fill="%23bae6fd" stroke="%230284c7" stroke-width="2" /><text x="200" y="142" font-family="&apos;Outfit&apos;, sans-serif" font-weight="900" font-size="9" fill="%230369a1" text-anchor="middle" letter-spacing="1">CERULEAN GYM</text></svg>') no-repeat bottom center / contain;
    z-index: 1;
}

/* Clima e Partículas Ambientais */
.ambient-fog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
    animation: drift-fog 18s linear infinite;
    pointer-events: none;
}

@keyframes drift-fog {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

.ambient-wind-overlay {
    display: none !important;
}

/* Badges Atmosféricos */
.location-badge-group {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.location-badge {
    background: rgba(15, 23, 42, 0.75);
    color: white;
    backdrop-filter: blur(4px);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.location-description-box {
    padding: 1.2rem;
}

.cinematic-narrative-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0.6rem 0;
    position: relative;
    padding-left: 1.2rem;
    border-left: 3px solid var(--primary-light);
}

.bioma-icon-generic {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    opacity: 0.95 !important;
    transform: rotate(-10deg);
    filter: drop-shadow(2px 4px 0 var(--text-dark));
    z-index: 100 !important;
    pointer-events: none;
}

/* ==========================================================================
   SISTEMA DE COLECIONÁVEIS & POKÉDEX VIVA
   ========================================================================== */

/* Grid da Pokédex */
#list-pokedex {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.2rem;
    padding: 0.5rem 0;
}

/* Base dos Cards de Pokédex */
.pokedex-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--text-dark);
    border-radius: 20px;
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 6px 0 0 var(--text-dark);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

.pokedex-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 11px 0 0 var(--text-dark);
}

.pokedex-card:active {
    transform: translateY(1px);
    box-shadow: 0 4px 0 0 var(--text-dark);
}

/* Cartão Silhueta / Desconhecido */
.pokedex-card.undiscovered {
    background: repeating-linear-gradient(45deg,
            #1e293b,
            #1e293b 10px,
            #0f172a 10px,
            #0f172a 20px);
    border-color: #475569;
    box-shadow: 0 6px 0 0 #334155;
    opacity: 0.8;
}

.pokedex-card.undiscovered:hover {
    box-shadow: 0 9px 0 0 #334155;
}

.pokedex-card.undiscovered .pokedex-number {
    color: #94a3b8;
}

.pokedex-card.undiscovered .pokedex-lock {
    font-size: 0.65rem;
    background: #475569;
    color: #e2e8f0;
    padding: 0.1rem 0.35rem;
    border-radius: 8px;
    font-weight: 700;
}

.pokedex-silhouette-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.8rem 0;
}

.pokedex-silhouette-mystery {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    animation: pulse-glow 2s infinite alternate;
}

/* Emblem / Avatar do Pokémon Descoberto */
.pokedex-card-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.pokedex-number {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dark);
}

.pokedex-rarity-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.15rem 0.4rem;
    border-radius: 8px;
    border: 1px solid var(--text-dark);
}

.pokedex-card-emblem {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.emblem-inner {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
}

.favorite-heart-indicator {
    position: absolute;
    bottom: -4px;
    right: -4px;
    font-size: 1rem;
    filter: drop-shadow(1px 1px 0px white);
}

.pokedex-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0.3rem 0;
}

.pokedex-types {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pokedex-miniature-indicator {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    border-top: 1px dashed var(--border);
    width: 100%;
    padding-top: 0.4rem;
    margin-top: 0.2rem;
}

/* Efeitos de Raridade (Glow e Temas) */
.rarity-common {
    background: #cbd5e1;
    color: var(--text-dark);
}

.rarity-uncommon {
    background: #93c5fd;
    color: #1e3a8a;
}

.rarity-rare {
    background: #c084fc;
    color: #581c87;
}

.rarity-special {
    background: #fde047;
    color: #713f12;
}

.rarity-legendary {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    color: white;
    border-color: white;
}

.glow-uncommon {
    border-color: #3b82f6;
    box-shadow: 0 6px 0 0 #1d4ed8;
}

.glow-rare {
    border-color: #a855f7;
    box-shadow: 0 6px 0 0 #7e22ce;
    animation: subtle-glow-rare 2s infinite alternate;
}

.glow-special {
    border-color: #eab308;
    box-shadow: 0 6px 0 0 #a16207;
    animation: subtle-glow-special 2.5s infinite alternate;
}

.glow-legendary {
    border-image: linear-gradient(45deg, #f43f5e, #fb923c, #ec4899) 1;
    animation: rainbow-glow 3s infinite linear;
}

@keyframes subtle-glow-rare {
    0% {
        box-shadow: 0 6px 0 0 #7e22ce, 0 0 4px rgba(168, 85, 247, 0.4);
    }

    100% {
        box-shadow: 0 6px 0 0 #7e22ce, 0 0 10px rgba(168, 85, 247, 0.7);
    }
}

@keyframes subtle-glow-special {
    0% {
        box-shadow: 0 6px 0 0 #a16207, 0 0 4px rgba(234, 179, 8, 0.4);
    }

    100% {
        box-shadow: 0 6px 0 0 #a16207, 0 0 12px rgba(234, 179, 8, 0.8);
    }
}

@keyframes rainbow-glow {

    0%,
    100% {
        box-shadow: 0 6px 0 0 #db2777, 0 0 5px rgba(219, 39, 119, 0.5);
    }

    50% {
        box-shadow: 0 6px 0 0 #ea580c, 0 0 15px rgba(234, 88, 12, 0.9);
    }
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.05);
        opacity: 0.95;
    }
}

/* Badges de Tipos Premium */
.badge.type-planta {
    background: #22c55e !important;
    color: white !important;
}

.badge.type-fogo {
    background: #ef4444 !important;
    color: white !important;
}

.badge.type-água {
    background: #3b82f6 !important;
    color: white !important;
}

.badge.type-elétrico {
    background: #eab308 !important;
    color: var(--text-dark) !important;
}

.badge.type-normal {
    background: #94a3b8 !important;
    color: white !important;
}

.badge.type-voador {
    background: #06b6d4 !important;
    color: white !important;
}

.badge.type-inseto {
    background: #84cc16 !important;
    color: white !important;
}

.badge.type-pedra {
    background: #78716c !important;
    color: white !important;
}

.badge.type-terra {
    background: #a16207 !important;
    color: white !important;
}

.badge.type-veneno {
    background: #a855f7 !important;
    color: white !important;
}

/* Ficha de Detalhe da Criatura */
.species-detail-sheet {
    font-family: 'Outfit', sans-serif;
    background: white;
    border-radius: 16px;
    padding: 0.5rem;
}

.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.sheet-number {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sheet-rarity-badge {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    border: 2px solid var(--text-dark);
}

.sheet-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0.2rem 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.sheet-types {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.sheet-description {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    background: #f8fafc;
    border-left: 4px solid var(--primary);
    padding: 0.6rem 0.8rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 1rem;
}

/* Personalidade */
.badge-personality {
    background: #e0f2fe !important;
    color: #0369a1 !important;
    font-weight: 700 !important;
    font-size: 0.7rem !important;
    border: 1px solid #bae6fd !important;
}

/* Alerta de Evolução */
.detail-evolution-alert {
    background: linear-gradient(135deg, #fef08a 0%, #fef9c3 100%);
    border: 2px solid #eab308;
    color: #713f12;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    animation: subtle-pulse 1.5s infinite alternate;
}

@keyframes subtle-pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.02);
    }
}

/* Grid de Ficha Técnica de Movimentos */
.sheet-moves-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-top: 1rem;
}

.move-column {
    background: #f1f5f9;
    border: 2px solid var(--text-dark);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    box-shadow: 0 3px 0 0 var(--text-dark);
}

.move-column-title {
    font-size: 0.7rem;
    font-weight: 900;
    text-align: center;
    border-bottom: 1.5px solid var(--text-dark);
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

.move-item {
    font-size: 0.65rem;
    font-weight: 700;
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.3rem;
    color: var(--text-dark);
}

.move-item span {
    font-weight: 800;
    color: var(--text-muted);
    font-size: 0.6rem;
}

/* Estilos de Miniature Toggle */
.btn-miniature-toggle {
    background: white;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 0.35rem 0.8rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 2px 0 0 var(--text-dark);
    transition: all 0.1s ease;
}

.btn-miniature-toggle:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 0 var(--text-dark);
}

.btn-miniature-toggle.owned {
    background: #f59e0b;
    border-color: var(--text-dark);
    color: var(--text-dark);
    box-shadow: 0 2px 0 0 var(--text-dark);
}

/* Adaptações Mobile da Ficha */
@media (max-width: 480px) {
    .sheet-moves-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

/* --- Eventos Cinematográficos --- */
.cinematic-event-box {
    background: #0f172a;
    border: 3px solid #334155;
    border-radius: 16px;
    padding: 1.5rem;
    color: #e2e8f0;
    position: relative;
    overflow-y: auto !important;
    max-height: 90vh !important;
    margin: 4vh auto !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.cinematic-event-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.cinematic-title-group {
    text-align: center;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.cinematic-subtitle {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 0.2rem;
}

.cinematic-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.cinematic-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 5px;
}


/* Eventos Específicos */
.cinematic-event-box.rocket-event {
    background: linear-gradient(135deg, #18181b 0%, #450a0a 100%);
    border-color: #991b1b;
    animation: dramatic-entry 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rocket-event .cinematic-title {
    color: #fca5a5;
}

.cinematic-event-box.gym-event {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border-color: #3b82f6;
}

.gym-event .cinematic-title {
    color: #93c5fd;
}

.cinematic-event-box.item-event {
    background: linear-gradient(135deg, #0f172a 0%, #422006 100%);
    border-color: #ca8a04;
}

.item-event .cinematic-title {
    color: #fde047;
}

@keyframes dramatic-entry {
    0% {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }

    50% {
        transform: scale(1.02) translateY(-5px);
        opacity: 1;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* --- Diário de Jornada (Logs) --- */
.diary-log-container {
    background: #fdfbf7;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    max-height: 250px;
    overflow-y: auto;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
}

.diary-log-container::before {
    content: '';
    position: absolute;
    top: 1.2rem;
    left: 1.3rem;
    bottom: 1.2rem;
    width: 2px;
    background: #cbd5e1;
    z-index: 0;
}

.diary-entry {
    position: relative;
    z-index: 1;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed #e2e8f0;
}

.diary-entry:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.diary-entry-marker {
    position: absolute;
    left: 0.05rem;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #fdfbf7;
    box-shadow: 0 0 0 1px #cbd5e1;
}

.diary-entry-time {
    font-size: 0.65rem;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diary-entry-text {
    font-size: 0.85rem;
    color: #334155;
    line-height: 1.4;
    font-weight: 500;
}

/* Tipos de Diário */
.entry-type-capture .diary-entry-marker {
    background: #ef4444;
}

.entry-type-move .diary-entry-marker {
    background: #3b82f6;
}

.entry-type-combat .diary-entry-marker {
    background: #f59e0b;
}

.entry-type-system .diary-entry-marker {
    background: #94a3b8;
}

/* --- Microinterações de Imersão --- */

/* Respiração Suave dos Cards (Sensação de "Vivo") */
@keyframes breathe-idle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

.trainer-card,
.pokedex-card,
.hub-card {
    animation: breathe-idle 4s ease-in-out infinite;
}

.trainer-card:hover,
.pokedex-card:hover,
.hub-card:hover {
    animation: none;
    /* Pausa a respiração na interação para o hover state assumir */
}

/* Transições Suaves na Barra de HP */
.hp-bar-fill {
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.6s ease-in-out !important;
}

/* Brilho Suave em Conquistas e Destaques */
@keyframes subtle-shine {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }

    100% {
        filter: brightness(1);
    }
}

.badge-yellow,
.badge-blue,
.badge-green {
    animation: subtle-shine 3s infinite ease-in-out;
}

/* Modal de Feedback Visual Agradável */
@keyframes pop-success {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#modal-alert .modal-content,
#modal-confirm .modal-content {
    animation: pop-success 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- PLATAFORMAS DE BATALHA IMERSIVAS --- */
.battle-platform-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    height: 110px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--text-dark);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Plataforma de Elipse de Combate no chão (Sombra do Pokémon) */
.battle-platform-ellipse {
    position: absolute;
    bottom: 12px;
    width: 60%;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    filter: blur(2px);
    z-index: 1;
    transform: scaleY(0.5);
}

.battle-platform-container img {
    height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.3));
    z-index: 2;
    position: relative;
    margin-bottom: 8px;
}

/* Temas de Biomas com Imagens de IA para a Plataforma */
.platform-grama {
    background-image: url('battle_bg_grass.webp');
    background-size: cover;
    background-position: center;
}

.platform-floresta {
    background-image: url('battle_bg_forest.webp');
    background-size: cover;
    background-position: center;
}

.platform-floresta_1 {
    background-image: url('battle_bg_forest_1.webp');
    background-size: cover;
    background-position: center;
}

.platform-floresta_2 {
    background-image: url('battle_bg_forest_2.webp');
    background-size: cover;
    background-position: center;
}

.platform-floresta_3 {
    background-image: url('battle_bg_forest_3.webp');
    background-size: cover;
    background-position: center;
}

.platform-floresta_4 {
    background-image: url('battle_bg_forest_4.webp');
    background-size: cover;
    background-position: center;
}

.platform-floresta_5 {
    background-image: url('battle_bg_forest_5.webp');
    background-size: cover;
    background-position: center;
}

.platform-caverna {
    background-image: url('battle_bg_cave.webp');
    background-size: cover;
    background-position: center;
}

.platform-montanha {
    background-image: url('battle_bg_cave.webp');
    background-size: cover;
    background-position: center;
}

.platform-cidade {
    background-image: url('battle_bg_city.webp');
    background-size: cover;
    background-position: center;
}

.platform-ginasio {
    background-image: url('battle_bg_gym.webp');
    background-size: cover;
    background-position: center;
}

.platform-centro_pokemon {
    background-image: url('battle_bg_center.webp');
    background-size: cover;
    background-position: center;
}

.platform-aquatico {
    background-image: url('battle_bg_water.webp');
    background-size: cover;
    background-position: center;
}
.platform-aquatico .battle-platform-ellipse {
    background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.6) 0%, rgba(2, 132, 199, 0.75) 70%, rgba(3, 105, 161, 0.9) 100%) !important;
    border: 2.5px solid #38bdf8 !important;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.5) !important;
}

/* Cores Dinâmicas dos Biomas para o Card do Mapa */
.map-card-grama {
    background: #f0fdf4 !important;
    border-color: #86efac !important;
    box-shadow: 0 4px 0 0 #86efac !important;
}

.map-card-floresta {
    background: #ecfdf5 !important;
    border-color: #6ee7b7 !important;
    box-shadow: 0 4px 0 0 #6ee7b7 !important;
}

.map-card-caverna {
    background: #f1f5f9 !important;
    border-color: #94a3b8 !important;
    box-shadow: 0 4px 0 0 #94a3b8 !important;
}

.map-card-montanha {
    background: #f0f9ff !important;
    border-color: #7dd3fc !important;
    box-shadow: 0 4px 0 0 #7dd3fc !important;
}

.map-card-urbano {
    background: #faf5ff !important;
    border-color: #c084fc !important;
    box-shadow: 0 4px 0 0 #c084fc !important;
}

.map-card-ginasio {
    background: #f8fafc !important;
    border-color: #c2410c !important;
    box-shadow: 0 4px 0 0 #c2410c !important;
}

.map-card-aquatico {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #0284c7 !important;
    box-shadow: 0 4px 0 0 #0369a1, 0 10px 20px -5px rgba(2, 132, 199, 0.2) !important;
}

.map-card-aquatico [style*="color:var(--primary)"],
.map-card-aquatico [style*="color: var(--primary)"] {
    color: #0284c7 !important;
}

.map-card-aquatico .btn-primary {
    background: #0284c7 !important;
    border-color: #0369a1 !important;
    box-shadow: 0 4px 0 0 #075985 !important;
}

.map-card-aquatico .btn-primary:hover {
    background: #0369a1 !important;
    border-color: #0284c7 !important;
}

.map-card-aquatico .btn-secondary {
    border-color: #38bdf8 !important;
    color: #0369a1 !important;
}


/* Animações e Estilos do Modal de Evolução Épica */
#modal-evolution {
    z-index: 999999 !important;
}

.evolution-stage-container img {
    will-change: transform, opacity, filter;
}

@keyframes rotate-dashed {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes evo-pulsing-pokemon {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px white) brightness(1);
    }

    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 30px white) brightness(2.8);
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px white) brightness(1);
    }
}

.evo-pulse-active {
    animation: evo-pulsing-pokemon 0.6s infinite ease-in-out;
}

/* --- Estilos Dinâmicos de Clima para o Card do Mapa --- */
.map-weather-urbano {
    background: linear-gradient(180deg, #09090b 0%, #1e293b 100%) !important;
    background-image:
        radial-gradient(1px 1px at 25px 25px, white, transparent),
        radial-gradient(1.5px 1.5px at 60px 80px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 120px 15px, white, transparent),
        radial-gradient(2px 2px at 190px 110px, rgba(255, 255, 255, 0.95), transparent),
        radial-gradient(1.5px 1.5px at 260px 45px, white, transparent),
        linear-gradient(180deg, #020617 0%, #0f172a 100%) !important;
    background-size: 200px 200px;
}

.map-weather-urbano .adventure-map-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.2) !important;
}

.map-weather-floresta {
    background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%) !important;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.25), transparent),
        linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%) !important;
}

.map-weather-floresta .adventure-map-title {
    color: #334155 !important;
    text-shadow: none;
    border-bottom-color: rgba(51, 65, 85, 0.2) !important;
}

.map-weather-caverna {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%) !important;
    background-image:
        radial-gradient(2px 2px at 40px 80px, #38bdf8, transparent),
        radial-gradient(1.5px 1.5px at 160px 30px, #0ea5e9, transparent),
        radial-gradient(2px 2px at 290px 130px, #38bdf8, transparent),
        linear-gradient(180deg, #1e293b 0%, #020617 100%) !important;
}

.map-weather-caverna .adventure-map-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.2) !important;
}

.map-weather-montanha {
    background: linear-gradient(180deg, #f0f9ff 0%, #bae6fd 100%) !important;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 80%),
        linear-gradient(180deg, #f0f9ff 0%, #bae6fd 100%) !important;
}

.map-weather-montanha .adventure-map-title {
    color: #0369a1 !important;
    text-shadow: none;
    border-bottom-color: rgba(3, 105, 161, 0.2) !important;
}

.map-weather-ginasio {
    background: linear-gradient(180deg, #bae6fd 0%, #e0f2fe 100%) !important;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.15) 0px, rgba(255, 255, 255, 0.15) 12px, transparent 12px, transparent 48px),
        linear-gradient(180deg, #7dd3fc 0%, #bae6fd 100%) !important;
}

.map-weather-ginasio .adventure-map-title {
    color: #c2410c !important;
    text-shadow: none;
    border-bottom-color: rgba(194, 65, 12, 0.25) !important;
}

.map-weather-grama {
    background: linear-gradient(180deg, #bae6fd 0%, #38bdf8 100%) !important;
    background-image:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0px, rgba(255, 255, 255, 0.06) 12px, transparent 12px, transparent 48px),
        linear-gradient(180deg, #bae6fd 0%, #7dd3fc 100%) !important;
}

.map-weather-grama .adventure-map-title {
    color: #0369a1 !important;
    text-shadow: none;
    border-bottom-color: rgba(3, 105, 161, 0.2) !important;
}

.map-weather-aquatico {
    background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 100%) !important;
    background-image:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0px, rgba(255, 255, 255, 0.08) 12px, transparent 12px, transparent 48px),
        linear-gradient(180deg, #bae6fd 0%, #38bdf8 100%) !important;
}

.map-weather-aquatico .adventure-map-title {
    color: #0369a1 !important;
    text-shadow: none;
    border-bottom-color: rgba(3, 105, 161, 0.25) !important;
}

/* Oculta elipse de sombra na plataforma de floresta fechada */
.platform-floresta .battle-platform-ellipse,
.platform-floresta_1 .battle-platform-ellipse,
.platform-floresta_2 .battle-platform-ellipse,
.platform-floresta_3 .battle-platform-ellipse,
.platform-floresta_4 .battle-platform-ellipse,
.platform-floresta_5 .battle-platform-ellipse {
    display: none !important;
}

/* Animação de sacudida da pokebola fechada */
@keyframes pokeball-wobble {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

    60% {
        transform: rotate(-10deg);
    }

    80% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.pokeball-closed-anim {
    animation: pokeball-wobble 1.5s infinite ease-in-out;
}

/* Animação premium para a Insígnia da Rocha */
@keyframes badge-float {
    0% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 4px 8px rgba(120, 113, 108, 0.4));
    }
    50% {
        transform: translateY(-8px) scale(1.04);
        filter: drop-shadow(0 16px 24px rgba(120, 113, 108, 0.6));
    }
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 4px 8px rgba(120, 113, 108, 0.4));
    }
}

.badge-rock-anim {
    animation: badge-float 3s infinite ease-in-out;
}

.badge-cascade-anim {
    animation: badge-float-cascade 3s infinite ease-in-out;
}

@keyframes badge-float-cascade {
    0% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 4px 8px rgba(2, 132, 199, 0.4));
    }
    50% {
        transform: translateY(-8px) scale(1.04);
        filter: drop-shadow(0 16px 24px rgba(2, 132, 199, 0.6));
    }
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 4px 8px rgba(2, 132, 199, 0.4));
    }
}

/* --- ESTILOS ADICIONAIS PARA OS CARDS DO TOPO --- */
.dash-avatar-card {
    flex: 1;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-flat);
    border: 2px solid var(--border-tatile);
    background: var(--bg-journal);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dash-avatar-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: all 0.3s ease;
}

.dash-avatar-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.dash-avatar-card.active {
    border-color: #2563eb !important;
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.75) !important;
    transform: translateY(-6px) scale(1.03);
}

.dash-avatar-card.active img {
    filter: brightness(1.05) contrast(1.05);
}

.dash-avatar-card.active::after {
    content: "⭐";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(37, 99, 235, 0.95);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
    font-family: 'Outfit', sans-serif;
    animation: activeBadgePulse 2s infinite ease-in-out;
    z-index: 10;
}

@keyframes activeBadgePulse {
    0% { transform: translateX(-50%) scale(1); box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4); }
    50% { transform: translateX(-50%) scale(1.05); box-shadow: 0 2px 18px rgba(37, 99, 235, 0.8); }
    100% { transform: translateX(-50%) scale(1); box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4); }
}

/* ==========================================================================
   Álbum da Jornada - Visual de Diário Cinematográfico e Cards Colecionáveis
   ========================================================================== */

#view-album {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0.5rem;
}

.album-header-card {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.75) 0%, rgba(49, 16, 66, 0.75) 100%);
    border: 2px solid rgba(234, 179, 8, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.album-title-gradient {
    background: linear-gradient(to right, #fef08a, #facc15, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
    display: inline-block;
    text-shadow: 0 4px 15px rgba(234, 179, 8, 0.2);
}

.album-subtitle {
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Filtros e Controles */
.album-controls-bar {
    background: rgba(15, 12, 38, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.album-search-sort-group {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .album-search-sort-group {
        grid-template-columns: 1fr;
    }
}

.album-search-input {
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: white;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
}

.album-search-input:focus {
    outline: none;
    border-color: #facc15;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.2);
}

.album-select-filter {
    background: rgba(255, 255, 255, 0.07) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23facc15' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") no-repeat right 0.75rem center/1.25rem;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: white;
    padding: 0.6rem 2.2rem 0.6rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
}

.album-select-filter:focus {
    outline: none;
    border-color: #facc15;
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.2);
}

.album-fav-toggle-btn {
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.album-fav-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.album-fav-toggle-btn.active {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.25) 0%, rgba(245, 158, 11, 0.25) 100%);
    border-color: #eab308;
    color: #fef08a;
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.2);
}

/* Categorias Badge Scroller */
.album-category-scroller {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.4rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(250, 204, 21, 0.3) transparent;
}

.album-category-scroller::-webkit-scrollbar {
    height: 4px;
}

.album-category-scroller::-webkit-scrollbar-thumb {
    background: rgba(250, 204, 21, 0.3);
    border-radius: 10px;
}

.album-category-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(226, 232, 240, 0.8);
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.album-category-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-1px);
}

.album-category-btn.active {
    background: #facc15;
    color: #1e1b4b;
    border-color: #facc15;
    box-shadow: 0 2px 10px rgba(250, 204, 21, 0.35);
}

/* Grid de Cards de Memória */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
    gap: 1.5rem;
    padding-bottom: 2rem;
}

/* Card de Memória */
.memory-card {
    background: linear-gradient(135deg, rgba(20, 16, 48, 0.7) 0%, rgba(30, 12, 45, 0.7) 100%);
    border-radius: 18px;
    border: 2px solid;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: lazyFadeIn 0.5s ease-out forwards;
}

@keyframes lazyFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.memory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

/* Rarity-based styling */
.memory-card.rarity-comum {
    border-color: rgba(148, 163, 184, 0.35);
}
.memory-card.rarity-raro {
    border-color: rgba(234, 179, 8, 0.5);
    box-shadow: 0 8px 24px rgba(234, 179, 8, 0.1);
}
.memory-card.rarity-raro:hover {
    border-color: rgba(234, 179, 8, 0.8);
    box-shadow: 0 16px 36px rgba(234, 179, 8, 0.2);
}
.memory-card.rarity-lendario {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.2);
    animation: legendaryGlowPulse 4s infinite ease-in-out;
}
.memory-card.rarity-lendario:hover {
    border-color: rgba(236, 72, 153, 0.95);
    box-shadow: 0 16px 40px rgba(236, 72, 153, 0.4);
}

@keyframes legendaryGlowPulse {
    0% { border-color: rgba(236, 72, 153, 0.6); box-shadow: 0 8px 24px rgba(236, 72, 153, 0.15); }
    50% { border-color: rgba(236, 72, 153, 0.9); box-shadow: 0 8px 36px rgba(236, 72, 153, 0.35); }
    100% { border-color: rgba(236, 72, 153, 0.6); box-shadow: 0 8px 24px rgba(236, 72, 153, 0.15); }
}

/* Favoritar Botão */
.memory-card-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15, 12, 38, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.35);
}

.memory-card-fav-btn:hover {
    transform: scale(1.1);
    background: rgba(15, 12, 38, 0.85);
    border-color: rgba(250, 204, 21, 0.6);
    color: #facc15;
}

.memory-card-fav-btn.active {
    color: #facc15;
    background: rgba(250, 204, 21, 0.15);
    border-color: rgba(250, 204, 21, 0.7);
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.6);
}

/* Card Header */
.memory-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.memory-card-date {
    color: rgba(226, 232, 240, 0.5);
}

.memory-card-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    color: #e2e8f0;
}

/* Ilutrações Leves e Cinematográficas do Evento */
.memory-card-illustration {
    height: 120px;
    border-radius: 14px;
    margin-bottom: 0.75rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.memory-illustration-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
    z-index: 1;
}

/* Tipos de Gradientes Leves */
.illustration-capture {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.4) 0%, rgba(15, 12, 38, 0.95) 100%);
}
.illustration-evolution {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.45) 0%, rgba(147, 51, 234, 0.4) 50%, rgba(15, 12, 38, 0.95) 100%);
}
.illustration-gym {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.45) 0%, rgba(120, 53, 4, 0.3) 60%, rgba(15, 12, 38, 0.95) 100%);
}
.illustration-rival {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35) 0%, rgba(15, 12, 38, 0.9) 50%, rgba(239, 68, 68, 0.35) 100%);
}
.illustration-rocket {
    background: radial-gradient(circle, rgba(225, 29, 72, 0.35) 0%, rgba(88, 28, 135, 0.35) 60%, rgba(15, 12, 38, 0.95) 100%);
}
.illustration-discovery {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, rgba(15, 12, 38, 0.95) 100%);
}
.illustration-achievement {
    background: radial-gradient(circle, rgba(250, 204, 21, 0.4) 0%, rgba(219, 39, 119, 0.25) 60%, rgba(15, 12, 38, 0.95) 100%);
}

.memory-illustration-content {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
    animation: floatIllustration 4s infinite ease-in-out;
}

@keyframes floatIllustration {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Avatar de Rival de Combate */
.memory-rival-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #eab308;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    background: rgba(30, 27, 75, 0.8);
    position: absolute;
    bottom: -10px;
    right: 15px;
    z-index: 5;
    animation: badge-float 3.5s infinite ease-in-out;
}

/* Pokémon envolvidos (Bubbles de sprite) */
.memory-pokemon-list {
    display: flex;
    gap: 0.4rem;
    position: absolute;
    bottom: 8px;
    left: 12px;
    z-index: 5;
}

.memory-pokemon-bubble {
    width: 38px;
    height: 38px;
    background: rgba(30, 27, 75, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}

.memory-pokemon-bubble:hover {
    transform: scale(1.15) translateY(-2px);
    border-color: #facc15;
}

.memory-pokemon-bubble img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

/* Rota 📍 Badge de localização interna */
.memory-location-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(15, 12, 38, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 4;
}

/* Card Content Text */
.memory-card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    color: white;
    margin-bottom: 0.15rem;
    line-height: 1.25;
}

.memory-card-subtitle {
    font-size: 0.75rem;
    color: #facc15;
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.memory-card-desc {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.4;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 0;
}

/* Botão Excluir Memória (Opcional, com discrição) */
.memory-delete-btn {
    background: none;
    border: none;
    color: rgba(239, 68, 68, 0.35);
    cursor: pointer;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    align-self: flex-end;
    padding: 0.2rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.memory-delete-btn:hover {
    color: rgba(239, 68, 68, 0.95);
    background: rgba(239, 68, 68, 0.08);
}

/* Empty State do Álbum */
.album-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: rgba(30, 27, 75, 0.45);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 500px;
    margin: 2rem auto;
    backdrop-filter: blur(10px);
}

.album-empty-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: floatIllustration 4s infinite ease-in-out;
}

.album-empty-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.album-empty-desc {
    color: rgba(226, 232, 240, 0.6);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ==========================================
   ESTILOS PREMIUM PARA CONQUISTAS (ALBUM)
   ========================================== */

.memory-card.achievement-card {
    border-style: double !important;
    border-width: 4px !important;
    position: relative;
    overflow: hidden;
    animation: achievementUnlock 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Animação Efeito de Desbloqueio */
@keyframes achievementUnlock {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
        filter: brightness(1.6) contrast(1.2);
    }
    70% {
        transform: scale(1.04) translateY(-3px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: brightness(1) contrast(1);
    }
}

/* Brilho Suave e Varredura Metálica (Shine Sweep) */
.memory-card.achievement-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 35%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.12) 30%,
        rgba(255, 255, 255, 0.28) 50%,
        rgba(255, 255, 255, 0.12) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    transition: none;
    pointer-events: none;
    animation: achievementShine 7s infinite linear;
}

@keyframes achievementShine {
    0% { left: -65%; }
    25% { left: 165%; }
    100% { left: 165%; }
}

/* Molduras e Raridade Visual de Conquistas */
.memory-card.achievement-card.rarity-comum {
    border-color: rgba(200, 203, 217, 0.7) !important;
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.85) 0%, rgba(40, 40, 55, 0.85) 100%) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45), inset 0 0 15px rgba(200, 203, 217, 0.08) !important;
}

.memory-card.achievement-card.rarity-raro {
    border-color: rgba(251, 191, 36, 0.8) !important;
    background: linear-gradient(135deg, rgba(35, 25, 10, 0.9) 0%, rgba(55, 40, 15, 0.9) 100%) !important;
    box-shadow: 0 10px 28px rgba(251, 191, 36, 0.12), inset 0 0 18px rgba(251, 191, 36, 0.1) !important;
}

.memory-card.achievement-card.rarity-lendario {
    border-color: rgba(244, 63, 94, 0.85) !important;
    background: linear-gradient(135deg, rgba(40, 10, 25, 0.9) 0%, rgba(65, 15, 45, 0.9) 100%) !important;
    box-shadow: 0 12px 32px rgba(244, 63, 94, 0.22), inset 0 0 20px rgba(244, 63, 94, 0.15) !important;
    animation: achievementUnlock 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, achievementLegendaryGlow 4s infinite ease-in-out !important;
}

@keyframes achievementLegendaryGlow {
    0% {
        border-color: rgba(244, 63, 94, 0.75);
        box-shadow: 0 10px 28px rgba(244, 63, 94, 0.18), inset 0 0 18px rgba(244, 63, 94, 0.12);
    }
    50% {
        border-color: rgba(244, 63, 94, 1);
        box-shadow: 0 15px 40px rgba(244, 63, 94, 0.45), inset 0 0 30px rgba(244, 63, 94, 0.3);
    }
    100% {
        border-color: rgba(244, 63, 94, 0.75);
        box-shadow: 0 10px 28px rgba(244, 63, 94, 0.18), inset 0 0 18px rgba(244, 63, 94, 0.12);
    }
}

/* Distintivo Superior Exclusivo da Categoria "Conquistas" */
.memory-card.achievement-card .memory-card-badge {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 3px 8px rgba(180, 83, 9, 0.45) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 0.68rem !important;
    padding: 0.2rem 0.55rem !important;
    border-radius: 6px !important;
}

/* Área de Ilustração da Conquista */
.memory-card.achievement-card .memory-card-illustration.illustration-achievement {
    background: radial-gradient(circle, rgba(217, 119, 6, 0.25) 0%, rgba(217, 119, 6, 0.02) 75%) !important;
    border: 1.5px dashed rgba(217, 119, 6, 0.4) !important;
    border-radius: 14px !important;
    margin-bottom: 0.85rem !important;
}

/* ==========================================================================
   SISTEMA DE EFEITOS SONOROS RETRÔ (SÍNTESE WEB AUDIO)
   ========================================================================== */

/* Card de Efeitos Sonoros Retrô */
.premium-sfx-card {
    background: linear-gradient(135deg, rgba(28, 25, 56, 0.85) 0%, rgba(15, 12, 38, 0.95) 100%) !important;
    border: 2px solid rgba(139, 92, 246, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(139, 92, 246, 0.05) !important;
}

.premium-sfx-card .card-title {
    color: #a78bfa !important;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.25);
}

/* Custom range volume slider retrô */
#sfx-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 0.2s ease;
}

#sfx-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #8b5cf6;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffffff;
    transition: transform 0.1s ease, background-color 0.2s ease;
}

#sfx-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: #a78bfa;
}

#sfx-volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #8b5cf6;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffffff;
    transition: transform 0.1s ease, background-color 0.2s ease;
}

#sfx-volume-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    background: #a78bfa;
}

/* Grid de botões de teste sfx */
.sfx-test-buttons-grid .btn-test-sfx {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #cbd5e1 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-weight: 600 !important;
}

.sfx-test-buttons-grid .btn-test-sfx:hover {
    background: rgba(139, 92, 246, 0.15) !important;
    border-color: rgba(139, 92, 246, 0.4) !important;
    color: #f8fafc !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15) !important;
}

.sfx-test-buttons-grid .btn-test-sfx:active {
    transform: translateY(0) !important;
}

/* Botão de mute rápido com hover retrô */
.quick-mute-btn {
    transition: all 0.2s ease !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.quick-mute-btn:hover {
    transform: scale(1.15) rotate(5deg) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1) !important;
}

.quick-mute-btn:active {
    transform: scale(0.95) !important;
}

/* --- ESTILOS PREMIUM PARA O ÁLBUM DE MEMÓRIAS --- */
.memory-event-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    z-index: 1;
    transition: transform 0.5s ease;
}
.memory-card:hover .memory-event-image {
    transform: scale(1.05);
}
.memory-illustration-content-mini {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1.3rem;
    z-index: 2;
    background: rgba(15, 23, 42, 0.6);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: pulseMini 3s infinite ease-in-out;
}
@keyframes pulseMini {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}
