/* General Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
}

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

/* Header Styles */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333333;
}

.site-logo img {
    width: 180px; /* Adjust this value to your desired logo width */
    height: auto;
}

.site-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.main-nav .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav .nav-menu li {
    margin-left: 25px;
}

.main-nav .nav-menu a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-bottom-color 0.3s;
}

.main-nav .nav-menu a:hover,
.main-nav .nav-menu a.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

.nav-toggle {
    display: none; /* For mobile */
}

/* Main Content Styles */
.main-content {
    padding: 40px 0;
}

.hero-game-section {
    text-align: center;
    padding: 60px 0;
}

.hero-game-section h1 {
    font-size: 2.8rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
}

.hero-game-section .tagline {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 40px;
}

#game-container-wrapper {
    margin-bottom: 40px;
}

.game-features {
    text-align: left;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.game-features h3 {
    text-align: center;
    margin-bottom: 20px;
}

.game-features ul {
    list-style: none;
    padding: 0;
}

.game-features li {
    margin-bottom: 10px;
}

.content-section {
    padding: 60px 0;
}

.content-section.light-bg {
    background-color: #f9f9f9;
}

.content-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.content-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

.center-align {
    text-align: center;
    margin-top: 20px;
}

/* Footer Styles */
.site-footer {
    background-color: #333333;
    color: #ffffff;
    padding: 40px 0;
}

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

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: #ffffff;
}

.social-links a {
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* Contact Form Styles */
.contact-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
