/**
 * Characters Modal CSS
 * Eternal Illusion - Karaktereim modal komplex stílusok
 * 2025. október 27.
 */

/* ===== CHARACTERS MODAL SPECIFIC STYLES ===== */

/* Characters Modal specific styling - size now handled by Universal Modal */

/* Responsive mobil esetén */
@media (max-width: 768px) {
    .modal-content:has(.characters-content) {
        max-width: 98% !important;
        width: 98% !important;
        min-height: auto;
        margin: 5px;
    }
}

/* ===== MAIN CHARACTERS CONTAINER ===== */

.characters-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 20px;
    min-height: 700px;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Responsive mobil - single column */
@media (max-width: 768px) {
    .characters-content {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
        min-height: auto;
    }
}

/* ===== CHARACTER LIST SECTION ===== */

.character-list-section {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.8), rgba(20, 20, 40, 0.9));
    border-radius: 15px;
    border: 2px solid rgba(0, 188, 212, 0.3);
    padding: 20px;
    overflow-y: auto;
    max-height: 100%;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 188, 212, 0.2);
}

.list-header h3 {
    color: #ffd700;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.list-header h3 i {
    margin-right: 10px;
    color: #00bcd4;
}

.list-actions {
    display: flex;
    gap: 10px;
}

.refresh-btn, .add-character-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: white;
}

.refresh-btn:hover {
    background: linear-gradient(135deg, #0097a7, #00838f);
    transform: translateY(-1px);
}

.add-character-btn {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    color: white;
}

.add-character-btn:hover {
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    transform: translateY(-1px);
}

/* ===== CHARACTER GRID ===== */

.character-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loading-characters {
    text-align: center;
    padding: 40px 20px;
    color: #e0e6ed;
}

.loading-characters .spinner i {
    font-size: 2rem;
    color: #00bcd4;
    margin-bottom: 15px;
}

.no-characters {
    text-align: center;
    padding: 40px 20px;
    color: #b0b0b0;
}

.empty-state i {
    font-size: 3rem;
    color: #666;
    margin-bottom: 15px;
}

.empty-state h4 {
    margin: 0 0 10px 0;
    color: #e0e6ed;
}

.add-first-character-btn {
    margin-top: 20px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4caf50, #388e3c);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-first-character-btn:hover {
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    transform: translateY(-1px);
}

/* Character Buttons */
.character-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(40, 40, 60, 0.8), rgba(30, 30, 50, 0.9));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.character-btn:hover {
    border-color: rgba(0, 188, 212, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.1);
}

.character-btn.active {
    border-color: #00bcd4;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 151, 167, 0.2));
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.2);
}

.char-btn-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #00bcd4;
    object-fit: cover;
}

.char-btn-info {
    flex: 1;
}

.char-btn-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #ffd700;
}

.char-btn-details {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0 0 3px 0;
}

.char-btn-realm {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

.char-btn-ilvl {
    text-align: center;
    padding: 8px;
    background: rgba(255, 152, 0, 0.2);
    border-radius: 6px;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.char-btn-ilvl-number {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ff9800;
    line-height: 1;
}

.char-btn-ilvl-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

/* ===== CHARACTER DETAILS SECTION ===== */

.character-details-section {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.8), rgba(20, 20, 40, 0.9));
    border-radius: 15px;
    border: 2px solid rgba(0, 188, 212, 0.3);
    padding: 20px;
    overflow-y: auto;
    max-height: 100%;
}

/* ===== SELECTED CHARACTER HEADER ===== */

.selected-character-header {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(40, 40, 60, 0.8), rgba(30, 30, 50, 0.9));
    border-radius: 12px;
    border: 2px solid rgba(0, 188, 212, 0.3);
}

.char-avatar-section {
    position: relative;
}

.selected-char-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #00bcd4;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.char-level-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #ffd700;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 12px;
    border: 2px solid #1a1a2e;
    min-width: 30px;
    text-align: center;
}

.char-info-section {
    flex: 1;
}

.char-name {
    color: #ffd700;
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.char-details {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.char-race, .char-class, .char-spec {
    background: rgba(0, 188, 212, 0.2);
    color: #80deea;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.char-realm {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.char-realm i {
    margin-right: 5px;
    color: #00bcd4;
}

.char-ilvl-section {
    text-align: center;
}

.ilvl-display {
    padding: 15px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(255, 152, 0, 0.3);
}

.ilvl-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ff9800;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.ilvl-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.char-actions-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.refresh-char-btn, .close-details-btn {
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.refresh-char-btn {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: white;
}

.refresh-char-btn:hover {
    background: linear-gradient(135deg, #0097a7, #00838f);
    transform: scale(1.05);
}

.close-details-btn {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
}

.close-details-btn:hover {
    background: linear-gradient(135deg, #d32f2f, #c62828);
    transform: scale(1.05);
}

/* ===== LOADING STATE FOR CHARACTER DETAILS ===== */

.char-loading {
    text-align: center;
    padding: 60px 20px;
    color: #e0e6ed;
}

.loading-container h3 {
    color: #ffd700;
    margin: 20px 0 10px 0;
    font-size: 1.4rem;
}

.loading-spinner i {
    font-size: 3rem;
    color: #00bcd4;
    margin-bottom: 20px;
}

.loading-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 20px auto;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00bcd4, #4caf50);
    width: 0%;
    border-radius: 2px;
    animation: progressLoad 3s ease-in-out infinite;
}

@keyframes progressLoad {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ===== TAB NAVIGATION ===== */

.character-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 188, 212, 0.2);
    padding-bottom: 15px;
}

.tab-btn {
    padding: 12px 20px;
    border: none;
    background: rgba(40, 40, 60, 0.6);
    color: #b0b0b0;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    flex: 1;
    text-align: center;
}

.tab-btn:hover {
    background: rgba(0, 188, 212, 0.1);
    color: #80deea;
}

.tab-btn.active {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.tab-btn i {
    margin-right: 8px;
}

/* Responsive tabs */
@media (max-width: 768px) {
    .character-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-btn {
        flex: 1 1 calc(50% - 4px);
        min-width: 120px;
    }
}

/* ===== TAB CONTENT ===== */

.tab-content-container {
    min-height: 400px;
}

.tab-content {
    display: none;
    animation: fadeInTab 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== OVERVIEW TAB ===== */

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

.stats-panel, .gear-summary-panel {
    background: linear-gradient(135deg, rgba(40, 40, 60, 0.6), rgba(30, 30, 50, 0.8));
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.stats-panel h4, .gear-summary-panel h4 {
    color: #ffd700;
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.stats-panel h4 i, .gear-summary-panel h4 i {
    margin-right: 8px;
    color: #00bcd4;
}

.stat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-name {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.stat-value {
    color: #e0e6ed;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Gear Summary Grid */
.gear-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.summary-item {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-2px);
}

.summary-item.success {
    border-color: rgba(76, 175, 80, 0.5);
    background: rgba(76, 175, 80, 0.1);
}

.summary-item.warning {
    border-color: rgba(255, 152, 0, 0.5);
    background: rgba(255, 152, 0, 0.1);
}

.summary-item.error {
    border-color: rgba(244, 67, 54, 0.5);
    background: rgba(244, 67, 54, 0.1);
}

.summary-number {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 5px;
    color: #e0e6ed;
}

.summary-item.success .summary-number {
    color: #4caf50;
}

.summary-item.warning .summary-number {
    color: #ff9800;
}

.summary-item.error .summary-number {
    color: #f44336;
}

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

/* ===== GEAR TAB ===== */

.gear-container h4 {
    color: #ffd700;
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.gear-container h4 i {
    margin-right: 10px;
    color: #00bcd4;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 15px;
}

/* ===== GEAR SLOTS ===== */

.gear-slot {
    background: linear-gradient(135deg, rgba(40, 40, 60, 0.7), rgba(30, 30, 50, 0.9));
    border-radius: 12px;
    border: 2px solid rgba(0, 188, 212, 0.3);
    padding: 15px;
    transition: all 0.3s ease;
}

.gear-slot:hover {
    border-color: rgba(0, 188, 212, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.2);
}

.gear-slot.empty {
    opacity: 0.6;
    border-color: rgba(120, 120, 120, 0.3);
}

.gear-slot-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 188, 212, 0.2);
}

.gear-slot-header i {
    color: #00bcd4;
    margin-right: 8px;
    font-size: 1.1rem;
}

.slot-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== GEAR ITEMS ===== */

.gear-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(20, 20, 40, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gear-item.empty {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    opacity: 0.5;
}

.item-icon {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-level {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: transparent; /* Nincs háttér! */
    background: linear-gradient(135deg, #87ceeb, #ffffff, #4fc3f7); /* Kékes-fehéres átmenet */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.85rem; /* Nagyobb betűméret */
    font-weight: 800; /* Extra vastag betű */
    padding: 2px 4px;
    border-radius: 3px;
    min-width: 20px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Finomabb árnyék */
}

.item-details {
    flex: 1;
    min-width: 0;
}

.item-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ===== ENCHANT/GEM STATUS ===== */

.enchant-status, .gem-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    padding: 3px 6px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
}

.enchant-status.has-enchant, .gem-status.has-gems {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.enchant-status.missing-enchant, .gem-status.missing-gems {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.enchant-status i, .gem-status i {
    font-size: 0.7rem;
}

/* ===== EMPTY SLOTS ===== */

.empty-slot-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 8px;
}

.empty-slot-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-style: italic;
}

/* ===== ENCHANTS TAB ===== */

.enchants-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.enchant-section, .gem-section, .applied-section {
    background: linear-gradient(135deg, rgba(40, 40, 60, 0.6), rgba(30, 30, 50, 0.8));
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.enchant-section h4, .gem-section h4, .applied-section h4 {
    color: #ffd700;
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.enchant-section h4 i {
    margin-right: 8px;
    color: #ff9800;
}

.gem-section h4 i {
    margin-right: 8px;
    color: #e91e63;
}

.applied-section h4 i {
    margin-right: 8px;
    color: #4caf50;
}

/* ===== STATS TAB ===== */

.stats-container h4 {
    color: #ffd700;
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.stats-container h4 i {
    margin-right: 10px;
    color: #00bcd4;
}

.detailed-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* ===== WOW CLASS COLORS ===== */

.class-death-knight { color: #c41e3a !important; }
.class-demon-hunter { color: #a330c9 !important; }
.class-druid { color: #ff7c0a !important; }
.class-evoker { color: #33937f !important; }
.class-hunter { color: #aad372 !important; }
.class-mage { color: #3fc7eb !important; }
.class-monk { color: #00ff98 !important; }
.class-paladin { color: #f48cba !important; }
.class-priest { color: #ffffff !important; }
.class-rogue { color: #fff468 !important; }
.class-shaman { color: #0070dd !important; }
.class-warlock { color: #8788ee !important; }
.class-warrior { color: #c69b6d !important; }
.class-unknown { color: #b0b0b0 !important; }

/* ===== STATS TAB ===== */

.universal-modal .stats-container,
.stats-container {
    padding: 20px;
}

.universal-modal .stats-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.universal-modal .stat-section,
.stat-section {
    background: linear-gradient(135deg, rgba(40, 40, 60, 0.7), rgba(30, 30, 50, 0.9));
    border-radius: 12px;
    border: 2px solid rgba(0, 188, 212, 0.3);
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-section:hover {
    border-color: rgba(0, 188, 212, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.2);
}

.stat-section h4 {
    color: #ffd700;
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.stat-section h4 i {
    color: #00bcd4;
}

/* ===== STAT LIST ===== */

.universal-modal .stat-list,
.stat-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.universal-modal .stat-item,
.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(20, 20, 40, 0.4);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item.highlight {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(0, 150, 170, 0.1));
    border-color: rgba(0, 188, 212, 0.3);
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.stat-value.ilvl {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1rem;
}

.stat-value.score {
    color: #5293b8;
    font-weight: 700;
    font-size: 1.1rem;
}

.stat-value.key {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.1rem;
}

.stat-value.guild-name {
    color: #00bcd4;
    font-weight: 600;
}

.stat-value.faction.horde {
    color: #ff4444;
    font-weight: bold;
}

.stat-value.faction.alliance {
    color: #4488ff;
    font-weight: bold;
}

/* ===== RAID PROGRESS ===== */

.universal-modal .raid-list,
.raid-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.universal-modal .raid-item,
.raid-item {
    padding: 12px;
    background: rgba(20, 20, 40, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.raid-name {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.universal-modal .raid-progress,
.raid-progress {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.difficulty {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.difficulty.normal {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.difficulty.heroic {
    background: rgba(255, 152, 0, 0.2);
    border: 1px solid rgba(255, 152, 0, 0.4);
}

.difficulty.mythic {
    background: rgba(156, 39, 176, 0.2);
    border: 1px solid rgba(156, 39, 176, 0.4);
}

.diff-label {
    color: #b0b0b0;
    font-weight: 600;
}

.progress {
    color: #ffffff;
    font-weight: 700;
}

.no-raids, .no-data {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 20px;
}

/* ===== RESPONSIVE STATS ===== */

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .raid-progress {
        flex-direction: column;
        gap: 8px;
    }
    
    .difficulty {
        justify-content: space-between;
    }
}