
        body {
            background-color: #000000;
            color: #f0f0f0;
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
        }

        .page-88zip {
            max-width: 100%;
            overflow-x: hidden;
            box-sizing: border-box;
            color: #f0f0f0;
        }

        .page-88zip__section {
            padding: 40px 20px;
            margin-bottom: 20px;
            background-color: #1a1a1a;
            border-radius: 8px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            box-sizing: border-box;
        }

        .page-88zip__hero-section {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 10px 20px 60px;
            background-color: #000000;
            overflow: hidden;
            box-sizing: border-box;
        }

        .page-88zip__hero-image {
            width: 100%;
            max-width: 1600px;
            height: auto;
            display: block;
            border-radius: 12px;
            margin-bottom: 30px;
            object-fit: cover;
            object-position: center;
        }

        .page-88zip__hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .page-88zip__main-title {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            color: #ffd700;
            margin-bottom: 15px;
            line-height: 1.2;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .page-88zip__description {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            color: #e0e0e0;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .page-88zip__cta-button {
            display: inline-block;
            background-color: #ffd700;
            color: #000000;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-88zip__cta-button:hover {
            background-color: #ffeb3b;
            transform: translateY(-3px);
        }

        .page-88zip__video-section {
            background-color: #000000;
            padding: 10px 20px 40px;
            text-align: center;
            box-sizing: border-box;
        }

        .page-88zip__section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: #ffd700;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 600;
        }

        .page-88zip__video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
            background-color: #333;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
            width: 100%;
            box-sizing: border-box;
        }

        .page-88zip__video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            object-fit: cover;
            cursor: pointer;
        }

        .page-88zip__game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .page-88zip__game-card {
            background-color: #222222;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

        .page-88zip__game-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
        }

        .page-88zip__game-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .page-88zip__game-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .page-88zip__game-title {
            font-size: 1.6rem;
            color: #ffd700;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-88zip__game-description {
            font-size: 0.95rem;
            color: #e0e0e0;
            line-height: 1.5;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .page-88zip__btn-play {
            background-color: #ffd700;
            color: #000000;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-88zip__btn-play:hover {
            background-color: #ffeb3b;
            transform: translateY(-2px);
        }

        .page-88zip__provider-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .page-88zip__provider-logo {
            background-color: #222222;
            padding: 15px;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 80px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .page-88zip__provider-logo:hover {
            transform: scale(1.05);
        }

        .page-88zip__provider-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            height: auto; /* Ensure auto height for gamelogo */
            width: auto; /* Ensure auto width for gamelogo */
            display: block;
        }

        .page-88zip__guide-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .page-88zip__guide-item {
            background-color: #222222;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            transition: transform 0.3s ease;
        }

        .page-88zip__guide-item:hover {
            transform: translateY(-5px);
        }

        .page-88zip__guide-title {
            font-size: 1.5rem;
            color: #ffd700;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-88zip__guide-text {
            font-size: 0.95rem;
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .page-88zip__btn-guide {
            background-color: #2563eb;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.95rem;
            transition: background-color 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-88zip__btn-guide:hover {
            background-color: #1e40af;
        }

        .page-88zip__faq-section {
            background-color: #000000;
            padding: 40px 20px;
            box-sizing: border-box;
        }

        .page-88zip__faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .page-88zip__faq-item {
            background-color: #1a1a1a;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .page-88zip__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            background-color: #222222;
            color: #ffd700;
            font-size: 1.15rem;
            font-weight: 600;
            cursor: pointer;
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .page-88zip__faq-question:hover {
            background-color: #333333;
        }

        .page-88zip__faq-question h3 {
            margin: 0;
            padding: 0;
            color: inherit;
            font-size: inherit;
            font-weight: inherit;
            pointer-events: none; /* Prevent h3 from blocking click event */
        }

        .page-88zip__faq-toggle {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd700;
            line-height: 1;
            pointer-events: none; /* Prevent toggle from blocking click event */
            transition: transform 0.3s ease;
        }

        .page-88zip__faq-item.active .page-88zip__faq-toggle {
            transform: rotate(45deg);
        }

        .page-88zip__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            color: #e0e0e0;
            font-size: 0.95rem;
            line-height: 1.6;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            opacity: 0;
        }

        .page-88zip__faq-item.active .page-88zip__faq-answer {
            max-height: 2000px !important; /* Use !important to override */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-88zip__footer-note {
            text-align: center;
            padding: 30px 20px;
            background-color: #000000;
            color: #999999;
            font-size: 0.85rem;
            line-height: 1.5;
            box-sizing: border-box;
        }

        .page-88zip__footer-note a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .page-88zip__footer-note a:hover {
            color: #ffeb3b;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .page-88zip__hero-image {
                height: 500px;
            }
        }

        @media (max-width: 768px) {
            .page-88zip__section {
                padding: 30px 15px;
                margin-bottom: 15px;
            }

            .page-88zip__hero-section {
                padding: 10px 15px 40px;
            }

            .page-88zip__hero-image {
                height: 300px;
                margin-bottom: 20px;
            }

            .page-88zip__main-title {
                font-size: clamp(1.8rem, 7vw, 2.5rem);
            }

            .page-88zip__description {
                font-size: clamp(0.9rem, 3.5vw, 1.1rem);
            }

            .page-88zip__cta-button,
            .page-88zip__btn-play,
            .page-88zip__btn-guide {
                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-88zip__video-section {
                padding: 10px 15px 30px;
            }

            .page-88zip__section-title {
                font-size: clamp(1.5rem, 6vw, 2.2rem);
                margin-bottom: 20px;
            }

            .page-88zip__game-grid,
            .page-88zip__provider-grid,
            .page-88zip__guide-list {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 15px;
            }

            .page-88zip__game-image {
                height: 180px;
            }

            .page-88zip__game-title {
                font-size: 1.4rem;
            }

            .page-88zip__game-description {
                font-size: 0.9rem;
            }

            .page-88zip__provider-logo {
                height: 70px;
                padding: 10px;
            }

            .page-88zip__guide-title {
                font-size: 1.3rem;
            }

            .page-88zip__guide-text {
                font-size: 0.9rem;
            }

            .page-88zip__faq-question {
                font-size: 1rem;
                padding: 15px 20px;
            }

            .page-88zip__faq-answer {
                padding: 15px 20px !important;
                font-size: 0.85rem;
            }

            /* Images and videos must be responsive */
            .page-88zip img,
            .page-88zip video {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }

            .page-88zip__hero-image,
            .page-88zip__game-image,
            .page-88zip__provider-logo img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            .page-88zip__video-wrapper,
            .page-88zip__section,
            .page-88zip__game-card,
            .page-88zip__guide-item,
            .page-88zip__faq-item,
            .page-88zip__hero-content,
            .page-88zip__game-grid,
            .page-88zip__provider-grid,
            .page-88zip__guide-list,
            .page-88zip__faq-container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                overflow-x: hidden !important;
            }
        }
    