* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'retropix', sans-serif;
}

@font-face {
    font-family: 'retropix';
    src: url('/public/ttf/retropix.ttf') format('truetype');
}

body {
    background-color: #281d2b;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden ;
    margin: 0;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    background-color: #281d2b;
}

header img {
    margin-top: 30px;
    width: 100px;
}

.games-container {
    flex: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h1 {
    font-size: 3rem;
    color: #a2ba28;
    text-transform: uppercase;
}

.page-title p {
    color: #c4d46a;
    font-size: 1.1rem;
    margin-top: 15px;
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
    margin-bottom: 60px;
}

.game-card {
    background: #1e1520;
    overflow: hidden;
    transition: all 0.2s ease;
    width: 360px;
    border: 4px solid #a2ba2844;
}

.game-card:hover {
    border-color: #a2ba28;
}

.game-img-1 {
    width: 100%;
    height: 260px;
    display: flex;
    background-image: url('/public/img/light-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.game-img-2 {
    width: 100%;
    height: 260px;
    display: flex;
    background-image: url('/public/img/pl.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.game-img-3 {
    width: 100%;
    height: 260px;
    display: flex;
    background-image: url('/public/img/i.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-icon {
    font-size: 6rem;
    filter: drop-shadow(0 0 10px #a2ba2866);
}

.game-card.light .game-icon {
    color: #f5e56b;
    text-shadow: 0 0 15px #ffd966;
}

.game-card.pale .game-icon {
    color: #e0d5c1;
    text-shadow: 0 0 12px #b8a99a;
}

.game-info {
    padding: 25px 22px;
}

.game-info h2 {
    color: #a2ba28;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.game-genre {
    color: #9e8da8;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    background: #2a1f2e;
    padding: 4px 12px;
}

.game-description {
    color: #d4cce0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: monospace;
}

.game-features {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature {
    font-size: 0.7rem;
    color: #a2ba28;
    background: #2a1f2e;
    padding: 4px 10px;
    text-transform: uppercase;
}

.game-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #a2ba28;
    color: #281d2b;
    padding: 12px 25px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0px 5px 0px 0px #5e6b18;
    transition: all 0.1s ease;
    text-align: center;
    width: 100%;
}

.game-btn:hover {
    transform: translateY(3px);
    box-shadow: 0px 2px 0px 0px #5e6b18;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px;
    background-color: #281d2b;
    margin-top: auto;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 20px;
    transition: all 0.2s ease;
}

.social-icons a {
    color: #a2ba28;
    font-size: 2rem;
    transition: all 0.2s ease;
}

.social-icons a:hover {
    color: #ffffff;
}

.social-icon svg {
    fill: #a2ba28;
    transition: all 0.2s ease;
}

.social-icon:hover svg {
    fill: #ffffff;
}

footer p {
    color: #a2ba28;
    font-size: 1rem;
}