* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #fff5e6;
            color: #4a3520;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #c87941;
            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: 2rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 10px;
            text-align: center;
        }
        .nav {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 14px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav a:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: 2px solid white;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 6px;
            margin: 0 auto 15px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #9b5121;
            font-size: 2.6rem;
            margin: 35px 0;
            text-align: center;
            border-bottom: 4px solid #c87941;
            padding-bottom: 15px;
        }
        h2 {
            color: #c87941;
            font-size: 2.1rem;
            margin: 45px 0 25px;
            border-left: 6px solid #9b5121;
            padding-left: 18px;
        }
        h3 {
            color: #9b5121;
            font-size: 1.7rem;
            margin: 35px 0 18px;
            padding-bottom: 8px;
            border-bottom: 2px dashed #c87941;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #c87941;
            text-decoration: underline dotted;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #2ecc71;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 12px 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.18);
            font-size: 1.05rem;
        }
        .btn:hover {
            background-color: #27ae60;
            transform: translateY(-4px);
            box-shadow: 0 6px 14px rgba(0,0,0,0.25);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
            border: 6px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            border-left: 6px solid #c87941;
        }
        .tag {
            display: inline-block;
            background-color: #e67e22;
            color: white;
            padding: 7px 15px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #d35400;
            transform: scale(1.08);
        }
        .game-type {
            display: inline-block;
            margin: 12px 10px;
            text-decoration: none;
            color: #9b5121;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .game-type:hover {
            text-decoration: underline;
            color: #c87941;
            transform: translateX(4px);
        }
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 45px 20px;
            margin-top: 70px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 35px;
            text-align: center;
            font-size: 0.95rem;
            opacity: 0.85;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.15);
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.05rem;
                text-align: left;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 18px auto;
                width: 85%;
            }
            .image-container {
                margin: 25px 0;
            }
        }
