* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #303f9f 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: bold;
            color: #ffeb3b;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.5px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 28px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffeb3b;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        h1 {
            color: #1a237e;
            margin: 35px 0 25px;
            font-size: 2.4rem;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            color: #303f9f;
            margin: 40px 0 20px;
            font-size: 1.9rem;
            border-bottom: 3px solid #ffeb3b;
            padding-bottom: 10px;
            line-height: 1.4;
        }
        h3 {
            color: #1a237e;
            margin: 28px 0 15px;
            font-size: 1.5rem;
            line-height: 1.4;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
        }
        strong {
            color: #1a237e;
            font-weight: 600;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #4caf50;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            margin: 12px 12px 25px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            font-size: 1.05rem;
        }
        .btn-download {
            background-color: #2196f3;
        }
        .btn-login {
            background-color: #ff9800;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .btn-download:hover {
            background-color: #0c7cd5;
        }
        .btn-login:hover {
            background-color: #f57c00;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.07);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #f0f7ff;
            border-radius: 8px;
            border-top: 4px solid #2196f3;
        }
        .stat-number {
            font-size: 2.3rem;
            font-weight: bold;
            color: #1a237e;
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #555;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-left: 5px solid #ffeb3b;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid #f1f1f1;
        }
        .reviewer {
            font-weight: 600;
            color: #303f9f;
            font-size: 1.1rem;
        }
        .rating {
            color: #ff9800;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e3f2fd;
            color: #0d47a1;
            padding: 8px 16px;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #bbdefb;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 35px 0;
        }
        .game-type-link {
            color: #2196f3;
            text-decoration: none;
            margin-right: 18px;
            font-size: 1.1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .game-type-link:hover {
            color: #0d47a1;
            text-decoration: underline;
        }
        footer {
            background-color: #1a237e;
            color: white;
            padding: 50px 0 25px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffeb3b;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-section h4:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #ffeb3b;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-section a:hover {
            color: #ffeb3b;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #303f9f;
            font-size: 1rem;
            color: #b0b0b0;
        }
        .recommendation {
            background-color: #fff8e1;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border-left: 5px solid #ffc107;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight-box {
            background-color: #e8f5e9;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            border-left: 4px solid #4caf50;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1a237e;
                padding: 25px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 15px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 25px 0 12px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
            .footer-content {
                gap: 30px;
            }
            p {
                text-align: left;
            }
        }
