
    /* fallback for header offset */
    .page-11-uu {
        padding-top: var(--header-offset, 122px); /* Default to 122px if --header-offset is not defined */
    }

    /* General Styling */
    .page-11-uu {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

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

    .page-11-uu__section {
        padding: 60px 20px;
        margin-bottom: 20px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        text-align: center;
    }

    .page-11-uu__section-title {
        font-size: 2.5em;
        color: #c0392b; /* A strong red for emphasis, good contrast */
        margin-bottom: 30px;
        font-weight: bold;
        text-align: center;
    }

    .page-11-uu__section-subtitle {
        font-size: 1.2em;
        color: #555;
        margin-bottom: 40px;
        text-align: center;
    }

    /* Hero Section */
    .page-11-uu__hero-section {
        background: linear-gradient(135deg, #e74c3c, #c0392b); /* Gradient background */
        color: #fff;
        padding: 10px 20px 100px 20px; /* Adjust padding to avoid double header offset */
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-bottom: 0; /* Remove margin-bottom to make it flush with the header offset */
        border-radius: 0;
        box-shadow: none;
    }

    .page-11-uu__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        font-weight: bold;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-11-uu__hero-description {
        font-size: 1.5em;
        max-width: 800px;
        margin: 0 auto 40px auto;
        line-height: 1.4;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    }

    .page-11-uu__hero-image {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        margin-top: 40px;
        display: block; /* Ensure it's a block element for margin auto to work */
        margin-left: auto;
        margin-right: auto;
    }

    /* Floating Buttons */
    .page-11-uu__floating-buttons-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .page-11-uu__floating-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #e74c3c;
        color: #fff;
        font-size: 1em;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        transition: background-color 0.3s ease, transform 0.3s ease;
        text-align: center;
        line-height: 1.2; /* Adjust for multi-line text */
        padding: 5px; /* Add padding to ensure text fits */
        box-sizing: border-box;
    }

    .page-11-uu__floating-button:hover {
        background-color: #c0392b;
        transform: translateY(-5px);
    }

    .page-11-uu__floating-button--register {
        background-color: #28a745; /* Green for register */
    }

    .page-11-uu__floating-button--register:hover {
        background-color: #218838;
    }

    /* Game Categories */
    .page-11-uu__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-11-uu__game-card {
        background-color: #fefefe;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

    .page-11-uu__game-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .page-11-uu__game-card-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        border-bottom: 1px solid #eee;
    }

    .page-11-uu__game-card-content {
        padding: 20px;
    }

    .page-11-uu__game-card-title {
        font-size: 1.5em;
        color: #c0392b;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-11-uu__game-card-description {
        font-size: 0.95em;
        color: #666;
    }

    /* Promotions Section */
    .page-11-uu__promotion-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        margin-top: 40px;
    }

    .page-11-uu__promotion-item {
        background-color: #fff;
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 25px;
        text-align: left;
        flex: 1 1 calc(33% - 50px); /* Three items per row, adjust for gap */
        max-width: calc(33% - 50px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-11-uu__promotion-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .page-11-uu__promotion-title {
        font-size: 1.3em;
        color: #e74c3c;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-11-uu__promotion-description {
        font-size: 0.9em;
        color: #555;
        margin-bottom: 15px;
    }

    .page-11-uu__promotion-button {
        display: inline-block;
        background-color: #3498db;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        cursor: pointer; /* Use cursor pointer as it's a button-like element */
        border: none;
    }

    .page-11-uu__promotion-button:hover {
        background-color: #2980b9;
    }

    /* Why Choose Us Section */
    .page-11-uu__benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-11-uu__benefit-card {
        background-color: #fefefe;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-11-uu__benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .page-11-uu__benefit-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        display: block; /* Ensure it's a block element for margin auto to work */
        margin-left: auto;
        margin-right: auto;
    }

    .page-11-uu__benefit-title {
        font-size: 1.4em;
        color: #c0392b;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-11-uu__benefit-description {
        font-size: 0.95em;
        color: #666;
    }

    /* News Section */
    .page-11-uu__news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-11-uu__news-item {
        background-color: #fefefe;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
    }

    .page-11-uu__news-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .page-11-uu__news-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .page-11-uu__news-content {
        padding: 20px;
    }

    .page-11-uu__news-date {
        font-size: 0.85em;
        color: #999;
        margin-bottom: 10px;
    }

    .page-11-uu__news-title {
        font-size: 1.3em;
        color: #c0392b;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-11-uu__news-excerpt {
        font-size: 0.95em;
        color: #666;
    }

    /* FAQ Section */
    .page-11-uu__faq-container {
        max-width: 900px;
        margin: 40px auto 0 auto;
        text-align: left;
    }

    .page-11-uu__faq-item {
        background-color: #fefefe;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .page-11-uu__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #f5f5f5;
        color: #333;
        font-size: 1.1em;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-11-uu__faq-question:hover {
        background-color: #eee;
    }

    .page-11-uu__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
        color: #c0392b;
    }

    .page-11-uu__faq-toggle {
        font-size: 1.5em;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
        color: #e74c3c;
    }

    .page-11-uu__faq-item.active .page-11-uu__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-11-uu__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: #fff;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        color: #555;
        font-size: 0.95em;
        line-height: 1.8;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-11-uu__section-title {
            font-size: 2em;
        }
        .page-11-uu__hero-title {
            font-size: 2.8em;
        }
        .page-11-uu__hero-description {
            font-size: 1.3em;
        }
        .page-11-uu__promotion-item {
            flex: 1 1 calc(50% - 40px);
            max-width: calc(50% - 40px);
        }
    }

    @media (max-width: 768px) {
        .page-11-uu__container {
            padding: 15px;
        }
        .page-11-uu__section {
            padding: 40px 15px;
        }
        .page-11-uu__section-title {
            font-size: 1.8em;
        }
        .page-11-uu__hero-section {
            padding: 10px 15px 80px 15px;
        }
        .page-11-uu__hero-title {
            font-size: 2.2em;
        }
        .page-11-uu__hero-description {
            font-size: 1.1em;
        }
        .page-11-uu__game-grid,
        .page-11-uu__benefits-grid,
        .page-11-uu__news-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .page-11-uu__promotion-list {
            flex-direction: column;
            gap: 20px;
        }
        .page-11-uu__promotion-item {
            flex: 1 1 100%;
            max-width: 100%;
        }

        /* Floating buttons for mobile */
        .page-11-uu__floating-buttons-container {
            flex-direction: row;
            width: calc(100% - 40px);
            justify-content: center;
            bottom: 15px;
            right: 20px;
            left: 20px;
            gap: 10px;
        }
        .page-11-uu__floating-button {
            width: 80px; /* Wider for better tap target */
            height: 45px;
            border-radius: 25px; /* Pill shape */
            font-size: 0.9em;
            padding: 0 10px;
        }

        /* Image responsiveness */
        .page-11-uu__hero-image,
        .page-11-uu__game-card-image,
        .page-11-uu__benefit-icon,
        .page-11-uu__news-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-11-uu__game-card-image {
             height: 180px !important; /* Slightly smaller for mobile */
        }
        .page-11-uu__benefit-icon {
            width: 60px !important;
            height: 60px !important;
        }

        /* List item responsiveness (general application) */
        .page-11-uu__promotion-list > * {
            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;
        }
        .page-11-uu__promotion-item {
            padding: 15px !important; /* Adjust padding for mobile */
        }

        /* FAQ responsive */
        .page-11-uu__faq-question {
            padding: 15px 20px;
            font-size: 1em;
        }
        .page-11-uu__faq-answer {
            padding: 0 20px;
        }
        .page-11-uu__faq-item.active .page-11-uu__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-11-uu__hero-title {
            font-size: 1.8em;
        }
        .page-11-uu__hero-description {
            font-size: 1em;
        }
        .page-11-uu__floating-button {
            width: 70px;
            font-size: 0.85em;
            height: 40px;
        }
    }
  