/* 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: #00bcd4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

.btn:hover {
    background-color: #0097a7;
    text-decoration: none;
}

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

header h1 {
    margin: 0;
    display: inline-block;
}

header h1 a {
    color: #fff;
    text-decoration: none;
}

header nav {
    float: right;
}

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

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

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

/* Hero Section */
#hero {
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 50px 0;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    padding: 50px 0;
}

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

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

/* Featured Content */
#featured-content .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

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

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

#featured-content .card h4 {
    color: #e94560;
    margin-top: 0;
}

/* Newsletter */
#newsletter {
    background-color: #16213e;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}

#newsletter h3 {
    color: #e0e0e0;
    margin-bottom: 15px;
}

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

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

/* Gaming Venues */
#venues-list .venue-card {
    background-color: #0f3460;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#venues-list .venue-card h3 {
    color: #e94560;
    margin-top: 0;
}

/* About Us */
#about-us p {
    margin-bottom: 15px;
}

/* Contact Us */
.contact-form {
    background-color: #0f3460;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 30px auto;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #0f3460;
    border-radius: 5px;
    background-color: #2e2e4a;
    color: #e0e0e0;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

/* Policy Pages */
#privacy-policy h3, #cookie-policy h3 {
    color: #e94560;
    margin-top: 20px;
}

#privacy-policy ul, #cookie-policy ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

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

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

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

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

footer ul li a {
    color: #fff;
}

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