.status-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.status-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00f7ff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.2);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 247, 255, 0.3);
}

.status-title {
    color: #00f7ff;
    font-size: 1.2em;
    font-weight: bold;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4CAF50;
    animation: pulse 2s infinite;
}

.status-text {
    color: #4CAF50;
    font-size: 0.9em;
}

.status-details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    margin-top: 15px;
}

.status-label {
    color: #888;
    font-size: 0.9em;
}

.status-value {
    color: white;
    text-align: right;
    font-size: 0.9em;
}

.boss-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.boss-table th,
.boss-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 247, 255, 0.1);
}

.boss-table th {
    color: #00f7ff;
    font-weight: normal;
}

.boss-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.boss-icon {
    width: 24px;
    height: 24px;
    background: #66f;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
}

.timer {
    color: #ffd700;
    font-family: monospace;
}

.respawn-soon {
    color: #ff4444;
    animation: blink 1s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .boss-table th,
    .boss-table td {
        padding: 8px;
        font-size: 0.9em;
    }

    .status-details {
        font-size: 0.9em;
    }

    .boss-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .status-card {
        padding: 15px;
    }

    .boss-table th,
    .boss-table td {
        padding: 6px;
        font-size: 0.8em;
    }
}