/* Game Detail Page Styles - UPDATED */
/* Add this to /games/css/game-detail-styles.css */

.game-detail-page {
    background: #f9f9f9;
}

/* CRITICAL: Override main site CSS that hides #other */
#other {
    display: block !important;
}

/* Breadcrumb Container - aligns with content */
.breadcrumb-container {
    max-width: 990px;
    margin: 20px auto 0;
    padding: 0 20px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: #999;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #333;
    text-decoration: underline;
}

.breadcrumb li:last-child span {
    color: #333;
    font-weight: 500;
}
