/* style/resources-b52-betting-guide.css */

/* Biến màu sắc */
:root {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-card: #ffffff;
  --border-color: #e0e0e0;
}

/* Thiết lập chung cho trang (chỉ áp dụng trong phạm vi .page-resources-b52-betting-guide) */
.page-resources-b52-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Mặc định chữ sáng vì body có thể là nền tối */
  background-color: var(--bg-dark-1); /* Kế thừa từ shared.css, giả định là nền tối */
}

.page-resources-b52-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-b52-betting-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-resources-b52-betting-guide__section-title--light {
  color: var(--text-light);
}

.page-resources-b52-betting-guide__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-light);
}

.page-resources-b52-betting-guide__text-block--light {
  color: var(--text-light);
}

/* Hình ảnh toàn chiều rộng */
.page-resources-b52-betting-guide__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-resources-b52-betting-guide__margin-top {
  margin-top: 40px;
}

/* Nút CTA chung */
.page-resources-b52-betting-guide__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  margin: 10px;
  white-space: nowrap;
}

.page-resources-b52-betting-guide__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-resources-b52-betting-guide__cta-button--primary:hover {
  background: darken(var(--primary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-b52-betting-guide__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-resources-b52-betting-guide__cta-button--secondary:hover {
  background: darken(var(--secondary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-b52-betting-guide__btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 15px;
  white-space: nowrap;
}

.page-resources-b52-betting-guide__btn-small:hover {
  background: darken(var(--secondary-color), 10%);
}

.page-resources-b52-betting-guide__btn-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: 10px;
  display: inline-block;
}

.page-resources-b52-betting-guide__btn-link:hover {
  color: darken(var(--primary-color), 10%);
  text-decoration: underline;
}

/* -------------------- Video Section -------------------- */
.page-resources-b52-betting-guide__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Đảm bảo không bị che bởi header */
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(255, 215, 0, 0.8));
  color: var(--text-light);
}

.page-resources-b52-betting-guide__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-b52-betting-guide__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-b52-betting-guide__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-b52-betting-guide__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-b52-betting-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click */
}

.page-resources-b52-betting-guide__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-resources-b52-betting-guide__video-link:hover .page-resources-b52-betting-guide__video-overlay {
  opacity: 1;
}

.page-resources-b52-betting-guide__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  padding: 12px 25px;
  background: rgba(255, 215, 0, 0.8);
  border-radius: 50px;
  white-space: nowrap;
  border: 2px solid #ffffff;
}

.page-resources-b52-betting-guide__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.page-resources-b52-betting-guide__play-now-button {
  display: inline-block;
  padding: 18px 50px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-resources-b52-betting-guide__play-now-button:hover {
  background: darken(var(--primary-color), 10%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* -------------------- Hero Section (H1 + CTA) -------------------- */
.page-resources-b52-betting-guide__hero-section {
  background: url('[GALLERY:hero_background:1920x1080:b52,betting,guide,hero_bg,gold_red]') no-repeat center center/cover;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 0;
  color: var(--text-light);
  overflow: hidden;
}

.page-resources-b52-betting-guide__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.page-resources-b52-betting-guide__main-title {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-resources-b52-betting-guide__hero-description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-light);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-b52-betting-guide__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* -------------------- Intro Section -------------------- */
.page-resources-b52-betting-guide__intro-section {
  padding: 60px 0;
  background-color: var(--bg-dark-1); /* Nền tối */
  color: var(--text-light);
}

/* -------------------- Features Section -------------------- */
.page-resources-b52-betting-guide__features-section {
  padding: 60px 0;
  background-color: var(--bg-dark-2); /* Nền tối */
  color: var(--text-light);
}

.page-resources-b52-betting-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-b52-betting-guide__feature-card {
  background: var(--bg-card); /* Nền sáng cho card */
  color: var(--text-dark); /* Chữ tối trên nền sáng */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Đảm bảo chiều cao đồng đều */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-resources-b52-betting-guide__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-resources-b52-betting-guide__feature-icon {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.page-resources-b52-betting-guide__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-b52-betting-guide__feature-card p {
  font-size: 16px;
  color: var(--text-dark);
  flex-grow: 1;
}

/* -------------------- Guide Section -------------------- */
.page-resources-b52-betting-guide__guide-section {
  padding: 60px 0;
  background-color: var(--bg-dark-1); /* Nền tối */
  color: var(--text-light);
}

.page-resources-b52-betting-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-resources-b52-betting-guide__step-card {
  background: var(--bg-card); /* Nền sáng */
  color: var(--text-dark); /* Chữ tối */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-resources-b52-betting-guide__step-card h3 {
  color: var(--secondary-color);
  font-size: 22px;
  margin-bottom: 15px;
}

.page-resources-b52-betting-guide__step-card p {
  font-size: 16px;
  flex-grow: 1;
}

/* -------------------- Game Types Section -------------------- */
.page-resources-b52-betting-guide__game-types-section {
  padding: 60px 0;
  background-color: var(--bg-dark-2); /* Nền tối */
  color: var(--text-light);
}

.page-resources-b52-betting-guide__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-b52-betting-guide__game-card {
  background: var(--bg-card); /* Nền sáng */
  color: var(--text-dark); /* Chữ tối */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-resources-b52-betting-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-resources-b52-betting-guide__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-resources-b52-betting-guide__game-card .page-resources-b52-betting-guide__card-title {
  padding: 20px 20px 0;
  text-align: left;
  font-size: 22px;
}

.page-resources-b52-betting-guide__game-card .page-resources-b52-betting-guide__card-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-resources-b52-betting-guide__game-card .page-resources-b52-betting-guide__card-title a:hover {
  text-decoration: underline;
}

.page-resources-b52-betting-guide__game-card p {
  padding: 0 20px 20px;
  font-size: 16px;
  flex-grow: 1;
}

.page-resources-b52-betting-guide__game-card .page-resources-b52-betting-guide__btn-link {
  margin: 0 20px 20px;
  align-self: flex-start;
}

/* -------------------- Promotions Section -------------------- */
.page-resources-b52-betting-guide__promotions-section {
  padding: 60px 0;
  background-color: var(--bg-dark-1); /* Nền tối */
  color: var(--text-light);
  text-align: center;
}

/* -------------------- Security Section -------------------- */
.page-resources-b52-betting-guide__security-section {
  padding: 60px 0;
  background-color: var(--bg-dark-2); /* Nền tối */
  color: var(--text-light);
}

.page-resources-b52-betting-guide__security-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-b52-betting-guide__security-item {
  background: var(--bg-card); /* Nền sáng */
  color: var(--text-dark); /* Chữ tối */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-resources-b52-betting-guide__list-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-resources-b52-betting-guide__security-item p {
  font-size: 16px;
}

/* -------------------- Responsible Gaming Section -------------------- */
.page-resources-b52-betting-guide__responsible-gaming-section {
  padding: 60px 0;
  background-color: var(--bg-dark-1); /* Nền tối */
  color: var(--text-light);
}

.page-resources-b52-betting-guide__responsible-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
  color: var(--text-light);
}

.page-resources-b52-betting-guide__responsible-item {
  font-size: 17px;
  margin-bottom: 10px;
}

/* -------------------- FAQ Section -------------------- */
.page-resources-b52-betting-guide__faq-section {
  padding: 60px 0;
  background-color: var(--bg-dark-2); /* Nền tối */
  color: var(--text-light);
}

.page-resources-b52-betting-guide__faq-list {
  margin-top: 40px;
}

.page-resources-b52-betting-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-b52-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-b52-betting-guide__faq-question:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}

.page-resources-b52-betting-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  pointer-events: none;
}

.page-resources-b52-betting-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-b52-betting-guide__faq-item.active .page-resources-b52-betting-guide__faq-toggle {
  transform: rotate(45deg); /* Change to X when active */
  color: var(--secondary-color);
}

.page-resources-b52-betting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #f9f9f9;
  color: var(--text-dark);
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.page-resources-b52-betting-guide__faq-item.active .page-resources-b52-betting-guide__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 25px !important;
  opacity: 1;
  border: 1px solid var(--border-color);
  border-top: none;
}

.page-resources-b52-betting-guide__faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--text-dark);
}

/* -------------------- Brand Section -------------------- */
.page-resources-b52-betting-guide__brand-section {
  padding: 60px 0;
  background-color: var(--bg-dark-1); /* Nền tối */
  color: var(--text-light);
}

.page-resources-b52-betting-guide__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-b52-betting-guide__brand-item {
  background: var(--bg-card); /* Nền sáng */
  color: var(--text-dark); /* Chữ tối */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-resources-b52-betting-guide__brand-item h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 15px;
}

.page-resources-b52-betting-guide__brand-item p {
  font-size: 16px;
  flex-grow: 1;
}

/* -------------------- Blog Section -------------------- */
.page-resources-b52-betting-guide__blog-section {
  padding: 60px 0;
  background-color: var(--bg-dark-2); /* Nền tối */
  color: var(--text-light);
}

.page-resources-b52-betting-guide__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-b52-betting-guide__blog-item {
  background: var(--bg-card); /* Nền sáng */
  color: var(--text-dark); /* Chữ tối */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-resources-b52-betting-guide__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-resources-b52-betting-guide__blog-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-resources-b52-betting-guide__blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-resources-b52-betting-guide__blog-item-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  padding: 20px 20px 10px;
  line-height: 1.4;
}

.page-resources-b52-betting-guide__blog-item-excerpt {
  font-size: 16px;
  color: var(--text-dark);
  padding: 0 20px;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-resources-b52-betting-guide__blog-item-date {
  font-size: 14px;
  color: #666;
  padding: 0 20px 20px;
  display: block;
}

.page-resources-b52-betting-guide__view-all-button-container {
  text-align: center;
  margin-top: 50px;
}

/* -------------------- Final CTA Section -------------------- */
.page-resources-b52-betting-guide__final-cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  color: var(--text-light);
}

/* -------------------- Responsive Design -------------------- */
@media (max-width: 1024px) {
  .page-resources-b52-betting-guide__main-title {
    font-size: 40px;
  }

  .page-resources-b52-betting-guide__hero-description {
    font-size: 18px;
  }

  .page-resources-b52-betting-guide__section-title {
    font-size: 30px;
  }

  .page-resources-b52-betting-guide__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  
  .page-resources-b52-betting-guide__play-now-button {
    padding: 15px 40px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-resources-b52-betting-guide__video-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-resources-b52-betting-guide__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .page-resources-b52-betting-guide__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-resources-b52-betting-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 8px;
    overflow: hidden !important;
  }
  
  .page-resources-b52-betting-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    object-fit: contain; /* Ensure video fits within bounds */
  }
  
  .page-resources-b52-betting-guide__video-cta {
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .page-resources-b52-betting-guide__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px 30px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-resources-b52-betting-guide__video-click-hint {
    font-size: 16px !important;
    padding: 10px 20px !important;
  }

  .page-resources-b52-betting-guide__main-title {
    font-size: 32px;
  }

  .page-resources-b52-betting-guide__hero-description {
    font-size: 16px;
  }

  .page-resources-b52-betting-guide__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .page-resources-b52-betting-guide__text-block {
    font-size: 16px;
  }

  .page-resources-b52-betting-guide__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 8px 0 !important;
    font-size: 16px;
    white-space: normal;
    word-wrap: break-word;
  }

  .page-resources-b52-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-resources-b52-betting-guide__container {
    padding: 0 15px;
  }

  .page-resources-b52-betting-guide__feature-icon {
    width: 100px;
    height: 100px;
  }

  .page-resources-b52-betting-guide__card-title {
    font-size: 20px;
  }

  .page-resources-b52-betting-guide__faq-question {
    padding: 15px 20px;
  }

  .page-resources-b52-betting-guide__faq-question h3 {
    font-size: 16px;
  }

  .page-resources-b52-betting-guide__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-resources-b52-betting-guide__faq-answer {
    padding: 0 20px;
  }

  .page-resources-b52-betting-guide__faq-item.active .page-resources-b52-betting-guide__faq-answer {
    padding: 15px 20px !important;
  }

  .page-resources-b52-betting-guide__blog-image {
    height: 180px;
  }

  .page-resources-b52-betting-guide__blog-item-title {
    font-size: 18px;
  }

  .page-resources-b52-betting-guide__blog-item-excerpt,
  .page-resources-b52-betting-guide__blog-item-date {
    font-size: 14px;
  }

  .page-resources-b52-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-resources-b52-betting-guide__intro-section,
  .page-resources-b52-betting-guide__features-section,
  .page-resources-b52-betting-guide__guide-section,
  .page-resources-b52-betting-guide__game-types-section,
  .page-resources-b52-betting-guide__promotions-section,
  .page-resources-b52-betting-guide__security-section,
  .page-resources-b52-betting-guide__responsible-gaming-section,
  .page-resources-b52-betting-guide__faq-section,
  .page-resources-b52-betting-guide__brand-section,
  .page-resources-b52-betting-guide__blog-section,
  .page-resources-b52-betting-guide__final-cta-section {
    padding-left: 0;
    padding-right: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-b52-betting-guide__hero-section {
    padding: 50px 15px;
  }

  .page-resources-b52-betting-guide__image-full-width {
    border-radius: 4px;
  }

  .page-resources-b52-betting-guide__feature-card,
  .page-resources-b52-betting-guide__step-card,
  .page-resources-b52-betting-guide__game-card,
  .page-resources-b52-betting-guide__security-item,
  .page-resources-b52-betting-guide__brand-item,
  .page-resources-b52-betting-guide__blog-item {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .page-resources-b52-betting-guide__main-title {
    font-size: 28px;
  }

  .page-resources-b52-betting-guide__hero-description {
    font-size: 15px;
  }

  .page-resources-b52-betting-guide__section-title {
    font-size: 22px;
  }

  .page-resources-b52-betting-guide__cta-button {
    font-size: 15px;
    padding: 12px 25px;
  }
  
  .page-resources-b52-betting-guide__play-now-button {
    font-size: 15px;
    padding: 12px 25px;
  }

  .page-resources-b52-betting-guide__faq-question h3 {
    font-size: 15px;
  }

  .page-resources-b52-betting-guide__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
}