/* General Page Styling */
body {
    background-color: #121212; /* Deep dark background */
    color: #e0e0e0; /* Light grey text for readability */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* Hide the basic horizontal lines from HTML */
hr {
    display: none;
}

/* Header & Navigation */
header {
    background-color: #1a1a1a;
    padding: 25px 20px;
    text-align: center;
    border-bottom: 3px solid #00e676; /* Neon green gaming accent */
}

header h1 {
    margin: 0;
    color: #ffffff;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

nav {
    margin-top: 15px;
}

nav a {
    color: #b3b3b3;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00e676; /* Turns neon green when hovered */
}

/* Main Content Area */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 60px;
}

h2 {
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    color: #00e676;
    text-transform: uppercase;
}

/* Game Cards */
.game-card {
    background-color: #1e1e1e;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.6);
    text-align: center;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px); /* Creates a slight "lift" effect */
}

.game-card img {
    border-radius: 5px;
    margin: 15px 0;
    max-width: 100%;
    height: auto;
}

/* Buttons */
button {
    background-color: #00e676;
    color: #121212;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #00b35c;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #222;
}

footer a {
    color: #00e676;
    text-decoration: none;

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #222;
}

footer a {
    color: #00e676;
    text-decoration: none;
} /* THIS BRACKET WAS MISSING */

/* Logo Styling */
.studio-logo {
    max-width: 250px; 
    height: auto;
}}