/* 
 * Steam Simulators - Core Styles
 */

.steam-simulators-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.steam-simulators-grid.steam-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.steam-simulators-grid.steam-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.steam-simulators-grid.steam-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .steam-simulators-grid {
        grid-template-columns: 1fr !important;
    }
}

.steam-simulator-card {
    background: linear-gradient(135deg, #1a2744 0%, #0f2847 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.steam-simulator-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.6);
}

.steam-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.steam-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e8f4ff;
    margin: 0.5rem 0;
}

.steam-card-category {
    font-size: 0.8rem;
    color: #8ba3c4;
    margin-bottom: 1rem;
}

.steam-launch-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #0a1628;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.steam-launch-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.steam-error {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #ff6b35;
    border-radius: 8px;
    padding: 1rem;
    color: #ff6b35;
    text-align: center;
}

.steam-license-error {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid #00d4ff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    margin: 2rem auto;
}

.steam-error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.steam-error-link {
    display: inline-block;
    margin-top: 1rem;
    color: #00d4ff;
    text-decoration: underline;
}

.steam-admin-wrap {
    max-width: 1200px;
}

.steam-admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.steam-stat-box {
    background: linear-gradient(135deg, #1a2744 0%, #0f2847 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.steam-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    font-family: 'Orbitron', monospace;
}

.steam-stat-label {
    display: block;
    font-size: 0.875rem;
    color: #8ba3c4;
    margin-top: 0.5rem;
}

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

.steam-admin-card {
    background: linear-gradient(135deg, #1a2744 0%, #0f2847 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.steam-admin-card h2 {
    color: #00d4ff;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.steam-admin-card code {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: #4ecdc4;
}

.steam-admin-card ul {
    color: #8ba3c4;
    margin-left: 1.5rem;
}

.steam-license-active {
    color: #4ecdc4;
    font-weight: 600;
}

.steam-license-inactive {
    color: #ff6b6b;
    font-weight: 600;
}

.steam-category-badge {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.steam-status-enabled {
    color: #4ecdc4;
    font-weight: 600;
}

.steam-status-disabled {
    color: #ff6b6b;
    font-weight: 600;
}
