/**
 * Midnight Expansion - Raids Module Styles
 */

.raids-module {
    color: #f8fafc;
}

/* Schedule Section */
.schedule-container {
    margin-top: 2rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.schedule-week {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.schedule-week.highlight {
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(167, 139, 250, 0.05);
}

.week-title {
    display: block;
    color: #a78bfa;
    font-weight: bold;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
    padding-bottom: 0.5rem;
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-list li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.schedule-list li::before {
    content: "◈";
    color: #a78bfa;
    font-size: 0.8rem;
}

/* Raid Cards */
.raids-list-section {
    margin-top: 4rem;
}

.raid-card {
    margin-bottom: 3rem;
    overflow: hidden;
}

.raid-card-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.raid-banner-wrapper {
    width: 300px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.raid-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.raid-info h3 {
    margin-top: 0;
    font-size: 2rem;
    color: #f8fafc;
}

.raid-info .raid-meta {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

/* Boss Grid */
.boss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.boss-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.boss-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(167, 139, 250, 0.3);
}

.boss-model-thumb {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 2px solid rgba(167, 139, 250, 0.2);
    overflow: hidden;
    background: #000;
}

.boss-model-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boss-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .raid-card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .raid-banner-wrapper {
        width: 100%;
        max-width: 400px;
    }
}