/* Widgets personalizados para Ether Saga - Tema Oscuro */
.widgets-container {
    margin-bottom: 30px;
}

.widget-card {
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid #c9a959;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.widget-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 89, 0.2);
    border-color: #dbb86b;
}

.widget-title {
    color: #c9a959;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.widget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.widget-item {
    background: rgba(30, 30, 35, 0.9);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 1px solid #404040;
    transition: all 0.3s ease;
}

.widget-item:hover {
    border-color: #c9a959;
}

.widget-icon {
    font-size: 32px;
    color: #c9a959;
    margin-bottom: 10px;
}

.widget-label {
    color: #aaa;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-value {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin: 5px 0;
}

.widget-value.online {
    color: #28a745;
}

.widget-value.offline {
    color: #dc3545;
}

.widget-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.badge-online {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.badge-offline {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

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

.gm-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 3px solid #c9a959;
}

.gm-name {
    color: #fff;
    font-weight: 500;
}

.gm-status {
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
}

.gm-status.online {
    background: #28a745;
    color: white;
}

.gm-status.offline {
    background: #6c757d;
    color: white;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.stat-box {
    flex: 1;
    min-width: 150px;
    background: linear-gradient(145deg, #1e1e24, #151518);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid #333;
}

.stat-box .number {
    font-size: 28px;
    font-weight: bold;
    color: #c9a959;
    line-height: 1.2;
}

.stat-box .desc {
    color: #aaa;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
}

.server-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: bold;
}

.server-status.online {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border: 1px solid #28a745;
}

.server-status.offline {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid #dc3545;
}
