* {
            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, #0a2463 0%, #3e92cc 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 28px;
            font-weight: 800;
            text-align: center;
            margin: 10px 0;
            color: #ffdd00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            padding: 10px 0;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
            font-size: 15px;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 20px;
            z-index: 1001;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 15px;
        }
        h1 {
            color: #0a2463;
            font-size: 36px;
            margin: 0 0 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #ffdd00;
            font-weight: 800;
        }
        h2 {
            color: #0a2463;
            font-size: 26px;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 4px solid #ffdd00;
            font-weight: 700;
        }
        h3 {
            color: #3e92cc;
            font-size: 22px;
            margin: 30px 0 15px;
            font-weight: 700;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 28px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 220px;
            display: inline-block;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #2ecc71;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .download-btn::after {
            content: '📥';
            margin-left: 10px;
        }
        .login-btn {
            background-color: #3498db;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .login-btn::after {
            content: '🔑';
            margin-left: 10px;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight {
            font-weight: 700;
            color: #0a2463;
            text-decoration: underline;
            text-decoration-color: #ffdd00;
            text-decoration-thickness: 2px;
            text-underline-offset: 4px;
        }
        .feature-list {
            margin: 25px 0 35px 40px;
        }
        .feature-list li {
            margin-bottom: 18px;
            font-size: 17px;
            position: relative;
            padding-left: 10px;
        }
        .feature-list li::marker {
            color: #ffdd00;
            font-size: 1.2em;
        }
        .review-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #3e92cc;
            transition: transform 0.3s ease;
        }
        .review-box:hover {
            transform: translateY(-5px);
        }
        .reviewer {
            font-weight: 700;
            color: #0a2463;
            margin-bottom: 10px;
            font-size: 18px;
        }
        .rating {
            color: #ffc107;
            margin-bottom: 12px;
            font-size: 18px;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e8f4f8;
            color: #0a2463;
            padding: 9px 18px;
            border-radius: 25px;
            margin: 8px 6px;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 1px solid #3e92cc;
        }
        .tag:hover {
            background-color: #3e92cc;
            color: white;
            transform: translateY(-3px);
        }
        .game-types {
            margin: 45px 0;
            padding: 20px;
            background-color: #f0f7ff;
            border-radius: 10px;
        }
        .game-type-link {
            color: #0a2463;
            text-decoration: none;
            margin-right: 22px;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .game-type-link:hover {
            color: #3e92cc;
            text-decoration: underline;
        }
        footer {
            background: linear-gradient(135deg, #0a2463 0%, #3e92cc 100%);
            color: white;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #ffdd00;
            font-weight: 700;
            border-bottom: 2px solid rgba(255,221,0,0.5);
            padding-bottom: 10px;
            display: inline-block;
        }
        .footer-section p {
            text-align: left;
            margin-bottom: 15px;
            font-size: 16px;
        }
        .footer-section a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ffdd00;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 20px;
            font-size: 16px;
            border-top: 1px solid rgba(255,255,255,0.1);
            grid-column: 1 / -1;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: #0a2463;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                padding: 20px 0;
                margin: 0;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav li {
                margin: 8px 0;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            .btn {
                width: 100%;
                margin-bottom: 15px;
            }
            .feature-list {
                margin-left: 25px;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #ffdd00;
            color: #0a2463;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }
        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }
