/* General 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;
}

a {
    color: #00bfff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    background-color: #6a0572;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #8e2de2;
    text-decoration: none;
}

.btn-small {
    padding: 5px 10px;
    font-size: 0.9em;
}

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

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

header nav {
    float: right;
}

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

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

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

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

/* Hero Section */
#hero {
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
    height: 500px; /* Fixed height for hero section */
}

#hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.6);
}

#hero .hero-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

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

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

/* Sections */
section {
    padding: 40px 0;
}

.section-dark {
    background-color: #0f3460;
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #e94560;
    font-size: 2.5em;
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

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

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #0f3460;
}

.game-card h3 {
    color: #00bfff;
    margin: 15px 0 10px;
}

.game-card p {
    padding: 0 15px;
    margin-bottom: 15px;
}

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

footer ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: inline-block; /* For centering */
}

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

footer ul li a {
    color: #e0e0e0;
}

footer ul li a:hover {
    color: #00bfff;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

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

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

.contact-form input[type="submit"] {
    width: 100%;
    background-color: #e94560;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
    background-color: #ff6b81;
}

/* Policy Pages */
.policy-content {
    background-color: #16213e;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.policy-content h2 {
    color: #e94560;
    text-align: left;
}

.policy-content h3 {
    color: #00bfff;
    margin-top: 20px;
}

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

.policy-content ul {
    list-style: disc inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-content ol {
    list-style: decimal inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

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