/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header Styles */
header {
    background-color: #16213e;
    color: #e0e0e0;
    padding: 10px 0;
    border-bottom: 2px solid #0f3460;
}

header h1 {
    margin: 0;
    float: left;
    color: #e94560;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: right;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    color: #e94560;
}

/* Clearfix for header */
header .container::after {
    content: "";
    display: table;
    clear: both;
}

/* Hero Section Styles */
.hero {
    background-color: #0f3460;
    color: #e0e0e0;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 30px;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #e94560;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background-color: #e94560;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ba344d;
}

/* Content Section Styles */
.content-section {
    padding: 30px 0;
    background-color: #16213e;
    margin-bottom: 30px;
    border-radius: 8px;
}

.content-section h3 {
    color: #e94560;
    text-align: center;
    margin-bottom: 20px;
}

.content-section p {
    margin-bottom: 15px;
}

.content-section ul {
    list-style: disc;
    margin-left: 20px;
}

.content-section ul li {
    margin-bottom: 10px;
}

/* Gaming Center List Styles */
.gaming-center-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gaming-center-item {
    background-color: #0f3460;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.gaming-center-item img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.gaming-center-item h4 {
    color: #e94560;
    margin-top: 0;
    margin-bottom: 10px;
}

.gaming-center-item p {
    font-size: 0.9em;
}

/* Newsletter Signup & Contact Form Styles */
.newsletter-signup, .contact-form {
    background-color: #0f3460;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}

.newsletter-signup h3, .contact-form h3 {
    color: #e94560;
    margin-top: 0;
    margin-bottom: 15px;
}

.newsletter-signup p, .contact-form p {
    margin-bottom: 20px;
}

.newsletter-signup form, .contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-signup input[type="email"],
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #1a1a2e;
    border-radius: 5px;
    background-color: #1a1a2e;
    color: #e0e0e0;
}

.contact-form .form-group {
    width: 80%;
    text-align: left;
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #e0e0e0;
}

/* Footer Styles */
footer {
    background-color: #16213e;
    color: #e0e0e0;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #0f3460;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #e0e0e0;
    text-decoration: none;
}

footer ul li a:hover {
    color: #e94560;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        float: none;
        text-align: center;
    }

    header nav ul {
        float: none;
        text-align: center;
        padding-top: 10px;
    }

    header nav ul li {
        margin: 0 10px;
    }

    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .newsletter-signup input[type="email"],
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea,
    .contact-form .form-group {
        width: 95%;
    }
}
