* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #e67e22;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        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: 0.3s;
        }
        nav ul li a:hover {
            color: #ffd166;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #d35400;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #e67e22;
        }
        h2 {
            color: #e67e22;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #d35400;
        }
        h3 {
            color: #d35400;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 15px;
            font-size: 16px;
        }
        .highlight {
            font-weight: bold;
            color: #d35400;
        }
        .btn-container {
            margin: 30px 0;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: 0.3s;
            text-align: center;
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .login-btn {
            background-color: #3498db;
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px 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 4px 8px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #f1f1f1;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review-container {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .reviewer {
            font-weight: bold;
            color: #d35400;
        }
        .rating {
            color: #f39c12;
            font-weight: bold;
        }
        .game-type {
            margin: 40px 0 20px;
        }
        .type-links a, .tag-links a {
            display: inline-block;
            background-color: #f1c40f;
            color: #333;
            padding: 5px 15px;
            border-radius: 20px;
            text-decoration: none;
            margin: 0 8px 10px 0;
            transition: 0.3s;
        }
        .type-links a:hover, .tag-links a:hover {
            background-color: #f39c12;
            color: white;
        }
        .tags {
            margin: 30px 0;
        }
        footer {
            max-width: 1200px;
            margin: 50px auto 0;
            padding: 30px 20px;
            border-top: 2px solid #e67e22;
        }
        .recommendation {
            margin: 20px 0;
            padding: 15px;
            background-color: #fff3cd;
            border-radius: 5px;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            color: #7f8c8d;
            font-size: 14px;
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background-color: #e67e22;
                padding: 20px;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            .btn-container {
                flex-direction: column;
            }
            .btn {
                width: 100%;
            }
        }
