﻿
.game-header {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #dee2e6;
}

.game-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    background-color: white;
}

    .game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.game-card-body {
    padding: 1.5rem;
}

.game-title {
    color: #8b0000;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.popularity-badge {
    background-color: #d63384;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
}

.game-description {
    color: #6c757d;
    margin: 1rem 0;
}

.game-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.back-button {
    background-color: white;
    color: #8b0000;
    border: 2px solid #8b0000;
    transition: all 0.3s ease;
}

    .back-button:hover {
        background-color: #8b0000;
        color: white;
    }

.download-btn {
    background-color: #8b0000;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: left;
}

    .download-btn:hover {
        background-color: #d63384;
        transform: scale(1.02);
        color: white;
    }

    .download-btn i {
        margin-right: 8px;
    }

.similar-games {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.game-rules {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

    .game-rules h3 {
        color: #8b0000;
        margin-bottom: 1rem;
    }

.download-section {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

    .download-section h3 {
        color: #8b0000;
        margin-bottom: 1.5rem;
    }

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}
