/* ============================================
   🔑 MYTHIC+ AFFIXES WIDGET
   ============================================ */

.mythic-affixes-widget {
    background: rgba(15, 20, 35, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.widget-header-affixes {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-header-affixes h3 {
    margin: 0;
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-header-affixes .affix-icon {
    font-size: 1.3rem;
}

.reset-timer {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.affixes-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.affix-item {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.affix-item:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateX(5px);
}

.affix-icon-container {
    flex-shrink: 0;
}

.affix-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.affix-info {
    flex: 1;
}

.affix-name {
    color: #60a5fa;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
}

.affix-description {
    color: #94a3b8;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.affixes-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.raiderio-link {
    display: inline-block;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 6px;
    background: rgba(96, 165, 250, 0.1);
    transition: all 0.3s ease;
}

.raiderio-link:hover {
    background: rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2);
}

.affix-error {
    text-align: center;
    padding: 1.5rem;
    color: #f87171;
    font-size: 0.9rem;
}

.affix-error p {
    margin: 0;
}

/* ==========================================
   MOBIL RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .mythic-affixes-widget {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .widget-header-affixes h3 {
        font-size: 1rem;
    }

    .widget-header-affixes .affix-icon {
        font-size: 1.1rem;
    }

    .affix-item {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem;
    }

    .affix-icon-img {
        width: 36px;
        height: 36px;
    }

    .affix-name {
        font-size: 0.85rem;
    }

    .affix-description {
        font-size: 0.75rem;
    }

    .raiderio-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}
