* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff9f0;
            color: #333;
            line-height: 1.7;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #ff6b35 0%, #d94600 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: white;
            transition: width 0.3s;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #d94600;
            margin-bottom: 20px;
            font-size: 2.2rem;
            text-align: center;
            padding: 15px 0;
            border-bottom: 3px solid #ffc15e;
        }
        h2 {
            color: #d94600;
            margin: 35px 0 15px;
            font-size: 1.8rem;
            border-left: 4px solid #ffc15e;
            padding-left: 15px;
        }
        h3 {
            color: #c2410c;
            margin: 25px 0 12px;
            font-size: 1.4rem;
            position: relative;
            padding-left: 10px;
        }
        h3:before {
            content: '•';
            position: absolute;
            left: 0;
            color: #ffc15e;
            font-size: 1.8rem;
            line-height: 0.8;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d94600;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            margin: 0 10px 15px;
            background-color: #457b9d;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #16a34a;
        }
        .btn-login {
            background-color: #0284c7;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 4px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 5px solid #ffc15e;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 15px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #fff9f0;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 1.8rem;
            font-weight: bold;
            color: #d94600;
        }
        .review-container {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .review {
            border-bottom: 1px solid #f0f0f0;
            padding: 15px 0;
        }
        .review:last-child {
            border-bottom: none;
        }
        .reviewer {
            font-weight: bold;
            color: #c2410c;
        }
        .rating {
            color: #ffc15e;
            margin: 5px 0;
            letter-spacing: 2px;
        }
        .tag-container {
            margin: 30px 0;
        }
        .tag {
            display: inline-block;
            background-color: #fff0d6;
            color: #c2410c;
            padding: 6px 14px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
            border: 1px solid #ffd6a0;
        }
        .tag:hover {
            background-color: #ffd6a0;
            color: #a63400;
        }
        .game-types {
            margin: 30px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #0284c7;
            font-weight: 500;
            position: relative;
            padding-bottom: 2px;
        }
        .game-type:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #0284c7;
            transition: width 0.3s;
        }
        .game-type:hover:after {
            width: 100%;
        }
        footer {
            background-color: #2d3748;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #ffc15e;
            padding-bottom: 5px;
            border-bottom: 2px solid #ffc15e;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 20px;
            font-size: 0.9rem;
            color: #cbd5e1;
        }
        .recommendation {
            margin: 20px 0;
            padding: 15px;
            background-color: rgba(255, 193, 94, 0.1);
            border-radius: 5px;
            border-left: 4px solid #ffc15e;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background-color: #d94600;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
            p {
                text-align: left;
            }
        }
