/* Home Page Styles */

.hero-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
    border: 1px solid #363636;
}

.hero-card h1 {
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

/* Status Indicators */
.status-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.status-indicator.online {
    background: rgba(25, 135, 84, 0.2);
    color: #198754;
    animation: pulse-green 2s infinite;
}

.status-indicator.offline {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(25, 135, 84, 0);
    }
}

/* Server Cards */
.server-card {
    border: 1px solid #252525;
    transition: all 0.3s ease;
}

.server-card:hover {
    border-color: #ffc107;
    transform: translateY(-2px);
}

.server-card.offline {
    opacity: 0.7;
}

.server-card.offline:hover {
    border-color: #dc3545;
}

/* Info Cards */
.info-card {
    background: #0e0e0e;
    border: 1px solid #252525;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #ffc107;
}

/* Player Badges */
.player-badge {
    border: 1px solid #363636;
    font-weight: normal;
}

/* Player Items */
.player-item {
    border: 1px solid #252525;
    transition: all 0.2s ease;
}

.player-item:hover {
    border-color: #363636;
    background: #161616 !important;
}

/* Quick Link Buttons */
.quick-link-btn {
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link-btn:hover {
    transform: translateX(5px);
    background-color: #323232 !important;
}

/* Refresh Button Animation */
.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Card Styling */
.card {
    border-radius: 0.75rem;
    overflow: hidden;
}

.card-header {
    padding: 1rem 1.25rem;
}

/* Badge Styling */
.badge.bg-color {
    border: 1px solid #363636;
}

/* Progress Bar */
.progress {
    border-radius: 0.5rem;
    overflow: hidden;
}

.progress-bar {
    border-radius: 0.5rem;
}

/* Footer */
footer {
    border-top: 1px solid #363636;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-card h1 {
        font-size: 1.75rem;
    }
    
    .info-card {
        padding: 0.5rem !important;
    }
    
    .status-indicator {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Loading State */
.spinner-border {
    width: 2rem;
    height: 2rem;
}
