* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
            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: 700;
            color: #ffeb3b;
            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: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffeb3b;
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 101;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #0d47a1;
            margin-bottom: 30px;
            font-size: 2.8rem;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffeb3b;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
        }
        h2 {
            color: #0d47a1;
            margin: 50px 0 25px;
            font-size: 2.2rem;
            border-left: 5px solid #ffeb3b;
            padding-left: 15px;
        }
        h3 {
            color: #1565c0;
            margin: 35px 0 18px;
            font-size: 1.6rem;
            position: relative;
            padding-left: 10px;
        }
        h3:before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            height: 10px;
            width: 10px;
            background-color: #ffeb3b;
            border-radius: 50%;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify;
        }
        strong {
            color: #0d47a1;
            font-weight: 600;
        }
        .btn-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 50px 0;
            justify-content: center;
        }
        .btn {
            padding: 16px 32px;
            font-size: 1.3rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 220px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #2e7d32;
            color: white;
        }
        .login-btn {
            background-color: #1976d2;
            color: white;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 45px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px 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: 12px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #e3f2fd;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #0d47a1;
            margin-bottom: 12px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #333;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-left: 5px solid #1976d2;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
        }
        .reviewer {
            font-weight: 600;
            color: #0d47a1;
            font-size: 1.1rem;
        }
        .rating {
            color: #ffb300;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 40px 0;
        }
        .tag {
            background-color: #e3f2fd;
            color: #0d47a1;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #0d47a1;
            color: white;
            transform: translateY(-3px);
        }
        .game-type-nav {
            margin: 45px 0 25px;
        }
        .game-type-nav a {
            color: #0d47a1;
            text-decoration: none;
            margin-right: 25px;
            font-size: 1.15rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .game-type-nav a:hover {
            color: #ffb300;
        }
        footer {
            background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
            color: white;
            padding: 50px 0 25px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffeb3b;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        .footer-section p {
            color: #e3f2fd;
            font-size: 1.05rem;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.15);
            margin-top: 35px;
            font-size: 0.95rem;
            color: #bbdefb;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #0d47a1;
                padding: 25px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 15px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                width: 100%;
                padding: 14px 20px;
                font-size: 1.2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .game-type-nav a {
                display: inline-block;
                margin-bottom: 10px;
            }
        }
