
        .page-index {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333333;
            background-color: #f8f9fa;
        }

        .page-index__section {
            padding: 60px 20px;
            margin-bottom: 20px;
            text-align: center;
        }

        .page-index__section--dark {
            background-color: #2563eb;
            color: #ffffff;
        }

        .page-index__section-title {
            font-size: 36px;
            margin-bottom: 30px;
            color: #2563eb;
            font-weight: bold;
        }

        .page-index__section--dark .page-index__section-title {
            color: #ffffff;
        }

        .page-index__section-description {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        .page-index__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .page-index__btn-primary,
        .page-index__btn-secondary {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s ease;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            max-width: 100%;
        }

        .page-index__btn-primary {
            background-color: #2563eb;
            color: #ffffff;
            border: 2px solid #2563eb;
            margin: 10px;
        }

        .page-index__btn-primary:hover {
            background-color: #1a4aae;
            border-color: #1a4aae;
        }

        .page-index__btn-secondary {
            background-color: #ffffff;
            color: #2563eb;
            border: 2px solid #2563eb;
            margin: 10px;
        }

        .page-index__btn-secondary:hover {
            background-color: #e0e0e0;
        }

        .page-index__hero-section {
            position: relative;
            padding-bottom: 0;
            padding-left: 0;
            padding-right: 0;
            padding-top: 10px; /* shared đã xử lý body padding-top */
            margin-top: 0;
            overflow: hidden;
        }

        .page-index__hero-container {
            position: relative;
            margin: 0 auto;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .page-index__hero-image {
            width: 100%;
            margin: 0;
        }

        .page-index__hero-image img {
            width: 100%;
            height: auto;
            max-width: 100%;
            display: block;
            object-fit: cover;
            filter: none; /* Đảm bảo không có filter */
        }

        .page-index__products-section {
            width: 100%;
            padding: 60px 20px;
            background: #ffffff;
            box-sizing: border-box;
            overflow: hidden;
        }

        .page-index__products-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 4fr 2fr;
            gap: 20px;
            box-sizing: border-box;
        }

        .page-index__products-grid {
            display: grid;
            gap: 20px;
        }

        .page-index__products-grid--small {
            grid-template-columns: repeat(4, 1fr);
        }

        .page-index__products-grid--large {
            grid-template-columns: repeat(2, 1fr);
        }

        .page-index__product-card {
            width: 100%;
            max-width: 300px;
            border-radius: 0;
            overflow: hidden;
            background: transparent;
            box-shadow: none;
            transition: transform 0.3s ease;
            margin: 0 auto;
        }

        .page-index__product-card:hover {
            transform: translateY(-3px);
        }

        .page-index__product-card-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .page-index__product-card-image {
            width: 100%;
            max-width: 300px;
            overflow: hidden;
            box-sizing: border-box;
        }

        .page-index__product-card-image img {
            max-width: 100%;
            width: 100%;
            height: auto;
            display: block;
            filter: none; /* Đảm bảo không có filter */
        }

        .page-index__introduction-section,
        .page-index__quick-access-section,
        .page-index__games-section,
        .page-index__promotions-section,
        .page-index__security-section,
        .page-index__blog-section {
            padding: 60px 20px;
            background-color: #f8f9fa;
        }

        .page-index__introduction-section .page-index__section-title {
            font-size: 32px;
            color: #2563eb;
            margin-bottom: 20px;
        }

        .page-index__introduction-content p {
            text-align: left;
            margin-bottom: 15px;
        }

        .page-index__quick-access-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .page-index__quick-access-card {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e0e0e0;
        }

        .page-index__quick-access-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .page-index__quick-access-card h3 {
            font-size: 22px;
            color: #2563eb;
            margin-top: 0;
            margin-bottom: 15px;
        }

        .page-index__quick-access-card .page-index__btn-primary {
            margin-top: 15px;
            display: block;
            width: calc(100% - 20px); /* Adjust for margin */
        }

        .page-index__games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .page-index__game-card {
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            text-align: left;
            border: 1px solid #e0e0e0;
        }

        .page-index__game-card-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .page-index__game-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: none; /* Đảm bảo không có filter */
        }

        .page-index__game-card-content {
            padding: 20px;
        }

        .page-index__game-card-content h3 {
            font-size: 20px;
            color: #2563eb;
            margin-top: 0;
            margin-bottom: 10px;
        }

        .page-index__game-card-content p {
            font-size: 15px;
            color: #555555;
            margin-bottom: 20px;
        }

        .page-index__promotions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .page-index__promo-card {
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            text-align: left;
            border: 1px solid #e0e0e0;
        }

        .page-index__promo-card-image {
            width: 100%;
            height: 180px;
            overflow: hidden;
        }

        .page-index__promo-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: none; /* Đảm bảo không có filter */
        }

        .page-index__promo-card-content {
            padding: 20px;
        }

        .page-index__promo-card-content h3 {
            font-size: 20px;
            color: #2563eb;
            margin-top: 0;
            margin-bottom: 10px;
        }

        .page-index__promo-card-content p {
            font-size: 15px;
            color: #555555;
            margin-bottom: 20px;
        }

        .page-index__security-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }

        .page-index__security-item {
            flex: 1 1 300px;
            background-color: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            text-align: left;
            border: 1px solid #e0e0e0;
        }

        .page-index__security-item h3 {
            font-size: 22px;
            color: #2563eb;
            margin-top: 0;
            margin-bottom: 15px;
        }

        .page-index__security-item p {
            font-size: 15px;
            color: #555555;
        }

        details.page-index__faq-item {
            margin-bottom: 15px;
            border-radius: 5px;
            border: 1px solid #e0e0e0;
            overflow: hidden;
            background: #fff;
            text-align: left;
        }
        details.page-index__faq-item summary.page-index__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            cursor: pointer;
            user-select: none;
            list-style: none;
            transition: background-color 0.3s ease;
        }
        details.page-index__faq-item summary.page-index__faq-question::-webkit-details-marker {
            display: none;
        }
        details.page-index__faq-item summary.page-index__faq-question:hover {
            background: #f5f5f5;
        }
        .page-index__faq-qtext {
            flex: 1;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.5;
            text-align: left;
            color: #333333;
        }
        .page-index__faq-toggle {
            font-size: 24px;
            font-weight: bold;
            color: #666;
            flex-shrink: 0;
            margin-left: 15px;
            width: 28px;
            text-align: center;
        }
        details.page-index__faq-item .page-index__faq-answer {
            padding: 0 20px 20px;
            background: #f9f9f9;
            border-radius: 0 0 5px 5px;
            color: #555555;
        }

        .page-index__blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .page-index__blog-card {
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            text-align: left;
            border: 1px solid #e0e0e0;
        }

        .page-index__blog-card-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .page-index__blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: none; /* Đảm bảo không có filter */
        }

        .page-index__blog-card-content {
            padding: 20px;
        }

        .page-index__blog-card-content h3 {
            font-size: 20px;
            color: #2563eb;
            margin-top: 0;
            margin-bottom: 10px;
        }

        .page-index__blog-card-content h3 a {
            text-decoration: none;
            color: #2563eb;
            transition: color 0.3s ease;
        }

        .page-index__blog-card-content h3 a:hover {
            color: #1a4aae;
        }

        .page-index__blog-card-content p {
            font-size: 15px;
            color: #555555;
            margin-bottom: 15px;
        }

        .page-index__blog-card-meta {
            font-size: 13px;
            color: #888888;
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .page-index__section-title {
                font-size: 30px;
            }
            .page-index__section-description {
                font-size: 16px;
            }
            .page-index__products-container {
                grid-template-columns: 1fr;
            }
            .page-index__products-grid--small {
                grid-template-columns: repeat(3, 1fr);
            }
            .page-index__products-grid--large {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .page-index__hero-section {
                padding-top: 10px !important;
            }
            .page-index__products-section {
                padding: 40px 15px;
                width: 100%;
                max-width: 100%;
                overflow-x: hidden;
                box-sizing: border-box;
            }
            .page-index__products-container {
                grid-template-columns: 1fr;
                gap: 15px;
                width: 100%;
                max-width: 100%;
                overflow-x: hidden;
                box-sizing: border-box;
            }
            .page-index__products-grid--small {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            .page-index__products-grid--small .page-index__product-card,
            .page-index__products-grid--small .page-index__product-card-image {
                max-width: 100% !important;
            }
            .page-index__products-grid--small .page-index__product-card-image img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-index__products-grid--large {
                grid-template-columns: 1fr;
                gap: 15px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            .page-index__products-grid--large .page-index__product-card,
            .page-index__products-grid--large .page-index__product-card-image {
                max-width: 100% !important;
            }
            .page-index__products-grid--large .page-index__product-card-image img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            .page-index__section {
                padding: 40px 15px;
            }
            .page-index__section-title {
                font-size: 24px;
            }
            .page-index__section-description {
                font-size: 15px;
            }
            .page-index__btn-primary,
            .page-index__btn-secondary,
            .page-index a[class*="button"],
            .page-index a[class*="btn"] {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-index__cta-buttons,
            .page-index__button-group,
            .page-index__btn-container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                flex-wrap: wrap !important;
                gap: 10px;
            }
            .page-index__cta-buttons {
                display: flex;
                flex-direction: column;
            }
            .page-index img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-index__section,
            .page-index__card,
            .page-index__container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-index__quick-access-grid {
                grid-template-columns: 1fr;
            }
            .page-index__quick-access-card .page-index__btn-primary {
                width: 100%;
            }
            .page-index__games-grid,
            .page-index__promotions-grid,
            .page-index__blog-grid {
                grid-template-columns: 1fr;
            }
            .page-index__security-content {
                flex-direction: column;
            }
            .page-index__security-item {
                flex: none;
                width: 100%;
            }
            details.page-index__faq-item summary.page-index__faq-question { padding: 15px; }
            .page-index__faq-qtext { font-size: 15px; }
            details.page-index__faq-item .page-index__faq-answer { padding: 0 15px 15px; }
        }
    