/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: black;
}

/* Header */
header {
    background-color: black;
    color: white;
    padding: 2rem 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo h1 {
    font-size: 1.8rem;
}

/* Main Content */
main {
    max-width: 1000px;
    margin: 1rem auto 2rem;
    padding: 0 1rem;
}

section {
    background-color: black;
    padding: 2rem;
    margin-bottom: 2rem;
}

h2 {
    color: white;
    margin-bottom: 1rem;
}

a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

a:hover {
    color: #f0c36a;
}

/* Hero Section */
.hero {
    background: black;
    color: white;
    text-align: center;
    padding: 2rem 2rem 3rem;
}

.hero h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Services */
.services {
    text-align: center;
}

.services ul {
    list-style: none;
    margin-top: 3rem;
}

.services li {
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}

/* Contact */
.contact {
    text-align: center;
}

/* Games */
.games {
    text-align: center;
}

.games-logo {
    display: block;
    width: 96px;
    height: auto;
    margin: 0 auto 1.25rem;
    image-rendering: pixelated;
    filter: drop-shadow(0 0 14px rgba(240, 195, 106, 0.2));
}

.games-intro {
    max-width: 720px;
    margin: 0 auto 2rem;
}

.game-list {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.game-card {
    background: radial-gradient(circle at top, rgba(240, 195, 106, 0.14), rgba(255, 255, 255, 0.04) 45%, rgba(255, 255, 255, 0.02));
    padding: 1.5rem;
    box-shadow: 0 0 24px rgba(240, 195, 106, 0.12);
}

.game-title {
    color: #f0c36a;
    font-size: 1.35rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.game-status {
    color: #dddddd;
    margin-bottom: 1rem;
}

.game-link {
    display: inline-block;
    color: black;
    background-color: #f0c36a;
    padding: 0.65rem 1rem;
    text-decoration: none;
    font-weight: bold;
}

.game-link:hover {
    color: black;
    background-color: white;
}

/* Footer */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 1.5rem 1rem 0;
    }

    .logo {
        flex-direction: column;
        gap: 0.75rem;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .games-logo {
        width: 84px;
    }

    .game-list {
        grid-template-columns: 1fr;
    }
}

/* Service Pages */
.service-link {
    display: inline-block;
    color: #f0c36a;
    font-weight: bold;
    text-decoration: none;
    padding: 0.25rem 0;
}

.service-link:hover {
    color: white;
}

.contact-list {
    list-style: none;
    margin-bottom: 1rem;
}

.service-page {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}

.page-intro {
    max-width: 680px;
    margin: 0 auto 2rem;
    color: #dddddd;
}

.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #f0c36a;
    font-weight: bold;
    text-decoration: none;
}

.back-link:hover {
    color: white;
}

.support-form {
    display: grid;
    gap: 0.85rem;
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.support-form label {
    color: #f0c36a;
    font-weight: bold;
}

.support-form input,
.support-form textarea {
    width: 100%;
    color: white;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(240, 195, 106, 0.35);
    padding: 0.8rem;
    font: inherit;
}

.support-form input:focus,
.support-form textarea:focus {
    outline: none;
    border-color: #f0c36a;
    box-shadow: 0 0 18px rgba(240, 195, 106, 0.16);
}

.form-button {
    justify-self: center;
    margin-top: 0.75rem;
    color: black;
    background-color: #f0c36a;
    border: 0;
    padding: 0.75rem 1.1rem;
    font: inherit;
    font-weight: bold;
    cursor: pointer;
}

.form-button:hover {
    background-color: white;
}
