/**
 * Raider.io Widget CSS
 * Eternal Illusion - 2025. október 26.
 */

/* RAIDER.IO WIDGET FŐKONTÉNER */
.raiderio-widget {
    background: rgba(42, 42, 42, 0.9);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.raiderio-widget:hover {
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

.raiderio-widget .widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

.raiderio-widget .widget-header h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin: 0;
}

/* AFFIXEK SZEKCIÓ */
.affixes-section {
    margin-bottom: 25px;
}

.affixes-section h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.affixes-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.affix-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.affix-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-left-color: #667eea;
    transform: translateX(5px);
}

/* Affix típus szerinti színezés */
.affix-item[data-affix="1"] {
    border-left-color: #ff6b35; /* Tyrannical/Fortified - narancssárga */
}

.affix-item[data-affix="2"] {
    border-left-color: #ffd700; /* 2. affix - arany */
}

.affix-item[data-affix="3"] {
    border-left-color: #667eea; /* 3. affix - kék */
}

.affix-item[data-affix="4"] {
    border-left-color: #764ba2; /* Seasonal - lila */
}

.affix-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #667eea;
    flex-shrink: 0;
}

.affix-info {
    flex: 1;
    min-width: 0;
}

.affix-name {
    font-weight: 600;
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 4px;
}

.affix-description {
    color: #b0b0b0;
    font-size: 0.85rem;
    line-height: 1.4;
    /* Teljes szöveg megjelenítése - nincs levágás */
}

.affix-level {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    min-width: 45px;
    text-align: center;
}

/* RESET COUNTDOWN SZEKCIÓ */
.reset-section {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.reset-section h4 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reset-countdown {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
    gap: 10px;
}

.countdown-item {
    text-align: center;
    background: rgba(42, 42, 42, 0.8);
    border-radius: 10px;
    padding: 15px 10px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 5px;
    line-height: 1;
}

.countdown-label {
    color: #b0b0b0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reset-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reset-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
    font-weight: 600;
}

.reset-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.reset-error {
    text-align: center;
    padding: 20px;
    color: #b0b0b0;
}

.reset-error i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 10px;
    display: block;
}

/* GYORS LINKEK */
.quick-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 140px;
}

.quick-link:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
    color: #667eea;
    transform: translateY(-2px);
}

/* ANIMÁCIÓK */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
    }
}

.countdown-item:first-child .countdown-number {
    animation: pulseGlow 2s infinite;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .raiderio-widget {
        padding: 20px;
    }
    
    .affixes-list {
        gap: 10px;
    }
    
    .affix-item {
        flex-direction: column;
        text-align: center;
        padding: 15px 10px;
    }
    
    .affix-info {
        order: 2;
        margin-top: 10px;
    }
    
    .affix-level {
        order: 1;
        margin-bottom: 10px;
    }
    
    .affix-icon {
        order: 3;
        margin-top: 10px;
    }
    
    .reset-countdown {
        flex-direction: column;
        gap: 8px;
    }
    
    .countdown-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .quick-links {
        flex-direction: column;
    }
    
    .quick-link {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .raiderio-widget {
        padding: 15px;
    }
    
    .affix-item {
        padding: 12px 8px;
    }
    
    .affix-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .affix-name {
        font-size: 0.95rem;
    }
    
    .affix-description {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}

/* TOOLTIP STÍLUSOK (opcionális) */
.affix-item[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
}

.affix-item[title]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}