* {
            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, #16213e 0%, #0f3460 100%);
            color: #ffffff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .logo {
            font-size: 28px;
            font-weight: 800;
            text-align: center;
            margin: 10px 0;
            color: #ffdf00;
            text-shadow: 0 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: 18px;
            padding: 12px 0;
        }
        nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        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: 35px 15px;
        }
        h1 {
            color: #16213e;
            font-size: 38px;
            margin: 0 0 35px;
            text-align: center;
            padding-bottom: 18px;
            border-bottom: 4px solid #ffdf00;
            font-weight: 800;
        }
        h2 {
            color: #16213e;
            font-size: 28px;
            margin: 45px 0 25px;
            padding-left: 15px;
            border-left: 4px solid #ffdf00;
            font-weight: 700;
        }
        h3 {
            color: #0f3460;
            font-size: 24px;
            margin: 35px 0 20px;
            font-weight: 700;
        }
        p {
            margin-bottom: 22px;
            font-size: 17px;
            text-align: justify;
            line-height: 1.8;
        }
        .btn-container {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin: 50px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            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 5px 15px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #27ae60;
            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: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight {
            font-weight: 700;
            color: #16213e;
            text-decoration: underline;
            text-decoration-color: #ffdf00;
            text-decoration-thickness: 2px;
            text-underline-offset: 4px;
        }
        strong {
            color: #16213e;
        }
        .feature-list {
            margin: 30px 0 40px 40px;
        }
        .feature-list li {
            margin-bottom: 20px;
            font-size: 17px;
            position: relative;
            padding-left: 10px;
        }
        .feature-list li::marker {
            color: #ffdf00;
            font-size: 1.3em;
        }
        .review-box {
            background-color: white;
            border-radius: 10px;
            padding: 28px;
            margin: 30px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            border-top: 5px solid #0f3460;
            transition: transform 0.3s ease;
        }
        .review-box:hover {
            transform: translateY(-5px);
        }
        .reviewer {
            font-weight: 700;
            color: #16213e;
            margin-bottom: 12px;
            font-size: 19px;
        }
        .rating {
            color: #f39c12;
            margin-bottom: 15px;
            font-size: 19px;
        }
        .tag-container {
            margin: 50px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e8f4f8;
            color: #16213e;
            padding: 10px 20px;
            border-radius: 25px;
            margin: 10px 8px;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 1px solid #0f3460;
        }
        .tag:hover {
            background-color: #0f3460;
            color: white;
            transform: translateY(-3px);
        }
        .game-types {
            margin: 50px 0;
            padding: 25px;
            background-color: #f0f7ff;
            border-radius: 10px;
        }
        .game-type-link {
            color: #16213e;
            text-decoration: none;
            margin-right: 25px;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .game-type-link:hover {
            color: #0f3460;
            text-decoration: underline;
        }
        footer {
            background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
            color: white;
            padding: 50px 20px 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 35px;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h4 {
            font-size: 22px;
            margin-bottom: 22px;
            color: #ffdf00;
            font-weight: 700;
            border-bottom: 2px solid rgba(255,223,0,0.5);
            padding-bottom: 10px;
            display: inline-block;
        }
        .footer-section p {
            text-align: left;
            margin-bottom: 18px;
            font-size: 16px;
        }
        .footer-section a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ffdf00;
        }
        .copyright {
            text-align: center;
            padding-top: 35px;
            margin-top: 25px;
            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: #16213e;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                padding: 25px 0;
                margin: 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav li {
                margin: 10px 0;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 22px;
            }
            .btn {
                width: 100%;
                margin-bottom: 20px;
            }
            .feature-list {
                margin-left: 25px;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
            p {
                font-size: 16px;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #ffdf00;
            color: #16213e;
            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;
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
