        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Lexend', sans-serif;
        }

        body {
            background: #191A1E;
            color: #eee;
            text-align: center;
        }

        @media (min-width: 768px) {
            header {
                flex-direction: row;
                justify-content: space-between;
                padding: 15px 40px;
                width: 100%;
                box-sizing: border-box;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1100px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        header {
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0px 20px;
            margin-bottom: 20px;
            background: rgb(33, 34, 38, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(80, 80, 80, 0.7);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
            top: 0;
            position: sticky;
            z-index: 1000;
        }

        .logo {
            width: 60px;
            padding: 5px;
        }

        .banner {
            width: 100px;
            height: 100%;
            border-radius: 10px;
            display: block;
            margin: 0 auto;
        }

        .game-info-box {
            display: flex;
            gap: 15px;
            padding: 20px;
        }

        .game-info {
            flex: 1;
        }

        .game-info p {
            font-size: 14px;
            color: #D1D5DB;
            margin-top: 10px;
            text-align: left;
        }

        .game-info h1 {
            font-size: 19.2px;
            text-align: left;
        }

        .lower {
            font-size: 11px;
            font-weight: normal;
            position: relative;
            top: 1px;
            right: 2px;
        }

        footer {
            text-align: center;
            padding: 20px;
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 40px;
        }

        .download-btn {
            font-family: 'Lexend', sans-serif;
            display: inline-flex;
            background: linear-gradient(180deg, #1cd2ff 0%, #118792 100%);
            box-shadow: 0 0 20px rgba(9, 127, 148, 0.6) !important;
            border: none;
            color: #fff;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 300px;
            height: 48px;
            padding: 0 16px;
            margin-top: 10px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 6px;
            cursor: pointer;
            white-space: nowrap;
            -webkit-tap-highlight-color: transparent;
            text-decoration: none;
        }

        .down-btn {
            font-family: 'Lexend', sans-serif;
            display: inline-flex;
            background: linear-gradient(180deg, #F5AD1E 0%, #F27621 100%);
            box-shadow: 0 0 20px rgb(255 136 0 / 60%) !important;
            border: none;
            color: #fff;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 300px;
            height: 48px;
            padding: 0 16px;
            margin-top: 10px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 6px;
            cursor: pointer;
            white-space: nowrap;
            -webkit-tap-highlight-color: transparent;
            text-decoration: none;
        }

        .download {
            width: 18px !important;
            height: auto !important;
            position: relative;
            right: 5px;
        }

        .card-top {
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .card-top::after {
            content: "";
            display: block;
            height: 1px;
            background: rgba(80, 80, 80, 0.7);
            margin: 0 20px;
            margin-top: 40px;
        }

        .alert-box {
            background: rgba(242, 118, 33, 0.08);
            border: 1px solid rgba(242, 118, 33, 0.3);
            border-left: 4px solid #F27621;
            border-radius: 8px;
            padding: 14px 16px;
            margin: 0 15px 4px;
            text-align: left;
            font-size: 14px;
            color: #D1D5DB;
            line-height: 1.6;
        }

        .alert-box strong {
            color: #F27621;
        }

        .seo-section {
            background: #212226;
            margin: 20px 15px;
            padding: 24px;
            border-radius: 10px;
            border: 1px solid rgba(80, 80, 80, 0.7);
            box-shadow: 0 0 15px rgba(50, 50, 50, 0.3);
            text-align: left;
        }

        .seo-section h2 {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }

        .seo-section p {
            color: #D1D5DB;
            font-size: 15px;
            line-height: 1.9;
            margin-bottom: 14px;
        }

        .seo-section p:last-child {
            margin-bottom: 0;
        }

        .seo-section strong {
            color: #fff;
        }

        @media (min-width: 768px) {
            .seo-section {
                padding: 30px;
            }

            .seo-section h2 {
                font-size: 26px;
            }

            .seo-section p {
                font-size: 16px;
            }
        }

        .requirements-list {
            list-style: none;
            padding: 0;
            margin-top: 16px;
        }

        .requirements-list li {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 14px 16px;
            margin-bottom: 10px;
            color: #D1D5DB;
            line-height: 1.7;
        }

        .requirements-list strong {
            color: #fff;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
            margin-top: 16px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            padding: 18px;
            text-align: left;
        }

        .feature-card h3 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 8px;
        }

        .feature-card p {
            margin: 0;
            color: #D1D5DB;
            line-height: 1.7;
            font-size: 14px;
        }

        .source-link {
            color: #F27621;
            font-weight: 600;
            text-decoration: none;
            transition: color .2s ease;
        }

        .source-link:hover {
            color: #ff9b52;
            text-decoration: underline;
        }

        .faq-list {
            margin: 20px 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .faq-item {
            border: 1px solid rgba(80, 80, 80, 0.7);
            border-radius: 8px;
            background: #212226;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 16px;
            background: transparent;
            border: none;
            text-align: left;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
        }

        .faq-arrow {
            font-style: normal;
            font-size: 14px;
            color: #666;
            transition: transform 0.25s ease;
            flex-shrink: 0;
        }

        .faq-question[aria-expanded="true"] .faq-arrow {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.25s ease;
        }

        .faq-answer p {
            margin: 0;
            padding: 12px 16px 14px;
            border-top: 1px solid rgba(80, 80, 80, 0.7);
            font-size: 14px;
            line-height: 1.7;
            color: #D1D5DB;
        }

        .faq-heading {
            font-size: 19px;
            text-align: left;
            font-weight: bold;
            margin: 40px 15px 20px 15px;
        }

        .callout {
            background: rgba(242, 118, 33, 0.07);
            border-left: 3px solid #F27621;
            padding: 14px 16px;
            border-radius: 6px;
            margin-top: 16px;
        }

        .callout p {
            margin-bottom: 0 !important;
        }

        .platform-btn-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            margin-top: 18px;
        }