/* Import Custom Font */
@font-face {
   font-family: Pixel Emulator;
   src: url(font/PixelEmulator-xq08.ttf);
}

/* General Styles */
body {
    font-family: Pixel Emulator, sans-serif;
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #222;
    padding: 20px;
    font-size: 24px;
}

/* Game Grid */
.game-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Game Cards */
.game-card {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.game-card h2 {
    margin: 15px 0 10px;
    font-size: 22px;
}

.game-card p {
    font-size: 16px;
    color: #bbb;
}

/* Hover Effects */
.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #0094FF;
    color: white;
    padding: 10px 20px;
    margin-top: 10px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: red;
}

/* Footer */
footer {
    background-color: #222;
    padding: 15px;
    margin-top: 30px;
    font-size: 14px;
}
