@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #f0f0f0;
    text-align: center;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
}

.main-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.main-header {
    margin-bottom: 40px;
}

h1 {
    font-size: 4em;
    font-weight: 700;
    margin: 0;
}

.main-header p {
    font-size: 1.2em;
    color: #aaa;
    margin-top: 10px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    text-decoration: none;
    color: #f0f0f0;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.nav-card:hover {
    transform: translateY(-10px);
    border-color: #fff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.game-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    filter: invert(1);
}

.nav-card h2 {
    font-size: 1.5em;
    margin: 0 0 10px 0;
}

.nav-card p {
    font-size: 0.9em;
    color: #aaa;
    line-height: 1.6;
}

.main-footer {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #333;
    background-color: #0a0a0a;
}

.back-button {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.back-button:hover {
    color: #aaa;
}