/* style/resources-2026-rewards-guide.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f9f9f9;
  --background-dark: #1a1a1a;
  --border-color: #e0e0e0;
}

.page-resources-2026-rewards-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: #ffffff; /* Default light background */
  padding-top: 120px; /* Adjust for fixed header */
}

.page-resources-2026-rewards-guide__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust for fixed header */
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-resources-2026-rewards-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-2026-rewards-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-2026-rewards-guide__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.page-resources-2026-rewards-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none;
}

.page-resources-2026-rewards-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.3);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-resources-2026-rewards-guide__video-link:hover .page-resources-2026-rewards-guide__video-overlay {
  opacity: 1;
}

.page-resources-2026-rewards-guide__video-click-hint {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(255, 215, 0, 0.8);
  border-radius: 5px;
  white-space: nowrap;
}

.page-resources-2026-rewards-guide__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-resources-2026-rewards-guide__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-resources-2026-rewards-guide__play-now-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-2026-rewards-guide__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-2026-rewards-guide__title-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #a30000 100%);
  color: var(--text-color-light);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-2026-rewards-guide__title-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-resources-2026-rewards-guide__main-title {
  font-size: 44px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-2026-rewards-guide__title-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-resources-2026-rewards-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-2026-rewards-guide__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-2026-rewards-guide__btn-primary {
  background: var(--primary-color);
  color: var(--text-color-dark);
  border: 2px solid var(--primary-color);
}

.page-resources-2026-rewards-guide__btn-primary:hover {
  background: #e6c200;
  color: var(--text-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-2026-rewards-guide__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-2026-rewards-guide__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-2026-rewards-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  color: var(--text-color-dark);
}

.page-resources-2026-rewards-guide__section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-2026-rewards-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-2026-rewards-guide__text-block p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
  text-align: justify;
}

.page-resources-2026-rewards-guide__text-block .highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-resources-2026-rewards-guide__numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: item;
}

.page-resources-2026-rewards-guide__numbered-list li {
  counter-increment: item;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
}

.page-resources-2026-rewards-guide__numbered-list li h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-resources-2026-rewards-guide__numbered-list li p {
  font-size: 16px;
  margin-bottom: 15px;
}

.page-resources-2026-rewards-guide__numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--primary-color);
  color: var(--text-color-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-2026-rewards-guide__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-2026-rewards-guide__image-content {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-resources-2026-rewards-guide__faq-section {
  background-color: var(--background-light);
  padding: 60px 20px;
  border-top: 1px solid var(--border-color);
}

.page-resources-2026-rewards-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-2026-rewards-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-2026-rewards-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 15px;
  opacity: 0;
  background: var(--background-light);
}

.page-resources-2026-rewards-guide__faq-item.active .page-resources-2026-rewards-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: var(--background-light);
  border-radius: 0 0 5px 5px;
}

.page-resources-2026-rewards-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-2026-rewards-guide__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-2026-rewards-guide__faq-question:active {
  background: #eeeeee;
}

.page-resources-2026-rewards-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
}

.page-resources-2026-rewards-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-2026-rewards-guide__faq-item.active .page-resources-2026-rewards-guide__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg); /* Change from '-' to 'X' for visual effect */
}

/* Brand Section */
.page-resources-2026-rewards-guide__brand-section {
  background-color: var(--secondary-color);
  color: var(--text-color-light);
  padding: 60px 20px;
  text-align: center;
}

.page-resources-2026-rewards-guide__brand-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-2026-rewards-guide__brand-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 40px;
  position: relative;
}

.page-resources-2026-rewards-guide__brand-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-2026-rewards-guide__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-2026-rewards-guide__brand-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-resources-2026-rewards-guide__brand-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

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

.page-resources-2026-rewards-guide__brand-item p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Blog Section */
.page-resources-2026-rewards-guide__blog-section {
  padding: 60px 20px;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
}

.page-resources-2026-rewards-guide__blog-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-2026-rewards-guide__blog-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-resources-2026-rewards-guide__blog-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-2026-rewards-guide__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-2026-rewards-guide__blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 20px;
}

.page-resources-2026-rewards-guide__blog-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 15px;
}

.page-resources-2026-rewards-guide__blog-item-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0 20px 10px;
  line-height: 1.4;
}

.page-resources-2026-rewards-guide__blog-item-excerpt {
  font-size: 15px;
  color: #666;
  margin: 0 20px 15px;
}

.page-resources-2026-rewards-guide__blog-item-date {
  font-size: 14px;
  color: #999;
  margin: 0 20px;
  display: block;
}

.page-resources-2026-rewards-guide__view-all-button-container {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-2026-rewards-guide__main-title {
    font-size: 38px;
  }
  .page-resources-2026-rewards-guide__section-title,
  .page-resources-2026-rewards-guide__brand-title,
  .page-resources-2026-rewards-guide__blog-title {
    font-size: 32px;
  }
  .page-resources-2026-rewards-guide__brand-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-2026-rewards-guide {
    padding-top: 100px !important; /* Mobile: Adjust for fixed header */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-2026-rewards-guide__video-section {
    padding-top: 10px !important; /* Mobile: Adjust for fixed header */
    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-2026-rewards-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-2026-rewards-guide__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-2026-rewards-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 4px;
    overflow: hidden !important;
  }
  .page-resources-2026-rewards-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
    object-fit: contain;
  }
  .page-resources-2026-rewards-guide__video-cta {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-resources-2026-rewards-guide__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-2026-rewards-guide__video-click-hint {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }

  .page-resources-2026-rewards-guide__title-section {
    padding: 60px 15px;
  }
  .page-resources-2026-rewards-guide__main-title {
    font-size: 30px;
  }
  .page-resources-2026-rewards-guide__title-description {
    font-size: 16px;
  }
  .page-resources-2026-rewards-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-2026-rewards-guide__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }

  .page-resources-2026-rewards-guide__content-area {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-2026-rewards-guide__section-title,
  .page-resources-2026-rewards-guide__brand-title,
  .page-resources-2026-rewards-guide__blog-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-resources-2026-rewards-guide__text-block p {
    font-size: 15px;
  }
  .page-resources-2026-rewards-guide__numbered-list li {
    padding-left: 50px;
  }
  .page-resources-2026-rewards-guide__numbered-list li h3 {
    font-size: 20px;
  }
  .page-resources-2026-rewards-guide__numbered-list li::before {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .page-resources-2026-rewards-guide__image-full-width,
  .page-resources-2026-rewards-guide__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-resources-2026-rewards-guide__faq-section {
    padding: 40px 15px;
  }
  .page-resources-2026-rewards-guide__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-resources-2026-rewards-guide__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-resources-2026-rewards-guide__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-resources-2026-rewards-guide__faq-answer {
    padding: 0 15px;
  }
  .page-resources-2026-rewards-guide__faq-item.active .page-resources-2026-rewards-guide__faq-answer {
    padding: 15px !important;
  }

  .page-resources-2026-rewards-guide__brand-section {
    padding: 40px 15px;
  }
  .page-resources-2026-rewards-guide__brand-content {
    grid-template-columns: 1fr;
  }
  .page-resources-2026-rewards-guide__brand-item h3 {
    font-size: 20px;
  }

  .page-resources-2026-rewards-guide__blog-section {
    padding: 40px 15px;
  }
  .page-resources-2026-rewards-guide__blog-list {
    grid-template-columns: 1fr;
  }
  .page-resources-2026-rewards-guide__blog-item-image {
    height: 180px;
  }
  .page-resources-2026-rewards-guide__blog-item-title {
    font-size: 18px;
    margin: 0 15px 10px;
  }
  .page-resources-2026-rewards-guide__blog-item-excerpt {
    font-size: 14px;
    margin: 0 15px 15px;
  }
  .page-resources-2026-rewards-guide__blog-item-date {
    margin: 0 15px;
  }
  .page-resources-2026-rewards-guide__view-all-button-container {
    margin-top: 30px;
  }
}