* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #ff6b00;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 10px;
        }
        .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);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #ff6b00;
            margin: 30px 0;
            font-size: 2.2rem;
            text-align: center;
        }
        h2 {
            color: #2c3e50;
            margin: 40px 0 20px;
            font-size: 1.8rem;
            border-left: 4px solid #ff6b00;
            padding-left: 15px;
        }
        h3 {
            color: #34495e;
            margin: 30px 0 15px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #e74c3c;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 5px;
            transition: background 0.3s;
        }
        .btn:hover {
            background-color: #219653;
        }
        .btn-login {
            background-color: #3498db;
        }
        .btn-login:hover {
            background-color: #2980b9;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .tag {
            display: inline-block;
            background-color: #f1c40f;
            color: #333;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .tag:hover {
            background-color: #f39c12;
        }
        .game-type {
            display: inline-block;
            margin: 10px 5px;
        }
        .game-type a {
            color: #2980b9;
            text-decoration: none;
            font-weight: 500;
        }
        .game-type a:hover {
            text-decoration: underline;
        }
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
                margin-bottom: 15px;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 10px;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
