/* ==== Components CSS - Estilos modulares para componentes específicos ====*/

/* Wiki Logo */
.wiki-logo-centered {
    width: 40%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Training Flow Diagram */
.training-flow-diagram {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Interactive Map */
.interactive-map {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Daily Hunt Image */
.daily-hunt-image {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    display: block;
}

/* Sigils Full Image */
.sigils-full-image {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    display: block;
}

/* PvP Main Image */
.pvp-main-image {
    width: 70%;
    max-width: 800px;
    margin: 20px auto;
    display: block;
}

/* Skull Icons */
.skull-icons {
    width: 10%;
    max-width: 800px;
    margin-right: 5px;
    display: inline-block;
}

/* Game Style Box */
.game-style-box {
    margin-top: 20px;
    background-color: rgba(204, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--color-red-primary);
}

.game-style-box h3 {
    margin-top: 0;
}

/* Mechanics Gallery */
.mechanics-gallery {
    margin-bottom: 15px;
}

.mechanics-gallery-center {
    text-align: center;
}

/* Stat Bar Fill Variations */
.stat-bar-fill--10 { width: 10%; }
.stat-bar-fill--20 { width: 20%; }
.stat-bar-fill--30 { width: 30%; }
.stat-bar-fill--40 { width: 40%; }
.stat-bar-fill--60 { width: 60%; }
.stat-bar-fill--70 { width: 70%; }
.stat-bar-fill--80 { width: 80%; }

/* Responsive Images */
.responsive-image {
    max-width: 100%;
    height: auto;
}

/* Centered Block Image */
.centered-block-image {
    display: block;
    margin: 20px auto;
}

/* Guild Gallery */
.guild-gallery img {
    width: 40%;
    max-width: 800px;
    margin: 20px auto;
    display: block;
}

/* ===== ABILITY CARDS VISUAL ENHANCEMENTS ===== */
/* Melhorias conservadoras para os cards de habilidades sem alterar estrutura */

/* Gradiente sutil para os ability cards */
.ability-card {
    background: linear-gradient(135deg, 
        var(--ability-card-bg) 0%, 
        rgba(26, 26, 26, 0.95) 50%,
        var(--ability-card-bg) 100%);
    position: relative;
}

/* Efeito de brilho sutil no hover */
.ability-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(204, 0, 0, 0.05), 
        transparent);
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.ability-card:hover::after {
    left: 100%;
}

/* Melhoria no ícone da habilidade */
.ability-icon {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, 
        rgba(204, 0, 0, 0.1), 
        rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.ability-card:hover .ability-icon {
    box-shadow: 0 6px 16px rgba(204, 0, 0, 0.4);
    transform: scale(1.05);
    border-color: var(--color-red-bright);
}

/* Melhoria na seção de stats */
.ability-stats {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(20, 20, 30, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.ability-card:hover .ability-stats {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(20, 20, 30, 0.5) 100%);
    border-color: rgba(204, 0, 0, 0.2);
}

/* Melhorias nas informações dos stats */
.stat-group p {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: color 0.2s ease;
}

.stat-group p:last-child {
    border-bottom: none;
}

.stat-group p:hover {
    color: #ffffff;
}

.stat-group strong {
    display: inline-block;
    min-width: 140px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Correção do espaçamento dos atributos */
.stat-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-name span:first-child {
    font-weight: 700;
}

.stat-name span:last-child {
    font-weight: 600;
    color: var(--color-accent);
    margin-left: auto;
}
