* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #ff9800, #e65100);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }
        .logo {
            color: #ffffff;
            font-size: 34px;
            font-weight: bold;
            text-align: center;
            margin: 10px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 1.5px;
            font-family: 'Georgia', serif;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            padding: 10px 0;
        }
        nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 25px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #e65100;
            font-size: 36px;
            margin: 20px 0 35px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ff9800;
        }
        h2 {
            color: #e65100;
            font-size: 28px;
            margin: 45px 0 25px;
            padding-left: 15px;
            border-left: 4px solid #ff9800;
        }
        h3 {
            color: #e65100;
            font-size: 24px;
            margin: 35px 0 20px;
        }
        p {
            margin-bottom: 24px;
            font-size: 18px;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #e65100;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            background-color: #ff9800;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            background-color: #e65100;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .btn-secondary {
            background-color: #2e7d32;
        }
        .btn-secondary:hover {
            background-color: #1b5e20;
        }
        .image-container {
            text-align: center;
            margin: 50px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
            margin: 60px 0;
            text-align: center;
        }
        .stat-box {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            width: 250px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-8px);
        }
        .stat-number {
            font-size: 42px;
            font-weight: bold;
            color: #ff9800;
            margin-bottom: 10px;
        }
        .stat-text {
            font-size: 18px;
            color: #2d3436;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            border-left: 4px solid #2e7d32;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 15px;
        }
        .reviewer {
            font-weight: bold;
            color: #2d3436;
            font-size: 18px;
        }
        .rating {
            color: #f59e0b;
            font-weight: bold;
            font-size: 18px;
        }
        .tag-container {
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag {
            background-color: #fff3e0;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            color: #e65100;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 1px solid #ffe0b2;
        }
        .tag:hover {
            background-color: #e65100;
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 60px 20px 40px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 40px 0;
        }
        .game-types h3 {
            color: #ffffff;
            margin-bottom: 25px;
            font-size: 22px;
            padding-bottom: 10px;
            border-bottom: 2px solid #636e72;
        }
        .game-type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .game-type-links a {
            color: #dfe6e9;
            text-decoration: none;
            padding: 8px 16px;
            border: 1px solid #636e72;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .game-type-links a:hover {
            background-color: #636e72;
            color: #ffffff;
        }
        .footer-tagline {
            margin: 50px 0;
            font-size: 18px;
            line-height: 1.8;
            color: #dfe6e9;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            color: #b2bec3;
            font-size: 15px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 25px;
                gap: 15px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 22px;
            }
            p {
                font-size: 17px;
            }
            .stat-box {
                width: 100%;
                max-width: 320px;
            }
            .btn {
                width: 100%;
                max-width: 320px;
                justify-content: center;
                padding: 14px 25px;
            }
            .logo {
                font-size: 30px;
            }
        }
