:root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
            --text-color-dark: #333333;
            --text-color-light: #ffffff;
            --background-light: #f9f9f9;
            --background-white: #ffffff;
            --border-color: #e0e0e0;
        }

        .page-pg88slotl {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-color-dark);
            background-color: var(--background-light);
        }

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

        .page-pg88slotl__section {
            padding: 40px 20px;
            margin-bottom: 20px;
            background-color: var(--background-white);
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .page-pg88slotl__section--dark {
            background-color: var(--primary-color);
            color: var(--text-color-light);
        }

        .page-pg88slotl__section--dark h2,
        .page-pg88slotl__section--dark h3 {
            color: var(--text-color-light);
        }

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

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

        .page-pg88slotl__text-block p {
            margin-bottom: 15px;
            font-size: 16px;
        }

        .page-pg88slotl__list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .page-pg88slotl__list-item {
            padding: 10px 0;
            border-bottom: 1px dashed var(--border-color);
            font-size: 16px;
            display: flex;
            align-items: flex-start;
        }

        .page-pg88slotl__list-item:last-child {
            border-bottom: none;
        }

        .page-pg88slotl__list-item::before {
            content: '✓';
            color: var(--primary-color);
            font-weight: bold;
            margin-right: 10px;
            flex-shrink: 0;
        }

        .page-pg88slotl__cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: var(--primary-color);
            color: var(--text-color-light);
            text-decoration: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            margin-top: 30px;
            transition: all 0.3s ease;
            text-align: center;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-pg88slotl__cta-button:hover {
            background: #1e50c7;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .page-pg88slotl__button-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .page-pg88slotl__button-group .page-pg88slotl__cta-button {
            margin-top: 0;
            flex-grow: 1;
            max-width: 280px;
        }

        .page-pg88slotl__hero-section {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
            padding-top: 10px; /* body padding-top handled by shared.css */
            background-color: var(--background-white);
        }

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

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

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

        .page-pg88slotl__hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
        }

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

        .page-pg88slotl__hero-content p {
            font-size: clamp(16px, 2vw, 20px);
            color: var(--text-color-dark);
            max-width: 800px;
            margin: 0 auto 30px;
        }

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

        .page-pg88slotl__game-card {
            background: var(--background-white);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

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

        .page-pg88slotl__game-card-icon {
            width: 100%; /* Ensure gamelogo takes full card width */
            max-width: 120px;
            height: auto;
            margin-bottom: 15px;
            object-fit: contain;
        }

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

        .page-pg88slotl__game-card p {
            font-size: 15px;
            color: var(--secondary-color);
            flex-grow: 1;
        }

        .page-pg88slotl__game-card .page-pg88slotl__cta-button {
            margin-top: 15px;
            padding: 10px 25px;
            font-size: 16px;
            width: auto;
            max-width: fit-content;
        }

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

        .page-pg88slotl__promo-card {
            background: var(--background-white);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

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

        .page-pg88slotl__promo-content {
            padding: 20px;
        }

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

        .page-pg88slotl__promo-content p {
            font-size: 15px;
            color: var(--text-color-dark);
            margin-bottom: 15px;
        }

        .page-pg88slotl__promo-content .page-pg88slotl__cta-button {
            padding: 10px 20px;
            font-size: 15px;
            width: auto;
            max-width: fit-content;
            margin-top: 0;
        }

        details.page-pg88slotl__faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            background: var(--background-white);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
        }
        details.page-pg88slotl__faq-item summary.page-pg88slotl__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-dark);
        }
        details.page-pg88slotl__faq-item summary.page-pg88slotl__faq-question::-webkit-details-marker {
            display: none;
        }
        details.page-pg88slotl__faq-item summary.page-pg88slotl__faq-question:hover {
            background: var(--background-light);
        }
        .page-pg88slotl__faq-qtext {
            flex: 1;
            font-size: 17px;
            font-weight: 600;
            line-height: 1.5;
            text-align: left;
            color: var(--primary-color);
        }
        .page-pg88slotl__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-pg88slotl__faq-item .page-pg88slotl__faq-answer {
            padding: 0 20px 20px;
            background: var(--background-light);
            border-radius: 0 0 8px 8px;
            font-size: 15px;
        }

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

        .page-pg88slotl__blog-card {
            background: var(--background-white);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

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

        .page-pg88slotl__blog-content {
            padding: 20px;
        }

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

        .page-pg88slotl__blog-content h3 a {
            text-decoration: none;
            color: inherit;
        }

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

        .page-pg88slotl__blog-content p {
            font-size: 15px;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .page-pg88slotl__blog-meta {
            font-size: 13px;
            color: #999;
            display: block;
            margin-top: 10px;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .page-pg88slotl__container {
                padding: 15px;
            }
            .page-pg88slotl__title {
                font-size: 28px;
            }
            .page-pg88slotl__subtitle {
                font-size: 20px;
            }
            .page-pg88slotl__game-grid, .page-pg88slotl__promo-grid, .page-pg88slotl__blog-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page-pg88slotl {
                font-size: 16px;
                line-height: 1.6;
            }
            .page-pg88slotl__hero-section {
                padding-top: 10px !important;
                padding-bottom: 40px;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-pg88slotl__hero-content h1 {
                font-size: 32px;
            }
            .page-pg88slotl__hero-content p {
                font-size: 17px;
            }
            .page-pg88slotl__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;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            .page-pg88slotl__button-group {
                flex-direction: column;
                gap: 15px;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-pg88slotl__button-group .page-pg88slotl__cta-button {
                max-width: 100%;
            }
            .page-pg88slotl__section {
                padding: 30px 15px;
            }
            .page-pg88slotl__title {
                font-size: 24px;
            }
            .page-pg88slotl__subtitle {
                font-size: 18px;
            }
            .page-pg88slotl__game-grid, .page-pg88slotl__promo-grid, .page-pg88slotl__blog-grid {
                grid-template-columns: 1fr;
            }
            .page-pg88slotl__game-card, .page-pg88slotl__promo-card, .page-pg88slotl__blog-card {
                box-sizing: border-box;
                width: 100%;
            }
            .page-pg88slotl img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-pg88slotl__section,
            .page-pg88slotl__card,
            .page-pg88slotl__container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            details.page-pg88slotl__faq-item summary.page-pg88slotl__faq-question { padding: 15px; }
            .page-pg88slotl__faq-qtext { font-size: 15px; }
            details.page-pg88slotl__faq-item .page-pg88slotl__faq-answer { padding: 0 15px 15px; }
            .page-pg88slotl__list-item {
                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;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }
            .page-pg88slotl__list {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }