/* =========================================
   殺戮活動頁面專用樣式 (activityKill)
   ========================================= */

/* --- 時間表容器 --- */
.kill-schedule-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --- 單個時間卡片 --- */
.kill-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-red); /* 左側殺氣紅線 */
    padding: 15px 20px;
    border-radius: 4px;
    transition: transform 0.2s, background 0.2s;
}

.kill-card:hover {
    background: rgba(215, 66, 60, 0.15); /* Hover 時透紅光 */
    transform: translateX(5px);
}

/* --- 星期幾 --- */
.kill-day {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-gold);
    min-width: 80px;
}

/* --- 時間區域 --- */
.kill-time {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- 狀態標籤 (活動期間) --- */
.status-badge {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71; /* 綠色文字 */
    border: 1px solid #2ecc71;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 20px;
}

.time-text {
    font-family: 'Consolas', monospace; /* 數字用等寬字體比較好看 */
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1px;
}

/* --- 圖片展示區 (Grid 排版) --- */
.kill-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 電腦版並排兩張 */
    gap: 20px;
    margin-top: 15px;
}

.gallery-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    transition: opacity 0.3s;
}

.gallery-item:hover img {
    opacity: 0.9;
}

/* =========================================
   手機版響應式 (Max-width: 768px)
   ========================================= */
@media (max-width: 768px) {
    /* 時間卡片改為垂直堆疊內容 */
    .kill-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .kill-time {
        width: 100%;
        justify-content: space-between; /* 標籤靠左、時間靠右 */
    }

    /* 圖片改為直排 (一張一行) */
    .kill-gallery {
        grid-template-columns: 1fr; 
    }
}