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

        .page-sc88__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
        }

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

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

        .page-sc88__section-title {
            font-size: 32px;
            color: #2563eb;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 700;
            line-height: 1.2;
        }

        .page-sc88__section-title--light {
            color: #ffffff;
        }

        .page-sc88__text-block {
            text-align: center;
            margin-bottom: 20px;
            font-size: 18px;
        }

        .page-sc88__button {
            display: inline-block;
            background-color: #2563eb;
            color: #ffffff;
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
            white-space: normal;
            word-wrap: break-word;
            box-sizing: border-box;
        }

        .page-sc88__button:hover {
            background-color: #1a4aae;
            transform: translateY(-2px);
        }

        .page-sc88__button--secondary {
            background-color: #64748b;
            box-shadow: 0 4px 10px rgba(100, 116, 139, 0.3);
        }

        .page-sc88__button--secondary:hover {
            background-color: #4a5a6b;
        }

        .page-sc88__hero-section {
            position: relative;
            padding-top: 10px; /* Small decorative top padding */
            text-align: center;
            overflow: hidden;
            background-color: #2563eb;
            color: #ffffff;
        }

        .page-sc88__hero-image-wrapper {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .page-sc88__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            border-radius: 0;
        }

        .page-sc88__hero-content {
            max-width: 900px;
            margin: 0 auto 40px auto;
            padding: 0 20px;
        }

        .page-sc88__hero-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .page-sc88__hero-description {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-sc88__games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            padding: 0 20px;
        }

        .page-sc88__game-card {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .page-sc88__game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .page-sc88__game-image-wrapper {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            height: 200px; /* Fixed height for consistency */
        }

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

        .page-sc88__game-content {
            padding: 25px;
        }

        .page-sc88__game-title {
            font-size: 24px;
            color: #2563eb;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .page-sc88__game-description {
            font-size: 16px;
            color: #64748b;
            margin-bottom: 20px;
        }

        .page-sc88__promo-list {
            list-style: none;
            padding: 0 20px;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
        }

        .page-sc88__promo-item {
            background-color: #f0f4f8;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .page-sc88__promo-icon {
            flex-shrink: 0;
            font-size: 36px;
            color: #2563eb;
        }

        .page-sc88__promo-details {
            flex-grow: 1;
        }

        .page-sc88__promo-title {
            font-size: 22px;
            color: #2563eb;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .page-sc88__promo-description {
            font-size: 16px;
            color: #64748b;
        }

        .page-sc88__guide-steps {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            padding: 0 20px;
            list-style: none;
            margin: 0;
        }

        .page-sc88__step-item {
            flex: 1 1 300px;
            max-width: 350px;
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            box-sizing: border-box;
        }

        .page-sc88__step-number {
            font-size: 48px;
            color: #2563eb;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1;
        }

        .page-sc88__step-title {
            font-size: 24px;
            color: #333333;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .page-sc88__step-description {
            font-size: 16px;
            color: #64748b;
        }

        .page-sc88__floating-login-btn {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            background-color: #e62e2e; /* Eye-catching red */
            color: #ffffff;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            box-shadow: 0 6px 15px rgba(230, 46, 46, 0.4);
            transition: background-color 0.3s ease, transform 0.2s ease;
            white-space: normal;
            word-wrap: break-word;
            box-sizing: border-box;
            max-width: calc(100% - 40px); /* Ensure it doesn't overflow on small screens */
            width: auto; /* Allow width to adjust to content */
            text-align: center;
        }

        .page-sc88__floating-login-btn:hover {
            background-color: #c42727;
            transform: translateX(-50%) translateY(-3px);
        }

        @media (max-width: 1024px) {
            .page-sc88__hero-title {
                font-size: 40px;
            }
            .page-sc88__hero-description {
                font-size: 18px;
            }
            .page-sc88__section-title {
                font-size: 28px;
            }
            .page-sc88__games-grid, .page-sc88__promo-list {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page-sc88__container {
                padding: 15px;
            }
            .page-sc88__section {
                padding: 25px 0;
                margin-bottom: 20px;
            }
            .page-sc88__section-title {
                font-size: 24px;
                margin-bottom: 20px;
                padding: 0 15px;
            }
            .page-sc88__text-block {
                font-size: 16px;
                padding: 0 15px;
            }

            .page-sc88__hero-section {
                padding-top: 10px; /* Small decorative top padding */
            }
            .page-sc88__hero-title {
                font-size: 32px;
                margin-bottom: 15px;
                padding: 0 15px;
            }
            .page-sc88__hero-description {
                font-size: 16px;
                margin-bottom: 25px;
                padding: 0 15px;
            }

            .page-sc88__button {
                padding: 12px 20px;
                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-sc88__games-grid, .page-sc88__promo-list, .page-sc88__guide-steps {
                grid-template-columns: 1fr;
                padding: 0 15px;
                gap: 20px;
            }
            .page-sc88__game-card, .page-sc88__promo-item, .page-sc88__step-item {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            .page-sc88__game-image-wrapper {
                height: 180px;
            }
            .page-sc88__game-title {
                font-size: 20px;
            }
            .page-sc88__promo-title {
                font-size: 18px;
            }
            .page-sc88__promo-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .page-sc88__promo-icon {
                margin-bottom: 10px;
            }
            .page-sc88__step-item {
                padding: 25px;
            }
            .page-sc88__step-number {
                font-size: 40px;
            }
            .page-sc88__step-title {
                font-size: 20px;
            }
            .page-sc88__floating-login-btn {
                font-size: 16px;
                padding: 12px 25px;
                max-width: calc(100% - 30px) !important;
            }
            .page-sc88 img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
        }
    