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

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: #16213e;
    color: #e0e0e0;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #0f3460 3px solid;
}

header a {
    color: #e0e0e0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
}

header nav {
    float: right;
    margin-top: 10px;
}

header .highlight,
header .current a {
    color: #e94560;
    font-weight: bold;
}

header a:hover {
    color: #e94560;
    font-weight: bold;
}

/* Hero Section */
#hero {
    min-height: 400px;
    background: #0f3460;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    margin-bottom: 30px;
}

#hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
}

#hero .hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

#hero h2 {
    font-size: 45px;
    margin-bottom: 10px;
}

#hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

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

.btn:hover {
    background: #ba364d;
}

/* Featured Games Section */
#featured-games, #games-list {
    padding: 30px 0;
    text-align: center;
}

#featured-games h3, #games-list h2 {
    color: #e94560;
    font-size: 30px;
    margin-bottom: 30px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.game-card {
    background: #16213e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.game-card img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.game-card h4 {
    color: #e0e0e0;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 14px;
    color: #b0b0b0;
}

/* Newsletter Section */
#newsletter {
    background: #0f3460;
    padding: 40px 0;
    text-align: center;
    margin-top: 30px;
}

#newsletter h3 {
    color: #e94560;
    font-size: 28px;
    margin-bottom: 15px;
}

#newsletter p {
    font-size: 18px;
    margin-bottom: 25px;
}

#newsletter form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#newsletter input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 300px;
    max-width: 70%;
    background-color: #e0e0e0;
    color: #1a1a2e;
}

#newsletter button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #e94560;
    color: #e0e0e0;
    cursor: pointer;
    transition: background 0.3s ease;
}

#newsletter button:hover {
    background: #ba364d;
}

/* About Us, Contact Us, Privacy Policy, Cookie Policy Sections */
#about-us, #contact-us, #privacy-policy, #cookie-policy, #response {
    padding: 40px 0;
    min-height: 500px;
}

#about-us h2, #contact-us h2, #privacy-policy h2, #cookie-policy h2, #response h2 {
    color: #e94560;
    font-size: 35px;
    margin-bottom: 20px;
    text-align: center;
}

#about-us p, #contact-us p, #privacy-policy p, #cookie-policy p, #response p {
    margin-bottom: 15px;
    color: #b0b0b0;
}

#privacy-policy h3, #cookie-policy h3 {
    color: #e0e0e0;
    margin-top: 30px;
    margin-bottom: 10px;
}

#privacy-policy ul, #cookie-policy ul {
    list-style: disc;
    margin-left: 20px;
    color: #b0b0b0;
}

#privacy-policy ul li, #cookie-policy ul li {
    margin-bottom: 5px;
}

/* Contact Form Specific Styles */
#contact-us form {
    max-width: 600px;
    margin: 30px auto;
    background: #16213e;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #0f3460;
    border-radius: 5px;
    background-color: #e0e0e0;
    color: #1a1a2e;
}

.form-group textarea {
    resize: vertical;
}

#contact-us button.btn {
    width: 100%;
    padding: 12px;
    font-size: 18px;
}

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

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

footer li {
    display: inline;
    padding: 0 10px;
}

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

footer a:hover {
    color: #e94560;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header #branding,
    header nav {
        float: none;
        text-align: center;
    }

    header nav ul {
        margin-top: 10px;
    }

    header li {
        margin-bottom: 5px;
        display: block;
    }

    #hero h2 {
        font-size: 35px;
    }

    #hero p {
        font-size: 16px;
    }

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

    #newsletter form {
        flex-direction: column;
        align-items: center;
    }

    #newsletter input[type="email"] {
        width: 90%;
        margin-bottom: 10px;
    }

    #contact-us form {
        margin: 20px auto;
        padding: 20px;
    }
}
