* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #e67e22;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 10px;
            display: inline-block;
        }
        .nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #d35400;
            margin: 30px 0;
            font-size: 32px;
            border-bottom: 3px solid #d35400;
            padding-bottom: 10px;
        }
        h2 {
            color: #e67e22;
            margin: 25px 0 15px;
            font-size: 26px;
        }
        h3 {
            color: #f39c12;
            margin: 20px 0 10px;
            font-size: 22px;
        }
        p {
            margin-bottom: 15px;
            font-size: 18px;
        }
        .highlight {
            font-weight: bold;
            color: #c0392b;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 10px 5px;
            transition: transform 0.3s, background 0.3s;
        }
        .btn:hover {
            background-color: #219653;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #3498db;
        }
        .btn-login:hover {
            background-color: #2980b9;
        }
        .image-container {
            margin: 25px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .stats-box p {
            margin: 10px 0;
        }
        .section {
            margin-bottom: 40px;
        }
        .tag {
            display: inline-block;
            background-color: #f1c40f;
            color: #333;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            font-size: 16px;
        }
        .tag:hover {
            background-color: #f39c12;
        }
        .game-type {
            display: inline-block;
            margin: 10px 5px;
            text-decoration: none;
            color: #2980b9;
            font-weight: 500;
        }
        .game-type:hover {
            text-decoration: underline;
        }
        .footer {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 2px solid #e67e22;
        }
        .copyright {
            margin-top: 20px;
            color: #7f8c8d;
            font-size: 16px;
        }
        @media (max-width: 768px) {
            .mobile-nav-btn {
                display: block;
                margin-bottom: 15px;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 10px;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 17px;
            }
        }
