/* Language Tag styles */
.lang-tag {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #e7e5e4;
    /* stone-200 */
    color: #292524;
    /* stone-800 */
    border-radius: 4px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    border: 1px solid #d6d3d1;
    /* stone-300 */
}

.lang-tag-info {
    font-weight: 500;
}

.lang-tag-info strong {
    font-size: 1rem;
    color: #1c1917;
    /* stone-900 */
}

.lang-tag-remove {
    margin-left: 1rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.25rem;
    color: #78716c;
    /* stone-500 */
}

.lang-tag-remove:hover {
    color: #b91c1c;
    /* red-800 */
}

/* Salary selector badge styling */
.salary-preset-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid #a8a29e;
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.salary-preset-btn:hover {
    border-colour: #292524;
    background-color: #f5f5f4;
}

.salary-preset-btn.selected {
    border-colour: #292524;
    background-color: #292524;
    color: #fff7ed;
}

/* Steam-like game page styles */
.game-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1c1917 0%, #78716c 100%);
    border: 2px solid #292524;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 2rem;
}

.game-hero-title {
    font-size: 3rem;
    font-family: 'Merriweather', serif;
    color: #fff7ed;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    z-index: 10;
}

.game-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.game-info-card {
    border: 2px solid #a8a29e;
    padding: 1rem;
    text-align: centre;
}

.game-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #78716c;
    margin-bottom: 0.5rem;
}

.game-info-value {
    font-family: 'Merriweather', serif;
    font-size: 1.125rem;
    color: #292524;
}

.game-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.game-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background-color: #e7e5e4;
    border: 1px solid #d6d3d1;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #57534e;
}

.game-screenshots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .game-screenshots {
        grid-template-columns: repeat(2, 1fr);
    }
}

.game-screenshot {
    width: 100%;
    aspect-video: 16 / 9;
    background-color: #e7e5e4;
    border: 2px solid #292524;
    display: flex;
    align-items: centre;
    justify-content: centre;
    font-size: 0.875rem;
    colour: #78716c;
}
