.game-detail {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

.game-section {
    margin-bottom: 1.5rem;
}

.game-section__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.game-section__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border-radius: var(--radius-sm);
    color: var(--accent);
    flex-shrink: 0;
}

.game-section__title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.game-header {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
}

.game-header__cover {
    width: 460px;
    height: 215px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.game-header__cover:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), var(--shadow-md);
}

.game-header__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.game-header__title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.game-header__desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 560px;
}

.game-header__links {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.badge--nsfw {
    background: var(--red-subtle);
    color: var(--red);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
    vertical-align: middle;
    line-height: 1;
}

.badge--soon {
    background: var(--amber-subtle);
    color: var(--amber);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
    vertical-align: middle;
    line-height: 1;
}

.game-stats {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    max-width: calc(6 * 180px + 5 * 16px);
    margin: 0 auto;
}

.stat-block {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem;
    transition: all var(--transition-fast);
    text-align: center;
    width: -moz-available;
}

.stat-block:hover {
    border-color: var(--border-bright);
    background: var(--bg-hover);
}

.stat-block--locked {
    opacity: 0.5;
    border-style: dashed;
}

.stat-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.375rem;
}

.stat-value {
    display: block;
    font-family: var(--font-data);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.stat-value--revenue {
    color: var(--green);
    font-weight: 600;
}

.stat-value--locked {
    color: var(--text-muted);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-right: 0.25rem;
}

.price-badge {
    display: inline;
    background: var(--green-subtle);
    color: var(--green);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.1rem 0.35rem;
    border-radius: var(--radius-sm);
    margin-right: 0.25rem;
}

.game-identity {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.game-identity__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 2rem;
}

.identity-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.identity-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.identity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.identity-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    cursor: default;
    line-height: 1.4;
}

.identity-chip:hover {
    background: var(--accent-subtle);
    border-color: var(--accent);
    color: var(--accent);
}

.identity-chip--link {
    cursor: pointer;
    text-decoration: none;
}

.identity-chip--link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.game-media {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.media-viewer {
    position: relative;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
}

.media-viewer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
    z-index: 2;
}

.media-nav:hover {
    background: rgba(0, 0, 0, 0.85);
}

.media-nav--prev {
    left: 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.media-nav--next {
    right: 0;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.media-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-family: var(--font-data);
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.media-strip {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.media-strip::-webkit-scrollbar {
    height: 4px;
}

.media-strip__thumb {
    width: 120px;
    height: 68px;
    flex-shrink: 0;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    opacity: 0.7;
}

.media-strip__thumb:hover {
    opacity: 1;
    border-color: var(--border-bright);
}

.media-strip__thumb.active {
    opacity: 1;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-glow);
}

.media-strip__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-taxonomy {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.taxonomy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 1rem 2rem;
}

.taxonomy-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.taxonomy-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.taxonomy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    cursor: default;
    line-height: 1.4;
}

.tag-chip:hover {
    background: var(--accent-subtle);
    border-color: var(--accent);
    color: var(--accent);
}

.tag-chip--link {
    cursor: pointer;
    text-decoration: none;
}

.tag-chip--link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.category-link {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    line-height: 1.4;
}

.category-link:hover {
    background: var(--accent-subtle);
    border-color: var(--accent);
    color: var(--accent);
}

.category-link--static {
    cursor: default;
}

.category-link--static:hover {
    background: var(--bg-elevated);
    border-color: var(--border);
    color: var(--text-secondary);
}

.game-charts {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    min-height: 280px;
}

@media (max-width: 900px) {
    .game-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .game-identity__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .game-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    .game-header__cover {
        width: 322px;
        height: 150px;
    }
    .game-header__title {
        font-size: 1.375rem;
        justify-content: center;
    }
    .game-header__links {
        justify-content: center;
    }
    .game-identity__grid {
        grid-template-columns: 1fr;
    }
    .taxonomy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .game-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
