* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f9f9f9;
            padding-bottom: 50px;
        }
        header {
            background-color: #2c3e50;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #fff;
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
        }
        .logo span {
            color: #f39c12;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #f39c12;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
        }
        h2 {
            color: #2c3e50;
            font-size: 2rem;
            margin: 40px 0 20px;
            border-bottom: 2px solid #f39c12;
            padding-bottom: 10px;
        }
        h3 {
            color: #34495e;
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #e74c3c;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #f39c12;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #e67e22;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            margin: 30px 0;
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
            padding: 10px;
            border-bottom: 1px solid #eee;
        }
        .community-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .community-links a {
            color: #3498db;
            text-decoration: none;
            font-weight: bold;
        }
        .community-links a:hover {
            text-decoration: underline;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background-color: #ecf0f1;
            padding: 5px 15px;
            border-radius: 20px;
            text-decoration: none;
            color: #34495e;
            font-size: 0.9rem;
        }
        .tag:hover {
            background-color: #bdc3c7;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 20px 0;
        }
        .game-types a {
            color: #f39c12;
            text-decoration: none;
            margin-right: 15px;
        }
        .game-types a:hover {
            text-decoration: underline;
        }
        .copyright {
            margin-top: 30px;
            font-size: 0.9rem;
            color: #bdc3c7;
            text-align: center;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #2c3e50;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
