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

        .page-ga179bet__hero-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            background-color: #2563eb;
            padding-top: 10px; /* Small top padding, body handles main offset */
            padding-bottom: 40px;
        }

        .page-ga179bet__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 500px;
            margin-bottom: 20px;
        }

        .page-ga179bet__hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            color: #ffffff;
        }

        .page-ga179bet__main-title {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: #ffffff;
        }

        .page-ga179bet__hero-description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #f0f0f0;
        }

        .page-ga179bet__cta-button {
            display: inline-block;
            background-color: #ffc107; /* Bright yellow for CTA */
            color: #212529;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-ga179bet__cta-button:hover {
            background-color: #e0a800;
            transform: translateY(-2px);
        }

        .page-ga179bet__floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #dc3545; /* Red for urgency/promo */
            color: #ffffff;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            animation: pulse 2s infinite;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-ga179bet__floating-button:hover {
            background-color: #c82333;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

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

        .page-ga179bet__section--light {
            background-color: #ffffff;
        }

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

        .page-ga179bet__section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            color: #2563eb;
        }

        .page-ga179bet__section--dark .page-ga179bet__section-title {
            color: #ffffff;
        }

        .page-ga179bet__content-text {
            font-size: 1rem;
            margin-bottom: 20px;
            text-align: justify;
        }

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

        .page-ga179bet__game-card {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .page-ga179bet__game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

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

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

        .page-ga179bet__game-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2563eb;
        }

        .page-ga179bet__game-description {
            font-size: 0.95rem;
            color: #666666;
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .page-ga179bet__game-link {
            display: inline-block;
            background-color: #2563eb;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            transition: background-color 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-ga179bet__game-link:hover {
            background-color: #1a4d9e;
        }

        .page-ga179bet__promo-card {
            background-color: #f0f8ff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 25px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .page-ga179bet__promo-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2563eb;
            margin-bottom: 15px;
        }

        .page-ga179bet__promo-description {
            font-size: 1rem;
            color: #555555;
            margin-bottom: 20px;
        }

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

        .page-ga179bet__guide-item {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: transform 0.3s ease;
            box-sizing: border-box;
            width: 100%;
        }

        .page-ga179bet__guide-item:hover {
            transform: translateX(5px);
        }

        .page-ga179bet__guide-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            object-fit: contain;
            display: block;
        }

        .page-ga179bet__guide-content {
            flex-grow: 1;
        }

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

        .page-ga179bet__guide-text {
            font-size: 0.95rem;
            color: #666666;
        }

        .page-ga179bet__faq-container {
            margin-top: 40px;
        }

        .page-ga179bet__faq-item {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .page-ga179bet__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            color: #2563eb;
            background-color: #f9f9f9;
            user-select: none;
        }

        .page-ga179bet__faq-question:hover {
            background-color: #f0f0f0;
        }

        .page-ga179bet__faq-question h3 {
            margin: 0;
            flex-grow: 1;
            pointer-events: none; /* Prevent h3 from blocking click on parent */
            color: #2563eb;
        }

        .page-ga179bet__faq-toggle {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2563eb;
            margin-left: 15px;
            pointer-events: none; /* Prevent toggle icon from blocking click on parent */
            transition: transform 0.3s ease;
        }

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

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

        .page-ga179bet__faq-item.active .page-ga179bet__faq-answer {
            max-height: 2000px !important; /* Sufficiently large height */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-ga179bet__section-description {
            font-size: 1rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px auto;
            color: #555555;
        }

        .page-ga179bet__section--dark .page-ga179bet__section-description {
            color: #f0f0f0;
        }

        .page-ga179bet__info-block {
            background-color: #f0f8ff;
            border-left: 5px solid #2563eb;
            padding: 25px;
            margin-top: 30px;
            border-radius: 8px;
        }

        .page-ga179bet__info-block p {
            margin-bottom: 10px;
            color: #333333;
        }

        .page-ga179bet__info-block strong {
            color: #2563eb;
        }

        .page-ga179bet__link {
            color: #2563eb;
            text-decoration: none;
            font-weight: 600;
        }

        .page-ga179bet__link:hover {
            text-decoration: underline;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .page-ga179bet__section {
                padding: 50px 20px;
            }

            .page-ga179bet__game-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page-ga179bet {
                font-size: 16px;
                line-height: 1.6;
            }

            .page-ga179bet__hero-section {
                padding-top: 10px !important;
                padding-bottom: 30px;
            }

            .page-ga179bet__hero-image {
                max-height: 300px;
                margin-bottom: 15px;
            }

            .page-ga179bet__main-title {
                font-size: clamp(1.8rem, 8vw, 2.5rem);
                margin-bottom: 10px;
            }

            .page-ga179bet__hero-description {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .page-ga179bet__cta-button {
                padding: 12px 25px;
                font-size: 1rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-ga179bet__floating-button {
                padding: 10px 18px;
                font-size: 0.85rem;
                bottom: 15px;
                right: 15px;
                max-width: calc(100% - 30px) !important;
                width: auto !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-ga179bet__section {
                padding: 40px 15px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-ga179bet__section-title {
                font-size: clamp(1.5rem, 6vw, 2rem);
                margin-bottom: 30px;
            }

            .page-ga179bet__section-description {
                font-size: 0.95rem;
                margin-bottom: 30px;
            }

            .page-ga179bet__content-text {
                font-size: 0.95rem;
            }

            .page-ga179bet__game-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-ga179bet__game-image {
                height: 180px;
            }

            .page-ga179bet__game-title {
                font-size: 1.2rem;
            }

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

            .page-ga179bet__game-link {
                padding: 10px 15px;
                font-size: 0.85rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-ga179bet__promo-card {
                padding: 25px;
            }

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

            .page-ga179bet__promo-description {
                font-size: 0.95rem;
            }

            .page-ga179bet__guide-item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
                padding: 20px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .page-ga179bet__guide-icon {
                width: 50px;
                height: 50px;
            }

            .page-ga179bet__guide-title {
                font-size: 1.1rem;
            }

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

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

            .page-ga179bet__faq-answer {
                padding: 15px 20px !important;
                font-size: 0.9rem;
            }

            .page-ga179bet__faq-toggle {
                font-size: 1.3rem;
            }

            .page-ga179bet img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block;
            }
            .page-ga179bet__info-block {
                padding: 20px;
            }
        }
    