/* style/pg88link.css */
        :root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
            --text-color: #333333;
            --light-bg: #f8f9fa;
            --dark-bg: #1a202c;
            --accent-color: #f59e0b;
        }

        .page-pg88link {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #ffffff;
            padding-bottom: 80px; /* Space for floating button */
        }

        .page-pg88link__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .page-pg88link__section {
            padding: 40px 20px;
            margin-bottom: 20px;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .page-pg88link__section--dark {
            background-color: var(--primary-color);
            color: #ffffff;
        }

        .page-pg88link__section--dark h2,
        .page-pg88link__section--dark h3 {
            color: #ffffff;
        }

        .page-pg88link__title {
            font-size: 32px;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 30px;
            font-weight: bold;
        }

        .page-pg88link__subtitle {
            font-size: 24px;
            color: var(--secondary-color);
            text-align: center;
            margin-bottom: 20px;
        }

        .page-pg88link__text-block p {
            margin-bottom: 15px;
            font-size: 16px;
            line-height: 1.7;
        }

        .page-pg88link__hero-section {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
            padding-top: 10px; /* Rely on body padding-top for header offset */
            overflow: hidden;
        }

        .page-pg88link__hero-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .page-pg88link__hero-image {
            width: 100%;
            margin-bottom: 30px;
        }

        .page-pg88link__hero-image img {
            width: 100%;
            height: auto;
            max-width: 100%;
            display: block;
            border-radius: 8px;
            object-fit: cover;
        }

        .page-pg88link__hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
            max-width: 800px;
        }

        .page-pg88link__hero-content h1 {
            color: var(--primary-color);
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
            font-size: clamp(28px, 4vw, 48px); /* Responsive font size for H1 */
        }

        .page-pg88link__hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--text-color);
        }

        .page-pg88link__cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: var(--primary-color);
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            margin-top: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-pg88link__cta-button:hover {
            background: #1e40af; /* Darker shade of primary */
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .page-pg88link__floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            background: var(--accent-color);
            color: #ffffff;
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            max-width: calc(100% - 40px);
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-pg88link__floating-button:hover {
            background: #d97706; /* Darker accent */
            transform: scale(1.05);
        }

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

        .page-pg88link__card {
            background: var(--light-bg);
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 250px;
        }

        .page-pg88link__card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .page-pg88link__card-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
        }

        .page-pg88link__card-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .page-pg88link__card h3 {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 10px;
        }

        .page-pg88link__card p {
            font-size: 15px;
            color: var(--text-color);
        }

        .page-pg88link__quick-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .page-pg88link__quick-link-button {
            display: block;
            padding: 15px 20px;
            background: var(--secondary-color);
            color: #ffffff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            text-align: center;
            transition: background 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-pg88link__quick-link-button:hover {
            background: #4a5568; /* Darker secondary */
        }

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

        .page-pg88link__game-card {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .page-pg88link__game-card:hover {
            transform: translateY(-5px);
        }

        .page-pg88link__game-card-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .page-pg88link__game-card-content {
            padding: 15px;
        }

        .page-pg88link__game-card-content h3 {
            font-size: 18px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .page-pg88link__game-card-content p {
            font-size: 14px;
            color: var(--text-color);
        }

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

        .page-pg88link__promo-card {
            background: var(--light-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .page-pg88link__promo-card:hover {
            transform: translateY(-5px);
        }

        .page-pg88link__promo-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .page-pg88link__promo-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .page-pg88link__promo-content h3 {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .page-pg88link__promo-content p {
            font-size: 15px;
            color: var(--text-color);
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .page-pg88link__promo-button {
            display: inline-block;
            padding: 10px 25px;
            background: var(--accent-color);
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 15px;
            transition: background 0.3s ease;
            align-self: flex-start;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-pg88link__promo-button:hover {
            background: #d97706;
        }

        .page-pg88link__faq-list {
            margin-top: 30px;
        }

        details.page-pg88link__faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            overflow: hidden;
            background: #ffffff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        details.page-pg88link__faq-item summary.page-pg88link__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;
            color: var(--text-color);
        }
        details.page-pg88link__faq-item summary.page-pg88link__faq-question::-webkit-details-marker {
            display: none;
        }
        details.page-pg88link__faq-item summary.page-pg88link__faq-question:hover {
            background: var(--light-bg);
        }
        .page-pg88link__faq-qtext {
            flex: 1;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.5;
            text-align: left;
            color: var(--primary-color);
        }
        .page-pg88link__faq-toggle {
            font-size: 24px;
            font-weight: bold;
            color: var(--secondary-color);
            flex-shrink: 0;
            margin-left: 15px;
            width: 28px;
            text-align: center;
        }
        details.page-pg88link__faq-item .page-pg88link__faq-answer {
            padding: 0 20px 20px;
            background: var(--light-bg);
            border-radius: 0 0 8px 8px;
            font-size: 15px;
            color: var(--text-color);
        }

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

        .page-pg88link__blog-card {
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .page-pg88link__blog-card:hover {
            transform: translateY(-5px);
        }

        .page-pg88link__blog-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .page-pg88link__blog-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .page-pg88link__blog-content h3 {
            font-size: 18px;
            color: var(--primary-color);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .page-pg88link__blog-content h3 a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .page-pg88link__blog-content h3 a:hover {
            text-decoration: underline;
        }

        .page-pg88link__blog-content p {
            font-size: 14px;
            color: var(--text-color);
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .page-pg88link__blog-meta {
            font-size: 13px;
            color: var(--secondary-color);
            margin-top: auto;
        }

        .page-pg88link img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 4px;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .page-pg88link {
                font-size: 16px;
                line-height: 1.6;
            }
            .page-pg88link__container {
                padding: 15px;
            }
            .page-pg88link__section {
                padding: 25px 15px;
            }
            .page-pg88link__title {
                font-size: 26px;
                margin-bottom: 20px;
            }
            .page-pg88link__subtitle {
                font-size: 20px;
            }
            .page-pg88link__hero-section {
                padding-top: 10px !important;
                padding-bottom: 40px;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-pg88link__hero-image img {
                border-radius: 4px;
            }
            .page-pg88link__hero-content h1 {
                font-size: clamp(24px, 7vw, 36px);
            }
            .page-pg88link__hero-content p {
                font-size: 16px;
            }
            .page-pg88link__cta-button {
                padding: 12px 30px;
                font-size: 16px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            .page-pg88link__floating-button {
                bottom: 15px;
                right: 15px;
                padding: 12px 20px;
                font-size: 14px;
                max-width: calc(100% - 30px) !important;
                width: calc(100% - 30px) !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            .page-pg88link__grid-2-col,
            .page-pg88link__quick-links-grid,
            .page-pg88link__games-grid,
            .page-pg88link__promo-grid,
            .page-pg88link__blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .page-pg88link__card,
            .page-pg88link__quick-link-button,
            .page-pg88link__game-card,
            .page-pg88link__promo-card,
            .page-pg88link__blog-card {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            .page-pg88link__quick-link-button,
            .page-pg88link__promo-button {
                padding-left: 15px;
                padding-right: 15px;
            }
            details.page-pg88link__faq-item summary.page-pg88link__faq-question { padding: 15px; }
            .page-pg88link__faq-qtext { font-size: 15px; }
            details.page-pg88link__faq-item .page-pg88link__faq-answer { padding: 0 15px 15px; }
            .page-pg88link__blog-image { height: 150px; }
        }

        @media (max-width: 480px) {
            .page-pg88link__floating-button {
                font-size: 13px;
                padding: 10px 15px;
            }
        }

        /* Image specific responsive styles */
        .page-pg88link img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        @media (max-width: 768px) {
            .page-pg88link img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-pg88link__section,
            .page-pg88link__card,
            .page-pg88link__container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-pg88link__hero-section {
                padding-left: 0;
                padding-right: 0;
            }
            .page-pg88link__hero-image img {
                border-radius: 0;
            }
        }
        /* List item responsive styles */
        .page-pg88link ul,
        .page-pg88link ol {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .page-pg88link li {
            box-sizing: border-box;
            word-wrap: break-word;
        }
        @media (max-width: 768px) {
            .page-pg88link ul,
            .page-pg88link ol {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            .page-pg88link li {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                word-wrap: break-word !important;
                word-break: break-word !important;
            }
        }