
    /* CSS styles for page-11bet-win */
    :root {
        --primary-color: #e02b2b; /* Một màu đỏ rực rỡ, phổ biến trong các trang cá cược */
        --secondary-color: #ffc107; /* Một màu vàng/vàng kim sáng cho các điểm nhấn */
        --dark-background: #1a1a1a;
        --light-text: #ffffff;
        --gray-text: #cccccc;
        --border-color: #333333;
        --button-hover-bg: #c02020;
        --button-active-bg: #a01515;
    }

    .page-11bet-win {
        font-family: 'Arial', sans-serif;
        background-color: var(--dark-background);
        color: var(--light-text);
        line-height: 1.6;
        padding-top: 10px; /* Khoảng đệm nhỏ phía trên trang trí, giả định body đã có padding-top cho header */
    }

    .page-11bet-win__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: #2a2a2a;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-11bet-win__section--alt {
        background-color: #1f1f1f;
    }

    .page-11bet-win__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-11bet-win__heading {
        font-size: 2.5rem;
        color: var(--secondary-color);
        text-align: center;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .page-11bet-win__sub-heading {
        font-size: 1.8rem;
        color: var(--light-text);
        text-align: center;
        margin-bottom: 25px;
    }

    .page-11bet-win__text {
        font-size: 1rem;
        color: var(--gray-text);
        margin-bottom: 15px;
        text-align: justify;
    }

    .page-11bet-win__button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--light-text);
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        text-align: center;
    }

    .page-11bet-win__button:hover {
        background-color: var(--button-hover-bg);
    }

    /* Hero Section */
    .page-11bet-win__hero-section {
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 80px 20px;
        min-height: 450px; /* Điều chỉnh cho chế độ xem trên di động */
        background: linear-gradient(135deg, #1a1a1a, #333333);
        border-radius: 0 0 15px 15px;
        margin-bottom: 20px;
    }

    .page-11bet-win__hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        width: 100%;
    }

    .page-11bet-win__hero-title {
        font-size: 3.5rem;
        color: var(--secondary-color);
        margin-bottom: 15px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-11bet-win__hero-description {
        font-size: 1.2rem;
        color: var(--light-text);
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-11bet-win__hero-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.3;
        overflow: hidden;
    }

    .page-11bet-win__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.05);
    }

    /* Product Grid */
    .page-11bet-win__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-11bet-win__product-card {
        background-color: #3a3a3a;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        padding-bottom: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .page-11bet-win__product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    }

    .page-11bet-win__product-image-wrapper {
        width: 100%;
        height: 200px;
        overflow: hidden;
        position: relative;
    }

    .page-11bet-win__product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .page-11bet-win__product-card:hover .page-11bet-win__product-image {
        transform: scale(1.05);
    }

    .page-11bet-win__product-title {
        font-size: 1.5rem;
        color: var(--secondary-color);
        margin: 20px 15px 10px;
    }

    .page-11bet-win__product-description {
        font-size: 0.95rem;
        color: var(--gray-text);
        padding: 0 15px;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .page-11bet-win__product-button {
        display: block;
        width: calc(100% - 30px);
        margin: 0 15px;
        padding: 10px;
        background-color: var(--primary-color);
        color: var(--light-text);
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-11bet-win__product-button:hover {
        background-color: var(--button-hover-bg);
    }

    /* Promotions */
    .page-11bet-win__promo-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-11bet-win__promo-item {
        background-color: #3a3a3a;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .page-11bet-win__promo-title {
        font-size: 1.6rem;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .page-11bet-win__promo-description {
        font-size: 1rem;
        color: var(--gray-text);
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .page-11bet-win__promo-link {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .page-11bet-win__promo-link:hover {
        color: var(--secondary-color);
    }

    /* Features List */
    .page-11bet-win__feature-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
        list-style: none;
        padding: 0;
    }

    .page-11bet-win__feature-item {
        background-color: #3a3a3a;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-11bet-win__feature-icon-wrapper {
        width: 100px; /* Kích thước cố định cho wrapper, ảnh bên trong sẽ là 200x200px */
        height: 100px;
        margin-bottom: 20px;
        border-radius: 50%;
        background-color: var(--primary-color);
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    
    .page-11bet-win__feature-icon {
        width: 100%; /* Hình ảnh tự nó */
        height: 100%;
        object-fit: cover;
        border-radius: 50%; /* Đảm bảo hình ảnh tròn nếu muốn */
    }

    .page-11bet-win__feature-title {
        font-size: 1.4rem;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .page-11bet-win__feature-description {
        font-size: 0.95rem;
        color: var(--gray-text);
    }

    /* Payment and Providers */
    .page-11bet-win__partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 30px;
        justify-items: center;
    }

    .page-11bet-win__partner-logo-wrapper {
        background-color: #3a3a3a;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        width: 100%;
        max-width: 200px;
        height: 100px; /* Chiều cao cố định để hiển thị nhất quán */
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .page-11bet-win__partner-logo-wrapper:hover {
        transform: translateY(-3px);
    }

    .page-11bet-win__partner-logo {
        max-width: 100%;
        max-height: 100%;
        height: auto;
        object-fit: contain;
    }

    /* FAQ Section */
    .page-11bet-win__faq-list {
        margin-top: 30px;
    }

    .page-11bet-win__faq-item {
        background-color: #3a3a3a;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-11bet-win__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #4a4a4a;
        cursor: pointer;
        user-select: none;
        font-size: 1.1rem;
        color: var(--light-text);
        transition: background-color 0.3s ease;
        border-bottom: 1px solid transparent;
    }

    .page-11bet-win__faq-question:hover {
        background-color: #5a5a5a;
    }

    .page-11bet-win__faq-item.active .page-11bet-win__faq-question {
        border-bottom-color: var(--border-color);
    }

    .page-11bet-win__faq-question h3 {
        margin: 0;
        font-size: 1.1rem;
        color: var(--light-text);
        pointer-events: none; /* Ngăn h3 chặn sự kiện click trên phần tử cha */
    }

    .page-11bet-win__faq-toggle {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--secondary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Ngăn span chặn sự kiện click trên phần tử cha */
    }

    .page-11bet-win__faq-item.active .page-11bet-win__faq-toggle {
        transform: rotate(45deg); /* Thay đổi + thành X hoặc tương tự */
        color: var(--primary-color);
    }

    .page-11bet-win__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        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(--gray-text);
        font-size: 0.95rem;
    }

    .page-11bet-win__faq-item.active .page-11bet-win__faq-answer {
        max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
        padding: 20px 15px !important;
        opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-11bet-win__heading {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .page-11bet-win__sub-heading {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .page-11bet-win__hero-title {
            font-size: 2.5rem;
        }

        .page-11bet-win__hero-description {
            font-size: 1rem;
        }

        .page-11bet-win__section {
            padding: 30px 15px;
        }

        .page-11bet-win__product-grid,
        .page-11bet-win__promo-list,
        .page-11bet-win__feature-list,
        .page-11bet-win__partners-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        /* Yêu cầu responsive cho các mục danh sách */
        .page-11bet-win__product-grid > *,
        .page-11bet-win__promo-list > *,
        .page-11bet-win__feature-list > *,
        .page-11bet-win__partners-grid > * {
            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-11bet-win__product-card,
        .page-11bet-win__promo-item,
        .page-11bet-win__feature-item,
        .page-11bet-win__partner-logo-wrapper {
            margin: 0 auto; /* Căn giữa các mục cột đơn */
        }

        .page-11bet-win__product-button {
            width: calc(100% - 30px);
        }
        
        /* Đảm bảo hình ảnh responsive trên di động */
        .page-11bet-win__hero-image,
        .page-11bet-win__product-image,
        .page-11bet-win__feature-icon,
        .page-11bet-win__partner-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-11bet-win__hero-image-container,
        .page-11bet-win__product-image-wrapper,
        .page-11bet-win__feature-icon-wrapper,
        .page-11bet-win__partner-logo-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }

        .page-11bet-win__faq-question {
            padding: 12px 15px;
            font-size: 1rem;
        }

        .page-11bet-win__faq-question h3 {
            font-size: 1rem;
        }

        .page-11bet-win__faq-answer {
            padding: 15px 15px;
            font-size: 0.9rem;
        }
        
        .page-11bet-win__faq-item.active .page-11bet-win__faq-answer {
             padding: 15px 15px !important; /* Điều chỉnh padding cho di động */
        }
    }
    
    @media (max-width: 480px) {
        .page-11bet-win__hero-title {
            font-size: 2rem;
        }
        .page-11bet-win__heading {
            font-size: 1.8rem;
        }
    }
  