.page-casino-live-game-rules {
    font-family: Arial, sans-serif;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #FFFFFF; /* Assuming body background is light, will be overridden by shared if needed */
}

/* General Layout */
.page-casino-live-game-rules__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-casino-live-game-rules__section {
    padding: 60px 0;
}

.page-casino-live-game-rules__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
}

.page-casino-live-game-rules__sub-title {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-casino-live-game-rules__section-description {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: -20px auto 40px auto;
    line-height: 1.6;
}

/* Hero Section */
.page-casino-live-game-rules__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
    background-color: #f0f8ff; /* Light background for hero section */
}

.page-casino-live-game-rules__hero-image {
    width: 100%;
    height: 600px; /* Fixed height for desktop hero */
    overflow: hidden;
}

.page-casino-live-game-rules__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Desktop: cover to fill space */
    display: block;
}

.page-casino-live-game-rules__hero-content {
    position: relative;
    text-align: center;
    padding: 40px 15px;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.page-casino-live-game-rules__hero-title {
    font-size: clamp(32px, 4vw, 52px); /* Clamp for H1 to prevent oversized titles */
    font-weight: 800;
    color: #26A9E0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-casino-live-game-rules__hero-description {
    font-size: 18px;
    color: #555555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-casino-live-game-rules__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Buttons */
.page-casino-live-game-rules__btn-primary,
.page-casino-live-game-rules__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    text-align: center;
}

.page-casino-live-game-rules__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-casino-live-game-rules__btn-primary:hover {
    background-color: #1a8cc2;
    border-color: #1a8cc2;
}

.page-casino-live-game-rules__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-casino-live-game-rules__btn-secondary:hover {
    background-color: #e0f2ff;
    color: #1a8cc2;
    border-color: #1a8cc2;
}

.page-casino-live-game-rules__btn-text {
    color: #26A9E0;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.page-casino-live-game-rules__btn-text:hover {
    color: #1a8cc2;
}

.page-casino-live-game-rules__arrow-icon {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.page-casino-live-game-rules__btn-text:hover .page-casino-live-game-rules__arrow-icon {
    transform: translateX(5px);
}

/* Content Wrappers & Image Blocks */
.page-casino-live-game-rules__content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.page-casino-live-game-rules__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-casino-live-game-rules__text-block {
    flex: 1;
    line-height: 1.8;
    font-size: 16px;
}

.page-casino-live-game-rules__text-block p {
    margin-bottom: 15px;
}

.page-casino-live-game-rules__image-block {
    flex: 0 0 400px; /* Fixed width for desktop */
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-casino-live-game-rules__image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* General Rules Section */
.page-casino-live-game-rules__general-rules-section {
    background-color: #26A9E0; /* Brand color as background */
    color: #FFFFFF; /* White text for contrast */
}

.page-casino-live-game-rules__general-rules-section .page-casino-live-game-rules__section-title,
.page-casino-live-game-rules__general-rules-section .page-casino-live-game-rules__sub-title,
.page-casino-live-game-rules__general-rules-section .page-casino-live-game-rules__rule-card .page-casino-live-game-rules__card-title {
    color: #FFFFFF;
}

.page-casino-live-game-rules__grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-casino-live-game-rules__rule-card {
    background-color: rgba(255, 255, 255, 0.15); /* Slightly transparent white for contrast */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-casino-live-game-rules__rule-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.25);
}

.page-casino-live-game-rules__rule-card p {
    color: #f0f0f0;
    line-height: 1.7;
    font-size: 15px;
}

.page-casino-live-game-rules__cta-buttons--center {
    justify-content: center;
    margin-top: 40px;
}

.page-casino-live-game-rules__cta-buttons--margin-top {
    margin-top: 60px;
}

/* Game Cards Grid */
.page-casino-live-game-rules__game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-casino-live-game-rules__game-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-casino-live-game-rules__game-card:hover {
    transform: translateY(-5px);
}

.page-casino-live-game-rules__game-card img {
    width: 100%;
    height: 200px; /* Fixed height for game card images */
    object-fit: cover;
    display: block;
}

.page-casino-live-game-rules__game-card .page-casino-live-game-rules__card-title {
    font-size: 22px;
    font-weight: 700;
    color: #26A9E0;
    padding: 20px 20px 10px;
    margin: 0;
}

.page-casino-live-game-rules__game-card .page-casino-live-game-rules__card-content {
    padding: 0 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-casino-live-game-rules__game-card .page-casino-live-game-rules__card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 10px;
}

.page-casino-live-game-rules__game-card .page-casino-live-game-rules__btn-text {
    margin-top: auto; /* Push "Tìm hiểu thêm" to bottom */
    align-self: flex-start;
}

/* Safety Section */
.page-casino-live-game-rules__safety-section {
    background-color: #f8fcfd; /* Light background for safety section */
}

/* Dark Background for Conclusion */
.page-casino-live-game-rules__dark-section {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-casino-live-game-rules__dark-section .page-casino-live-game-rules__section-title,
.page-casino-live-game-rules__dark-section .page-casino-live-game-rules__sub-title {
    color: #FFFFFF;
}

.page-casino-live-game-rules__dark-section p {
    color: #f0f0f0;
}

/* FAQ Section */
details.page-casino-live-game-rules__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-casino-live-game-rules__faq-item summary.page-casino-live-game-rules__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-casino-live-game-rules__faq-item summary.page-casino-live-game-rules__faq-question::-webkit-details-marker {
  display: none;
}
details.page-casino-live-game-rules__faq-item summary.page-casino-live-game-rules__faq-question:hover {
  background: #f5f5f5;
}
.page-casino-live-game-rules__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333; /* Ensure contrast */
}
.page-casino-live-game-rules__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-casino-live-game-rules__faq-item .page-casino-live-game-rules__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555; /* Ensure contrast */
  line-height: 1.7;
}

/* Global image styles for responsiveness */
.page-casino-live-game-rules img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-casino-live-game-rules__hero-image {
        height: 500px;
    }
    .page-casino-live-game-rules__section-title {
        font-size: 32px;
    }
    .page-casino-live-game-rules__sub-title {
        font-size: 22px;
    }
    .page-casino-live-game-rules__content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .page-casino-live-game-rules__image-block {
        max-width: 100%;
        flex: none;
        width: 100%;
        margin-top: 30px;
    }
    .page-casino-live-game-rules__game-card img {
        
    }
}

@media (max-width: 768px) {
    /* General Section Padding */
    .page-casino-live-game-rules__section {
        padding: 40px 0;
    }
    .page-casino-live-game-rules__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* HERO 主图区域 */
    .page-casino-live-game-rules__hero-section {
        padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
    }
    .page-casino-live-game-rules__hero-image {
        height: auto !important; /* Allow height to adjust */
    }
    .page-casino-live-game-rules__hero-image img {
        object-fit: contain !important; /* Mobile: contain to prevent cropping */
        aspect-ratio: unset !important; /* Remove aspect ratio */
        width: 100% !important;
        height: auto !important;
    }
    .page-casino-live-game-rules__hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .page-casino-live-game-rules__hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page-casino-live-game-rules__hero-cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 装饰主标题 + 长文 SEO 区 */
    .page-casino-live-game-rules__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-casino-live-game-rules__sub-title {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-casino-live-game-rules__text-block {
        font-size: 15px;
    }
    .page-casino-live-game-rules__image-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
        margin-top: 20px;
    }
    .page-casino-live-game-rules__content-wrapper {
        flex-direction: column; /* Stack content vertically */
        gap: 20px;
    }
    .page-casino-live-game-rules__content-wrapper--reverse {
        flex-direction: column; /* Also stack vertically for reverse layout */
    }

    /* 产品展示图区域 (General Rules / Game Cards) */
    .page-casino-live-game-rules__grid-container,
    .page-casino-live-game-rules__game-cards-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
        padding: 0 15px; /* Add padding to the grid container */
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
    .page-casino-live-game-rules__rule-card,
    .page-casino-live-game-rules__game-card {
        padding: 20px;
    }
    .page-casino-live-game-rules__game-card img {
         /* Adjust height for smaller screens */
    }
    .page-casino-live-game-rules__game-card .page-casino-live-game-rules__card-title {
        font-size: 20px;
        padding: 15px 0 5px;
    }
    .page-casino-live-game-rules__game-card .page-casino-live-game-rules__card-content {
        padding: 0 0 15px;
    }
    .page-casino-live-game-rules__game-card .page-casino-live-game-rules__card-content p {
        font-size: 14px;
    }

    /* 通用图片与容器 */
    .page-casino-live-game-rules img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-casino-live-game-rules__section,
    .page-casino-live-game-rules__card,
    .page-casino-live-game-rules__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 按钮与按钮容器 */
    .page-casino-live-game-rules__btn-primary,
    .page-casino-live-game-rules__btn-secondary,
    .page-casino-live-game-rules a[class*="button"],
    .page-casino-live-game-rules 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-casino-live-game-rules__cta-buttons,
    .page-casino-live-game-rules__button-group,
    .page-casino-live-game-rules__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;
    }
    .page-casino-live-game-rules__cta-buttons {
        flex-direction: column; /* Ensure vertical stacking for CTA groups */
    }
    .page-casino-live-game-rules__cta-buttons--center {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* FAQ */
    details.page-casino-live-game-rules__faq-item summary.page-casino-live-game-rules__faq-question { padding: 15px; }
    .page-casino-live-game-rules__faq-qtext { font-size: 15px; }
    details.page-casino-live-game-rules__faq-item .page-casino-live-game-rules__faq-answer {
        padding: 0 15px 15px;
    }
}