* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #fff9f0;
            color: #3a2e21;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #b3541e;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            margin-bottom: 10px;
            text-align: center;
        }
        .nav {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: 2px solid white;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 5px;
            margin: 0 auto 15px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #8b4513;
            font-size: 2.4rem;
            margin: 30px 0;
            text-align: center;
            border-bottom: 3px solid #b3541e;
            padding-bottom: 12px;
        }
        h2 {
            color: #b3541e;
            font-size: 1.9rem;
            margin: 40px 0 20px;
            border-left: 5px solid #8b4513;
            padding-left: 15px;
        }
        h3 {
            color: #8b4513;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #b3541e;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #b3541e;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #2ecc71;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 8px;
            transition: all 0.3s ease;
            box-shadow: 0 3px 6px rgba(0,0,0,0.15);
        }
        .btn:hover {
            background-color: #27ae60;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-left: 5px solid #b3541e;
        }
        .tag {
            display: inline-block;
            background-color: #e67e22;
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            margin: 6px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #d35400;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            margin: 10px 8px;
            text-decoration: none;
            color: #8b4513;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            text-decoration: underline;
            color: #b3541e;
            transform: translateX(3px);
        }
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.8;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
                text-align: left;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 15px auto;
                width: 80%;
            }
        }
