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

body {
    font-family: Arial, sans-serif;
    background: #1a1a2e;
    color: #fff;
    line-height: 1.6;
}

/* Navigation */
nav {
    background: #0f0f1c;
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 2rem;
    color: #ff2e63;
    margin-bottom: 0.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
}

nav ul li a:hover {
    color: #ff2e63;
}

/* Main Content */
main {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.game-card {
    background: #16213e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 1rem;
}

.game-card img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #ff2e63;
}

.game-card h2 {
    font-size: 1.5rem;
    color: #ff2e63;
    margin: 1rem 0 0.5rem;
}

.game-card p {
    font-size: 1rem;
    color: #ccc;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.play-button {
    display: inline-block;
    background: #ff2e63;
    color: #fff;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s;
}

.play-button:hover {
    background: #e6004c;
}

/* Events Section */
.events {
    padding: 2rem;
    text-align: center;
}

.events h2 {
    font-size: 2rem;
    color: #ff2e63;
    margin-bottom: 2rem;
}

.event-card {
    background: #16213e;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.event-card h3 {
    font-size: 1.5rem;
    color: #ff2e63;
    margin-bottom: 0.5rem;
}

.event-card p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.register-button {
    display: inline-block;
    background: #ff2e63;
    color: #fff;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s;
}

.register-button:hover {
    background: #e6004c;
}

/* About Section */
.about {
    padding: 2rem;
    text-align: center;
    background: #16213e;
    margin: 0 auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.about h2 {
    font-size: 2rem;
    color: #ff2e63;
    margin-bottom: 1rem;
}

.about p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 2rem;
    text-align: center;
    background: #16213e;
    margin: 0 auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.contact h2 {
    font-size: 2rem;
    color: #ff2e63;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input,
.contact textarea {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    background: #1a1a2e;
    color: #fff;
    font-size: 1rem;
}

.contact textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-button {
    background: #ff2e63;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-button:hover {
    background: #e6004c;
}

/* Responsive */
@media (min-width: 768px) {
    main {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .game-card {
        width: 45%;
        margin: 0 1rem 2rem;
    }

    .event-card {
        max-width: 600px;
    }

    .about {
        max-width: 800px;
    }
}

@media (min-width: 1024px) {
    .game-card {
    }
