
        /* style/daga68.css */
        :root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
            --text-dark: #333333;
            --text-light: #ffffff;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-color: #e0e0e0;
        }

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

        .page-daga68__hero-section {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 60px 20px;
            padding-top: 10px; /* Small top padding, body handles header offset */
            background-color: var(--bg-light);
            text-align: center;
        }

        .page-daga68__hero-image-wrapper {
            width: 100%;
            max-width: 1200px;
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 10px;
        }

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

        .page-daga68__hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .page-daga68__main-title {
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--primary-color);
            margin-bottom: 15px;
            line-height: 1.2;
            font-weight: 700;
        }

        .page-daga68__hero-description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--text-dark);
        }

        .page-daga68__btn-primary {
            display: inline-block;
            background: var(--primary-color);
            color: var(--text-light);
            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;
            border: none;
            cursor: pointer;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-daga68__btn-primary:hover {
            background-color: #1e52cc;
            transform: translateY(-2px);
        }

        .page-daga68__floating-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(90deg, #ff416c, #ff4b2b);
            color: var(--text-light);
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-sizing: border-box;
            max-width: 250px;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-daga68__floating-btn:hover {
            transform: translateY(-5px) scale(1.05);
        }

        .page-daga68__section {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: var(--bg-white);
            border-bottom: 1px solid var(--border-color);
        }

        .page-daga68__section:last-of-type {
            border-bottom: none;
        }

        .page-daga68__section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .page-daga68__content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            align-items: flex-start;
        }

        .page-daga68__text-block {
            flex: 1;
            min-width: 300px;
            max-width: 700px;
            text-align: justify;
        }

        .page-daga68__image-block {
            flex: 1;
            min-width: 300px;
            max-width: 400px;
            text-align: center;
        }

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

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

        .page-daga68__list-item {
            background-color: var(--bg-light);
            margin-bottom: 10px;
            padding: 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .page-daga68__list-icon {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

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

        .page-daga68__game-card {
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .page-daga68__game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.12);
        }

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

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

        .page-daga68__game-title {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-daga68__game-description {
            font-size: 0.95rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .page-daga68__btn-secondary {
            display: inline-block;
            background: var(--bg-white);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: background-color 0.3s ease, color 0.3s ease;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-daga68__btn-secondary:hover {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        .page-daga68__step-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            counter-reset: step-counter;
        }

        .page-daga68__step-item {
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            position: relative;
            padding-left: 60px;
        }

        .page-daga68__step-item::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 20px;
            top: 20px;
            background: var(--primary-color);
            color: var(--text-light);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .page-daga68__step-title {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-daga68__faq-section {
            padding: 40px 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .page-daga68__faq-item {
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .page-daga68__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            cursor: pointer;
            background-color: var(--bg-light);
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.1rem;
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .page-daga68__faq-question:hover {
            background-color: #e0e7ff;
        }

        .page-daga68__faq-qtext {
            pointer-events: none;
        }

        .page-daga68__faq-toggle {
            font-size: 1.5rem;
            line-height: 1;
            pointer-events: none;
            transition: transform 0.3s ease;
        }

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

        .page-daga68__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: var(--text-dark);
        }

        .page-daga68__faq-item.active .page-daga68__faq-answer {
            max-height: 2000px !important;
            padding: 20px !important;
            opacity: 1;
        }

        .page-daga68__cta-final {
            text-align: center;
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 50px 20px;
            border-radius: 10px;
            margin: 40px auto;
            max-width: 1000px;
        }

        .page-daga68__cta-final-title {
            color: var(--text-light);
            margin-bottom: 25px;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .page-daga68__section,
            .page-daga68__faq-section,
            .page-daga68__cta-final {
                padding-left: 15px;
                padding-right: 15px;
            }
        }

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

            .page-daga68__hero-section {
                padding: 40px 15px;
                padding-top: 10px !important; /* body handles header offset */
            }

            .page-daga68__main-title {
                font-size: clamp(1.8rem, 8vw, 2.5rem);
            }

            .page-daga68__hero-description {
                font-size: 1rem;
            }

            .page-daga68__btn-primary,
            .page-daga68__btn-secondary,
            .page-daga68 a[class*="button"],
            .page-daga68 a[class*="btn"] {
                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-daga68__floating-btn {
                font-size: 0.9rem;
                padding: 12px 20px;
                bottom: 15px;
                right: 15px;
                max-width: 200px;
            }

            .page-daga68__section {
                padding: 30px 15px;
            }

            .page-daga68__section-title {
                font-size: clamp(1.5rem, 7vw, 2rem);
            }

            .page-daga68__content-wrapper {
                flex-direction: column;
                gap: 20px;
            }

            .page-daga68__text-block,
            .page-daga68__image-block {
                min-width: unset;
                max-width: 100%;
            }

            .page-daga68__list-item {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
                padding: 15px;
                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-daga68__game-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-daga68__game-image {
                height: 150px;
            }

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

            .page-daga68__step-item {
                padding-left: 50px;
            }

            .page-daga68__step-item::before {
                left: 15px;
                top: 15px;
                width: 25px;
                height: 25px;
                font-size: 1rem;
            }

            .page-daga68__faq-section {
                padding: 30px 15px;
            }

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

            .page-daga68__faq-answer {
                padding: 15px !important;
            }

            .page-daga68__cta-final {
                padding: 40px 15px;
                margin: 30px auto;
            }

            .page-daga68__cta-final-title {
                font-size: clamp(1.5rem, 7vw, 2rem);
            }

            /* Image responsiveness */
            .page-daga68 img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }

            .page-daga68__section,
            .page-daga68__card,
            .page-daga68__container,
            .page-daga68__hero-image-wrapper,
            .page-daga68__content-wrapper,
            .page-daga68__game-grid,
            .page-daga68__step-list,
            .page-daga68__faq-section,
            .page-daga68__cta-final {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
            }

            /* Button container responsiveness */
            .page-daga68__cta-buttons,
            .page-daga68__button-group,
            .page-daga68__btn-container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                flex-wrap: wrap !important;
                gap: 10px;
            }
        }
    