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

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

/* Header and Navbar Styles */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    color: #fff;
    text-decoration: none;
    font-size: 1.8em;
    font-weight: bold;
}

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

.nav-links li {
    position: relative;
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: #575757;
    border-radius: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #444;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #575757;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.4s;
}

/* Main Content Styles */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.game-section {
    text-align: center;
    margin-bottom: 40px;
}

.game-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #000;
}

.game-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#fullscreen-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

.seo-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.table-of-contents {
    flex: 1;
    min-width: 250px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.table-of-contents h2 {
    margin-top: 0;
    color: #333;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents ul li a {
    text-decoration: none;
    color: #007bff;
    display: block;
    padding: 5px 0;
}

.table-of-contents ul li a:hover {
    text-decoration: underline;
}

.seo-article {
    flex: 3;
    min-width: 300px;
}

.seo-article h1, .seo-article h2, .seo-article h3 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.seo-article p {
    margin-bottom: 10px;
}

.seo-article ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 10px;
}

.seo-article ol {
    list-style: decimal;
    margin-left: 20px;
    margin-bottom: 10px;
}

.seo-article a {
    color: #007bff;
    text-decoration: none;
}

.seo-article a:hover {
    text-decoration: underline;
}

/* Content Pages (Privacy, Terms, etc.) */
.content-section {
    padding: 20px;
}

.content-section h1 {
    color: #333;
    margin-bottom: 20px;
}

.content-section h2 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.content-section ul, .content-section ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.content-section ul ul, .content-section ol ol {
    margin-left: 20px;
}

.content-section a {
    color: #007bff;
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

.footer-nav {
    margin-top: 10px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
    }

    .nav-links a {
        padding: 15px;
        border-bottom: 1px solid #575757;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        background-color: #555;
        box-shadow: none;
        border-radius: 0;
    }

    .hamburger-menu {
        display: none;
    }

    .seo-content {
        flex-direction: column;
    }

    .table-of-contents {
        min-width: unset;
        width: 100%;
    }

    .seo-article {
        min-width: unset;
        width: 100%;
    }
}


