/* ====================================================================
   ⛩️ KITSUNECRAFT ATM10 - DESIGN TOKENS & TEMA OFICIAL
   Conceito: Tech-Magic Shrine (Santuário Místico x All The Mods 10)
   Fonte: tokens/theme.css & MANUAL_DE_IDENTIDADE_VISUAL.md
   ==================================================================== */

:root {
    /* 🦊 Cores Principais Kitsune */
    --color-kitsune-primary: #F39C12;
    --color-kitsune-orange: #E67E22;
    --color-sakura-pink: #FD79A8;
    --color-sakura-soft: #F8A5C2;
    
    /* ⚡ Minérios & Energia ATM10 */
    --color-atm-star: #FFD700;
    --color-allthemodium: #F1C40F;
    --color-vibranium: #00CEC9;
    --color-vibranium-blue: #0984E3;
    --color-unobtainium: #9B51E0;
    --color-unobtainium-purple: #6C5CE7;

    /* 🌌 Superfícies & Fundo Oficial */
    --bg-night-base: #0f1016;
    --bg-night-surface: #171923;
    --bg-night-card: rgba(26, 29, 41, 0.85);

    /* 📝 Textos */
    --text-pure-white: #FFFFFF;
    --text-muted: #A4B0BE;
    --text-dim: #747D8C;

    /* 🎨 Gradientes de Assinatura */
    --grad-kitsune-sakura: linear-gradient(135deg, #F39C12 0%, #FD79A8 100%);
    --grad-atm-power: linear-gradient(135deg, #FFD700 0%, #00CEC9 50%, #9B51E0 100%);
    --grad-vibranium-glow: linear-gradient(135deg, #00CEC9 0%, #0984E3 100%);
    --grad-unobtainium-glow: linear-gradient(135deg, #9B51E0 0%, #6C5CE7 100%);
    --grad-dark-card: linear-gradient(180deg, rgba(30, 33, 48, 0.95) 0%, rgba(18, 20, 29, 0.98) 100%);

    /* ✨ Efeitos de Iluminação / Glow */
    --glow-kitsune: 0 0 20px rgba(243, 156, 18, 0.45);
    --glow-sakura: 0 0 20px rgba(253, 121, 168, 0.45);
    --glow-atm-star: 0 0 25px rgba(255, 215, 0, 0.55);
    --glow-vibranium: 0 0 20px rgba(0, 206, 201, 0.45);
    --glow-unobtainium: 0 0 20px rgba(155, 81, 224, 0.45);
}

/* ====================================================================
   MASCOTE KITSU CARD & DESTAQUES VISUAIS
   ==================================================================== */
.mascot-feature-card {
    background: var(--grad-dark-card);
    border: 1px solid rgba(0, 206, 201, 0.3);
    border-radius: 20px;
    padding: 2.8rem;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    align-items: center;
    box-shadow: var(--shadow-epic);
    margin-top: 1rem;
}

.mascot-avatar-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid var(--color-kitsune-primary);
    box-shadow: var(--glow-kitsune);
}

/* ====================================================================
   CARDS DE PRODUTOS & CORES POR TIER ATM10
   ==================================================================== */
.vip-card[style*="#06b6d4"], .vip-card[style*="#00CEC9"], .vip-card[style*="#10b981"] {
    border-color: var(--color-vibranium);
    box-shadow: 0 0 25px rgba(0, 206, 201, 0.2);
}

.vip-card[style*="#F1C40F"], .vip-card[style*="#FFD700"], .vip-card[style*="#f59e0b"] {
    border-color: var(--color-atm-star);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
}

.vip-card[style*="#9B51E0"], .vip-card[style*="#6C5CE7"], .vip-card[style*="#a855f7"] {
    border-color: var(--color-unobtainium);
    box-shadow: 0 0 25px rgba(155, 81, 224, 0.25);
}

@media (max-width: 850px) {
    .mascot-feature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .mascot-avatar-img {
        margin: 0 auto;
    }
}
