
        :root {
            --primary-color: #2F6BFF;
            --secondary-color: #6FA3FF;
            --glow-color: #A5C4FF;
            --border-color: #D6E2FF;
            --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
            --card-bg-color: #FFFFFF;
            --text-main-color: #1F2D3D;
            --background-color: #F4F7FB;
            --text-light-color: #FFFFFF;
            --text-dark-color: #333333;
        }

        .page-index-hot-games {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-main-color);
            background-color: var(--background-color);
            padding-bottom: 60px; /* Add some padding to the bottom */
        }

        .page-index-hot-games__hero-section {
            position: relative;
            overflow: hidden;
            padding-top: 10px;
            padding-bottom: 40px;
            text-align: center;
            color: var(--text-light-color);
            background: var(--button-gradient);
        }

        .page-index-hot-games__hero-image-wrapper {
            width: 100%;
            max-height: 500px;
            overflow: hidden;
        }

        .page-index-hot-games__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .page-index-hot-games__hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        .page-index-hot-games__hero-content h1 {
            font-size: clamp(2.2em, 5vw, 3.5em);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--text-light-color);
        }

        .page-index-hot-games__hero-content p {
            font-size: clamp(1em, 2vw, 1.2em);
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        .page-index-hot-games__cta-button {
            display: inline-block;
            background: var(--button-gradient);
            color: var(--text-light-color);
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            white-space: normal;
            word-wrap: break-word;
        }

        .page-index-hot-games__cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            opacity: 0.9;
        }

        .page-index-hot-games__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .page-index-hot-games__section-title {
            font-size: 2.5em;
            color: var(--text-main-color);
            margin-bottom: 40px;
            font-weight: 700;
        }

        .page-index-hot-games__section-description {
            font-size: 1.1em;
            color: var(--text-dark-color);
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .page-index-hot-games__game-card {
            background: var(--card-bg-color);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .page-index-hot-games__game-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .page-index-hot-games__game-image-wrapper {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .page-index-hot-games__game-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .page-index-hot-games__game-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .page-index-hot-games__game-title {
            font-size: 1.5em;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.3;
        }

        .page-index-hot-games__game-description {
            font-size: 0.95em;
            color: var(--text-dark-color);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .page-index-hot-games__game-link {
            display: inline-block;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .page-index-hot-games__game-link:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        .page-index-hot-games__highlight-section {
            background-color: var(--primary-color);
            color: var(--text-light-color);
            padding: 80px 20px;
            text-align: center;
        }

        .page-index-hot-games__highlight-title {
            font-size: 2.8em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .page-index-hot-games__highlight-description {
            font-size: 1.2em;
            max-width: 800px;
            margin: 0 auto 40px auto;
            line-height: 1.7;
        }

        .page-index-hot-games__highlight-features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }

        .page-index-hot-games__feature-item {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            padding: 30px;
            max-width: 300px;
            text-align: center;
            transition: background 0.3s ease;
        }

        .page-index-hot-games__feature-item:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .page-index-hot-games__feature-icon {
            font-size: 3em;
            margin-bottom: 15px;
            color: var(--glow-color);
        }

        .page-index-hot-games__feature-title {
            font-size: 1.4em;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-light-color);
        }

        .page-index-hot-games__feature-text {
            font-size: 0.95em;
            color: rgba(255, 255, 255, 0.8);
        }

        .page-index-hot-games__faq-section {
            background-color: var(--card-bg-color);
            padding: 60px 20px;
            max-width: 1000px;
            margin: 40px auto;
            border-radius: 15px;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
            text-align: left;
        }

        .page-index-hot-games__faq-title {
            font-size: 2.2em;
            color: var(--text-main-color);
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
        }

        .page-index-hot-games__faq-item {
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 15px;
        }

        .page-index-hot-games__faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .page-index-hot-games__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            cursor: pointer;
            font-size: 1.15em;
            font-weight: 600;
            color: var(--text-dark-color);
            user-select: none;
            transition: color 0.3s ease;
        }

        .page-index-hot-games__faq-question:hover {
            color: var(--primary-color);
        }

        .page-index-hot-games__faq-question h3 {
            margin: 0;
            flex-grow: 1;
            pointer-events: none; /* Prevent h3 from blocking click */
        }

        .page-index-hot-games__faq-toggle {
            font-size: 1.5em;
            font-weight: bold;
            margin-left: 15px;
            color: var(--primary-color);
            transition: transform 0.3s ease;
            pointer-events: none; /* Prevent toggle from blocking click */
        }

        .page-index-hot-games__faq-item.active .page-index-hot-games__faq-toggle {
            transform: rotate(45deg); /* Change + to X */
        }

        .page-index-hot-games__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 15px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: var(--text-main-color);
            font-size: 0.95em;
            line-height: 1.7;
        }

        .page-index-hot-games__faq-item.active .page-index-hot-games__faq-answer {
            max-height: 2000px !important; /* Sufficiently large value */
            padding: 20px 15px !important;
            opacity: 1;
        }

        .page-index-hot-games__contact-cta {
            text-align: center;
            padding: 50px 20px;
            background-color: var(--secondary-color);
            color: var(--text-light-color);
            margin-top: 60px;
        }

        .page-index-hot-games__contact-cta h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        .page-index-hot-games__contact-cta p {
            font-size: 1.1em;
            margin-bottom: 30px;
        }

        .page-index-hot-games__cta-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* General image responsive styles */
        .page-index-hot-games img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Mobile responsive styles */
        @media (max-width: 768px) {
            .page-index-hot-games {
                font-size: 16px;
                line-height: 1.6;
            }

            .page-index-hot-games__hero-section {
                padding-top: 10px !important; /* Rely on body for header offset */
                padding-bottom: 30px;
            }

            .page-index-hot-games__hero-content h1 {
                font-size: 2em;
            }

            .page-index-hot-games__hero-content p {
                font-size: 0.95em;
            }

            .page-index-hot-games__cta-button {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                padding: 12px 20px;
                font-size: 1em;
            }

            .page-index-hot-games__section {
                padding: 40px 15px;
            }

            .page-index-hot-games__section-title {
                font-size: 2em;
                margin-bottom: 25px;
            }

            .page-index-hot-games__section-description {
                font-size: 1em;
                margin-bottom: 25px;
            }

            .page-index-hot-games__game-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-index-hot-games__game-card {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-index-hot-games__game-image-wrapper {
                height: 180px;
            }

            .page-index-hot-games__game-content {
                padding: 20px;
            }

            .page-index-hot-games__game-title {
                font-size: 1.3em;
            }

            .page-index-hot-games__game-description {
                font-size: 0.9em;
            }

            .page-index-hot-games__highlight-section {
                padding: 50px 15px;
            }

            .page-index-hot-games__highlight-title {
                font-size: 2em;
            }

            .page-index-hot-games__highlight-description {
                font-size: 1em;
                margin-bottom: 30px;
            }

            .page-index-hot-games__highlight-features {
                flex-direction: column;
                gap: 20px;
            }

            .page-index-hot-games__feature-item {
                max-width: 100%;
                padding: 25px;
            }

            .page-index-hot-games__faq-section {
                padding: 40px 15px;
                margin: 30px auto;
            }

            .page-index-hot-games__faq-title {
                font-size: 1.8em;
                margin-bottom: 25px;
            }

            .page-index-hot-games__faq-question {
                font-size: 1em;
                padding: 15px 0;
            }

            .page-index-hot-games__faq-answer {
                padding: 15px 10px !important;
                font-size: 0.85em;
            }

            .page-index-hot-games__contact-cta {
                padding: 40px 15px;
            }

            .page-index-hot-games__contact-cta h2 {
                font-size: 2em;
            }

            .page-index-hot-games__contact-cta p {
                font-size: 1em;
            }

            .page-index-hot-games__cta-group {
                flex-direction: column;
                gap: 15px;
            }

            .page-index-hot-games img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            .page-index-hot-games__section,
            .page-index-hot-games__game-card,
            .page-index-hot-games__feature-item,
            .page-index-hot-games__faq-section,
            .page-index-hot-games__contact-cta,
            .page-index-hot-games__cta-group {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-index-hot-games__cta-group {
                flex-wrap: wrap !important;
                gap: 10px;
            }
        }
    