@font-face {
    font-family: 'PushStart';
    src: url('../css/fonts/pushstart.woff2') format('woff2'),
         url('../css/fonts/pushstart.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto; 
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

header {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--primary-color);
}

h1 {
    font-family: 'PushStart', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 119, 0, 0.7), 0 0 20px rgba(255, 119, 0, 0.5);
    margin: 0;
    letter-spacing: 4px;
}

h2 {
    font-family: 'PushStart', cursive;
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-top: 30px;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}

.game-container h2 {
    font-family: 'PushStart', cursive;
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-top: 30px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.game-section {
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.game-container {
    width: 100%;
    max-width: 900px;
    height: 500px;
    position: relative;
    margin: 0 auto;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 119, 0, 0.5);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.image-gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px 0;
    gap: 10px;
}

.image-gallery img {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
    border: 3px solid var(--accent-color);
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

.controls-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    overflow-x: auto;
    display: block;
}

.controls-table th, .controls-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid var(--secondary-color);
}

.controls-table th {
    background-color: var(--secondary-color);
    color: white;
    font-family: 'PushStart', cursive;
    font-size: 0.9rem;
}

.controls-table tr:nth-child(even) {
    background-color: rgba(77, 77, 255, 0.1);
}

.controls-table tr:hover {
    background-color: rgba(77, 77, 255, 0.2);
}

footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 3px solid var(--primary-color);
    font-style: italic;
}

@font-face {
    font-family: 'Oxanium';
    src: url('../css/fonts/oxanium.woff2') format('woff2'),
         url('../css/fonts/oxanium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #ff7700;
    --secondary-color: #4d4dff;
    --bg-color: #121212;
    --text-color: #ffffff;
    --accent-color: #00e676;
}

body {
    background-color: var(--bg-color);
    background-image: linear-gradient(to bottom, #000000, #1a0038);
    color: var(--text-color);
    font-family: 'Oxanium', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

/* Home Button */
.home-button {
    display: block;
    margin: 30px auto 0;
}

.home-button img {
    height: 50px;
    width: auto;
    transition: 0.3s;
    border: none;
}

.home-button img:hover {
    transform: scale(1.1);
}

/* Media queries for responsive design */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .game-container {
        height: 300px;
    }
    
    .image-gallery {
        justify-content: center;
    }
    
    .image-gallery img {
        width: 100%;
        max-width: 250px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .container {
        padding: 10px;
    }
    
    p {
        font-size: 1rem;
    }
    
    .game-container {
        height: 250px;
    }
}
