* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #0984e3, #74b9ff);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .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;
            color: white;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: 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: #ffeaa7;
            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;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #0984e3;
            margin-bottom: 30px;
            font-size: 2.5rem;
            text-align: center;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #0984e3;
            margin: 40px 0 20px;
            font-size: 2rem;
            border-bottom: 2px solid #ffeaa7;
            padding-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }
        h2:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 5px;
            background-color: #0984e3;
        }
        h3 {
            color: #2d3436;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            padding-left: 10px;
            border-left: 3px solid #0984e3;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #e17055;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 30px 0;
            transition: 0.3s;
            text-align: center;
            box-shadow: 0 4px 6px rgba(225, 112, 85, 0.3);
        }
        .btn:hover {
            background-color: #d63031;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(214, 48, 49, 0.4);
        }
        .download-btn {
            background-color: #27ae60;
            box-shadow: 0 4px 6px rgba(39, 174, 96, 0.3);
        }
        .download-btn:hover {
            background-color: #219653;
            box-shadow: 0 6px 8px rgba(33, 150, 83, 0.4);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .highlight {
            font-weight: bold;
            color: #0984e3;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border-left: 5px solid #0984e3;
        }
        .stats-box p {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        .review-box {
            background-color: white;
            border-left: 5px solid #ffeaa7;
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-style: italic;
            color: #636e72;
            margin-top: 10px;
            font-weight: 500;
        }
        .tips-list {
            margin: 20px 0 30px 40px;
        }
        .tips-list li {
            margin-bottom: 15px;
            font-size: 1.1rem;
            position: relative;
            padding-left: 10px;
        }
        .tips-list li:before {
            content: '•';
            color: #0984e3;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .game-types {
            margin-bottom: 40px;
        }
        .game-types h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffeaa7;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .game-types ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .game-types ul li {
            margin-right: 20px;
            margin-bottom: 10px;
        }
        .game-types ul li a {
            color: white;
            text-decoration: none;
            transition: 0.3s;
            padding: 3px 0;
            position: relative;
        }
        .game-types ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: #ffeaa7;
            transition: width 0.3s;
        }
        .game-types ul li a:hover:after {
            width: 100%;
        }
        .tags {
            margin-bottom: 40px;
        }
        .tags h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffeaa7;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
        }
        .tag {
            background-color: #4a5568;
            padding: 8px 15px;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            transition: 0.3s;
        }
        .tag:hover {
            background-color: #0984e3;
            transform: translateY(-2px);
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .recommendation {
            background-color: #4a5568;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #b2bec3;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                margin-top: 20px;
                width: 100%;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 10px 0;
                text-align: left;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
            p {
                text-align: left;
            }
        }
