/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #f4f4f4;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background-image: url('background.jpg'); /* Replace with an actual gaming-related background */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 3rem;
    text-align: center;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    background: #4CAF50;
    color: #fff;
    text-decoration: none;
    margin-top: 1rem;
    border-radius: 5px;
}

.cta-button:hover {
    background: #3a9e43;
}

/* About Us */
.about-us {
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    margin-bottom: 2rem;
}

/* Game Features */
.features {
    text-align: center;
    padding: 2rem;
}

.feature-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature-item {
    background: #333;
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem;
    flex: 1 1 30%;
    max-width: 300px;
}

.feature-item h3 {
    color: #4CAF50;
}

/* Contact CTA */
.contact-cta {
    background: #4CAF50;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.contact-cta .cta-button {
    background: #333;
}

/* Footer */
footer {
    background: #111;
    color: #f4f4f4;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

.footer-content {
    margin-bottom: 1rem;
}

.socials {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.socials li a {
    color: #4CAF50;
    text-decoration: none;
}

.socials li a:hover {
    text-decoration: underline;
}
/* Contact Header */
.contact-header {
    background: #4CAF50;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.contact-header nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: #2a2a2a;
    color: #f4f4f4;
}

.contact-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-form {
    max-width: 600px;
    width: 100%;
    background: #333;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-form label {
    display: block;
    color: #4CAF50;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #444;
    border-radius: 4px;
    background: #1e1e1e;
    color: #f4f4f4;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4CAF50;
    outline: none;
}

.submit-button {
    background: #4CAF50;
    color: #fff;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

.submit-button:hover {
    background: #3a9e43;
}

/* Responsive Design */
@media (min-width: 768px) {
    .contact-section {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        padding: 3rem;
    }

    .contact-info, .contact-form {
        flex: 1;
        max-width: 45%;
    }
}

