
    /* CSS styles for page-suncity-top1 */
    :root {
        --suncity-top1-primary-color: #e44d26; /* Màu cam rực rỡ cho hành động/nhấn mạnh */
        --suncity-top1-secondary-color: #333;
        --suncity-top1-text-color: #fff;
        --suncity-top1-bg-dark: #1a1a1a;
        --suncity-top1-bg-light: #2a2a2a;
        --suncity-top1-border-color: #444;
        --suncity-top1-accent-yellow: #fdd835; /* Vàng/Gold cho điểm nhấn */
        --suncity-top1-font-family: 'Arial', sans-serif;
    }

    body {
        font-family: var(--suncity-top1-font-family);
        color: var(--suncity-top1-text-color);
        background-color: var(--suncity-top1-bg-dark);
        margin: 0;
        padding: 0;
        line-height: 1.6;
    }

    .page-suncity-top1 {
        padding-top: var(--header-offset, 122px); /* Giá trị dự phòng cho khoảng cách header */
        max-width: 100%;
        overflow-x: hidden; /* Ngăn cuộn ngang từ các nút cố định */
    }

    .page-suncity-top1__section {
        padding: 40px 20px;
        text-align: center;
        position: relative;
        background-color: var(--suncity-top1-bg-dark);
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .page-suncity-top1__section--light {
        background-color: var(--suncity-top1-bg-light);
    }

    .page-suncity-top1__heading {
        font-size: 2.5em;
        color: var(--suncity-top1-accent-yellow);
        margin-bottom: 20px;
        text-transform: uppercase;
        font-weight: bold;
        line-height: 1.2;
    }

    .page-suncity-top1__subheading {
        font-size: 1.8em;
        color: var(--suncity-top1-text-color);
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .page-suncity-top1__text {
        font-size: 1.1em;
        color: #ccc;
        max-width: 800px;
        margin: 0 auto 30px auto;
    }

    .page-suncity-top1__button {
        display: inline-block;
        background-color: var(--suncity-top1-primary-color);
        color: var(--suncity-top1-text-color);
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-suncity-top1__button:hover {
        background-color: #ff6a00; /* Màu cam đậm hơn một chút */
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-suncity-top1__hero-section {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:hero:1920x1080:suncity,casino,gaming_banner]') no-repeat center center/cover;
        padding: 100px 20px;
        color: var(--suncity-top1-text-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 500px;
        box-sizing: border-box;
        position: relative;
        padding-top: 10px; /* Khoảng đệm nhỏ ở trên vì body đã có offset */
    }

    .page-suncity-top1__hero-title {
        font-size: 3.5em;
        margin-bottom: 15px;
        color: var(--suncity-top1-accent-yellow);
        line-height: 1.1;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    }

    .page-suncity-top1__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        max-width: 700px;
        text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    }

    /* Floating Buttons */
    .page-suncity-top1__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
    }

    .page-suncity-top1__floating-button {
        background-color: var(--suncity-top1-primary-color);
        color: var(--suncity-top1-text-color);
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        white-space: nowrap;
    }

    .page-suncity-top1__floating-button:hover {
        background-color: #ff6a00;
        transform: translateY(-3px);
    }

    /* Game Categories */
    .page-suncity-top1__game-categories {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0; /* Quan trọng cho các container danh sách */
    }

    .page-suncity-top1__game-category-item {
        background-color: var(--suncity-top1-bg-light);
        border: 1px solid var(--suncity-top1-border-color);
        border-radius: 10px;
        overflow: hidden;
        width: calc(33% - 20px); /* 3 mục mỗi hàng */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        list-style: none; /* Xóa dấu đầu dòng danh sách */
        box-sizing: border-box; /* Quan trọng cho các mục danh sách */
        margin: 0; /* Quan trọng cho các mục danh sách */
        padding: 0; /* Quan trọng cho các mục danh sách */
    }

    .page-suncity-top1__game-category-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-suncity-top1__game-category-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .page-suncity-top1__game-category-content {
        padding: 20px;
    }

    .page-suncity-top1__game-category-title {
        font-size: 1.5em;
        color: var(--suncity-top1-accent-yellow);
        margin-bottom: 10px;
    }

    .page-suncity-top1__game-category-description {
        font-size: 0.95em;
        color: #bbb;
        margin-bottom: 15px;
    }

    /* Promotions */
    .page-suncity-top1__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0; /* Quan trọng cho các container danh sách */
    }

    .page-suncity-top1__promotion-card {
        background-color: var(--suncity-top1-bg-light);
        border: 1px solid var(--suncity-top1-border-color);
        border-radius: 10px;
        padding: 25px;
        text-align: left;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Quan trọng cho các mục danh sách */
        list-style: none; /* Xóa dấu đầu dòng danh sách */
        margin: 0; /* Quan trọng cho các mục danh sách */
    }

    .page-suncity-top1__promotion-card:hover {
        transform: translateY(-5px);
    }

    .page-suncity-top1__promotion-title {
        font-size: 1.6em;
        color: var(--suncity-top1-accent-yellow);
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .page-suncity-top1__promotion-description {
        font-size: 1em;
        color: #ccc;
        margin-bottom: 20px;
    }

    /* Providers and Payments */
    .page-suncity-top1__logo-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0; /* Quan trọng cho các container danh sách */
    }

    .page-suncity-top1__logo-item {
        background-color: var(--suncity-top1-bg-light);
        padding: 15px 25px;
        border-radius: 8px;
        border: 1px solid var(--suncity-top1-border-color);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        list-style: none; /* Xóa dấu đầu dòng danh sách */
        box-sizing: border-box; /* Quan trọng cho các mục danh sách */
        margin: 0; /* Quan trọng cho các mục danh sách */
    }

    .page-suncity-top1__logo-name {
        font-size: 1.1em;
        color: var(--suncity-top1-text-color);
        font-weight: bold;
        white-space: nowrap;
    }

    /* FAQ Section */
    .page-suncity-top1__faq-section {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: left;
        box-sizing: border-box;
    }

    .page-suncity-top1__faq-item {
        background-color: var(--suncity-top1-bg-light);
        border: 1px solid var(--suncity-top1-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-suncity-top1__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        user-select: none;
        background-color: var(--suncity-top1-secondary-color);
        color: var(--suncity-top1-text-color);
        border-bottom: 1px solid transparent;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-suncity-top1__faq-question:hover {
        background-color: #444;
    }

    .page-suncity-top1__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--suncity-top1-accent-yellow);
        pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-suncity-top1__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--suncity-top1-primary-color);
        pointer-events: none; /* Ngăn biểu tượng toggle chặn sự kiện click */
        transition: transform 0.3s ease;
    }

    .page-suncity-top1__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        color: #ccc;
        font-size: 1em;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        box-sizing: border-box;
    }

    .page-suncity-top1__faq-item.active .page-suncity-top1__faq-answer {
        max-height: 2000px !important; /* Giá trị đủ lớn để chứa mọi nội dung */
        padding: 20px !important;
        opacity: 1;
    }

    .page-suncity-top1__faq-item.active .page-suncity-top1__faq-question {
        border-bottom-color: var(--suncity-top1-border-color);
    }

    .page-suncity-top1__faq-item.active .page-suncity-top1__faq-toggle {
        transform: rotate(45deg); /* Xoay + để thành X, hoặc thay đổi thành - */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-suncity-top1__hero-section {
            padding: 80px 15px;
            min-height: 400px;
        }

        .page-suncity-top1__hero-title {
            font-size: 2.5em;
        }

        .page-suncity-top1__hero-subtitle {
            font-size: 1.2em;
        }

        .page-suncity-top1__heading {
            font-size: 2em;
        }

        .page-suncity-top1__subheading {
            font-size: 1.5em;
        }

        .page-suncity-top1__section {
            padding: 30px 15px;
        }

        .page-suncity-top1__floating-buttons {
            bottom: 15px;
            gap: 10px;
            width: calc(100% - 30px); /* Điều chỉnh chiều rộng cho màn hình nhỏ hơn */
            justify-content: space-around;
        }

        .page-suncity-top1__floating-button {
            padding: 10px 18px;
            font-size: 1em;
            flex-grow: 1; /* Cho phép các nút mở rộng */
            text-align: center;
        }

        .page-suncity-top1__game-categories {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }
        .page-suncity-top1__game-category-item {
            width: calc(100% - 20px) !important; /* Chiều rộng đầy đủ cho di động */
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-suncity-top1__game-category-image {
            height: 180px;
            max-width: 100% !important;
            height: auto !important;
        }

        .page-suncity-top1__promotions-grid {
            grid-template-columns: 1fr;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }
        .page-suncity-top1__promotion-card {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-suncity-top1__logo-grid {
            gap: 15px;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }
        .page-suncity-top1__logo-item {
            padding: 10px 15px;
            font-size: 0.9em;
            width: auto; /* Cho phép các mục tự điều chỉnh kích thước */
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-suncity-top1__faq-question h3 {
            font-size: 1.1em;
        }
        .page-suncity-top1__faq-answer {
            padding: 0 15px;
        }
        .page-suncity-top1__faq-item.active .page-suncity-top1__faq-answer {
            padding: 15px !important;
        }

        /* Tất cả hình ảnh phản hồi cho di động */
        .page-suncity-top1 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
        .page-suncity-top1__game-category-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
    }
  