/* Cyberpunk Theme */
:root {
    --nav-color: #131318;
    --bg-primary: #23232b;
    --bg-secondary: #19191f;
    --bg-card: #2a2a3a;
    --bg-input: #23232b;
    --text-primary: #f3f3f3;
    --text-secondary: #b0b0b0;
    --user-primary: #8be9fd;
    --game-primary: #ffb86c;
    --accent-primary: #ff6fae;
    --accent-secondary: #5865f2;
    --border-color: #3a3a4a;
    --shadow-color: rgba(0, 0, 0, 0.18);
    --hover-bg: #3a3a4a;
    --success-color: #4ade80;
    --error-color: #f87171;
    --warning-color: #fbbf24;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scrollbar-width: none;
    scroll-behavior: smooth;
}

body {
    background-color: var(--hover-bg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: 'Inter', Arial, sans-serif;
}

main {
    padding-top: 150px;
    text-align: center;
}

.game__main {
    margin: auto;
    padding: 10px;
    width: 900px;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 1rem;
}

.all_game_header {
    margin: auto;
    width: 400px;
    gap: 1.5rem;
}

.game__display__area {
    margin-top: 50px;
    padding: 1rem 0;
}

.list__area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.list__item {
    background: var(--bg-input);
    border-radius: 12px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    width: 100%;
    height: fit-content;
    transition: all 0.3s ease;
    align-items: center;
}

.list__image {
    width: 170px;
    height: 255px;
    object-fit: cover;
    border-radius: 30px;
    cursor: pointer;
    margin-left: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.list__item__cover__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    transition: all 0.3s ease;
}

.list__item__info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list__item__title {
    text-align: left;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffb86c;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.list__item__name__link {
    color: #ffb86c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.list__item__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.stat {
    background: #44475a;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat__label {
    display: block;
    font-size: 0.9rem;
    color: #6272a4;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat__value {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.grid__area {
    display: none;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
}

.grid__item {
    width: 200px;
    height: 300px;
    border-radius: 1rem;
}

.grid__link {
    text-decoration: none;
    color: white;
}

.grid__cover__art {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

.grid__cph__info {
    position: relative;
    top: 95%;
    background: black;
    border-radius: 1rem;
    width: 90%;
    margin: auto;
}