* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', 'Nirmala UI', sans-serif;
        }
        body {
            background-color: #fff9e6;
            color: #5d4037;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #d35400;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffffff;
            font-size: 1.6rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            letter-spacing: 0.3px;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 28px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffcc80;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #d35400;
            font-size: 2.4rem;
            margin-bottom: 25px;
            text-align: center;
            padding: 25px 0;
            border-bottom: 3px solid #ff8a65;
        }
        h2 {
            color: #d35400;
            font-size: 1.9rem;
            margin: 45px 0 22px;
            padding-bottom: 12px;
            border-bottom: 2px solid #ff8a65;
            position: relative;
            padding-left: 12px;
        }
        h2:before {
            content: '🌶️';
            position: absolute;
            left: -32px;
            top: 5px;
        }
        h3 {
            color: #d35400;
            font-size: 1.5rem;
            margin: 32px 0 18px;
            display: flex;
            align-items: center;
        }
        h3:before {
            content: '•';
            color: #ff8a65;
            font-size: 2rem;
            margin-right: 12px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d35400;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .btn-container {
            text-align: center;
            margin: 45px 0;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px;
            background-color: #d35400;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-size: 1.15rem;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0,0,0,0.12);
        }
        .btn:hover {
            background-color: #b71c1c;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0,0,0,0.18);
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            border-left: 5px solid #ff8a65;
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #ffccbc;
        }
        .stats-item:last-child {
            border-bottom: none;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            background-color: #ffccbc;
            color: #5d4037;
            padding: 9px 18px;
            margin: 6px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #d35400;
            color: white;
            transform: scale(1.07);
        }
        .game-type-nav {
            margin: 35px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 22px;
            text-decoration: none;
            color: #d35400;
            font-weight: bold;
            position: relative;
            padding: 6px 0;
        }
        .game-type:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #d35400;
            transition: width 0.3s ease;
        }
        .game-type:hover:after {
            width: 100%;
        }
        footer {
            background-color: #5d4037;
            color: white;
            padding: 45px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 18px;
            color: #ffcc80;
            border-bottom: 1px solid #ffcc80;
            padding-bottom: 10px;
            display: inline-block;
        }
        .recommendation {
            font-size: 1.1rem;
            margin: 25px 0;
            line-height: 1.8;
            padding: 18px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 6px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #795548;
            margin-top: 25px;
            font-size: 0.95rem;
            color: #e0e0e0;
        }
        .quote-box {
            background-color: rgba(255, 138, 101, 0.1);
            border-left: 4px solid #ff8a65;
            padding: 18px 22px;
            margin: 30px 0;
            border-radius: 0 6px 6px 0;
        }
        .quote-box p {
            font-style: italic;
            color: #5d4037;
            margin-bottom: 0;
        }
        .tip-box {
            background-color: rgba(255, 204, 128, 0.2);
            padding: 18px;
            border-radius: 6px;
            margin: 25px 0;
            display: flex;
            align-items: flex-start;
        }
        .tip-box:before {
            content: '💡';
            font-size: 1.6rem;
            margin-right: 12px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                width: 100%;
                background-color: #d35400;
                padding: 25px;
                box-shadow: 0 12px 12px rgba(0,0,0,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
                padding: 6px 0;
                border-bottom: 1px solid rgba(255,255,255,0.15);
            }
            .nav-links li:last-child {
                border-bottom: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
                padding: 20px 0;
            }
            h2 {
                font-size: 1.6rem;
                padding-left: 0;
                margin: 35px 0 18px;
            }
            h2:before {
                display: none;
            }
            h3 {
                font-size: 1.4rem;
                margin: 28px 0 15px;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 85%;
            }
            p {
                text-align: left;
                font-size: 1.05rem;
            }
            .stats-box {
                padding: 20px;
            }
            .image-container {
                margin: 25px 0;
            }
        }
