* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .logo {
            color: #ffd700;
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin: 10px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Arial Black', sans-serif;
            letter-spacing: 1px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
            margin: 10px 0;
        }
        nav ul li {
            margin: 0 10px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 15px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 26px;
            cursor: pointer;
            position: absolute;
            right: 15px;
            top: 20px;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px 15px;
        }
        h1 {
            color: #c0392b;
            text-align: center;
            margin: 30px 0 25px;
            font-size: 32px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffd700;
        }
        h2 {
            color: #e74c3c;
            margin: 40px 0 20px;
            font-size: 25px;
            border-left: 4px solid #ffd700;
            padding-left: 15px;
        }
        h3 {
            color: #c0392b;
            margin: 30px 0 15px;
            font-size: 20px;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #c0392b;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 0 10px 15px;
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 17px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .download-btn {
            background: linear-gradient(135deg, #27ae60, #219653);
        }
        .login-btn {
            background: linear-gradient(135deg, #2980b9, #1976d2);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 40px 0;
            background-color: white;
            padding: 25px 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stat-box {
            text-align: center;
            margin: 15px;
            padding: 20px 15px;
            background-color: #ffebee;
            border-radius: 8px;
            min-width: 200px;
            border: 1px solid #f8d7da;
        }
        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: #c0392b;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 17px;
            color: #555;
        }
        .review-container {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .review {
            border-bottom: 1px solid #f0f0f0;
            padding: 18px 0;
        }
        .review:last-child {
            border-bottom: none;
        }
        .reviewer {
            font-weight: bold;
            color: #27ae60;
            margin-bottom: 5px;
        }
        .rating {
            color: #ffb800;
            margin-bottom: 10px;
            font-size: 18px;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #ffebee;
            color: #555;
            padding: 7px 15px;
            border-radius: 20px;
            margin: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
            border: 1px solid #f8d7da;
        }
        .tag:hover {
            background-color: #c0392b;
            color: white;
            border-color: #c0392b;
        }
        .game-types {
            margin: 40px 0;
            padding: 20px;
            background-color: #ffebee;
            border-radius: 8px;
        }
        .game-type {
            display: inline-block;
            margin: 0 15px 10px 0;
            text-decoration: none;
            color: #27ae60;
            font-weight: 600;
            transition: color 0.3s ease;
            font-size: 16px;
        }
        .game-type:hover {
            color: #c0392b;
            text-decoration: underline;
        }
        footer {
            background-color: #1a1a1a;
            color: #f0f0f0;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 19px;
            margin-bottom: 15px;
            color: #ffd700;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #d0d0d0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffd700;
        }
        .recommendation {
            background-color: #ffebee;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            text-align: center;
            font-size: 17px;
            border: 1px solid #f8d7da;
        }
        .recommendation a {
            color: #c0392b;
            font-weight: bold;
            text-decoration: none;
        }
        .recommendation a:hover {
            text-decoration: underline;
        }
        .tips-box {
            background-color: #e8f5e9;
            border-left: 4px solid #2e7d32;
            padding: 15px 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .tips-box h4 {
            color: #2e7d32;
            margin-bottom: 10px;
            font-size: 18px;
        }
        .feature-list {
            margin: 25px 0;
            padding-left: 20px;
        }
        .feature-list li {
            margin-bottom: 15px;
            font-size: 17px;
        }
        .quote-box {
            font-style: italic;
            border-left: 3px solid #ffd700;
            padding-left: 15px;
            margin: 25px 0;
            color: #555;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: rgba(231, 76, 60, 0.95);
                padding: 20px 0;
                border-radius: 0 0 10px 10px;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 8px 0;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 22px;
            }
            h3 {
                font-size: 19px;
            }
            p {
                font-size: 16px;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 90%;
            }
            .stats-container {
                flex-direction: column;
                align-items: center;
            }
            .stat-box {
                width: 90%;
            }
        }
