/* style/promotions-cashback.css */
.page-promotions-cashback {
  font-family: 'Arial', sans-serif;
  background-color: #1a1a1a; /* Very dark grey background */
  color: #e0e0e0; /* Light grey text */
  line-height: 1.6;
}

.page-promotions-cashback__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-cashback__hero {
  background: linear-gradient(135deg, #8B0000 0%, #330000 100%); /* Deep red to darker red/black */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-cashback__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-promotions-cashback__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-cashback__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions-cashback__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-promotions-cashback__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  color: #6a0000; /* Slightly darker red */
  transform: translateY(-3px);
}

.page-promotions-cashback__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-promotions-cashback__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-promotions-cashback__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-cashback__section:nth-of-type(even) {
  background-color: #222222;
}

.page-promotions-cashback__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold title */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-cashback__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8B0000; /* Deep red underline */
  border-radius: 2px;
}

.page-promotions-cashback__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #cccccc;
}

.page-promotions-cashback__note {
  font-style: italic;
  color: #FFD700;
}

.page-promotions-cashback__feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-cashback__feature-item {
  background-color: #2e2e2e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 350px;
  text-align: left;
  transition: transform 0.3s ease;
}

.page-promotions-cashback__feature-item:hover {
  transform: translateY(-10px);
}

.page-promotions-cashback__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-cashback__feature-item p {
  font-size: 1em;
  color: #b0b0b0;
}

.page-promotions-cashback__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions-cashback__step-item {
  background-color: #2e2e2e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 300px;
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-promotions-cashback__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8B0000; /* Deep red circle */
  color: #FFD700; /* Gold number */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 3px solid #FFD700;
}

.page-promotions-cashback__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-cashback__step-item p {
  font-size: 1em;
  color: #b0b0b0;
}

.page-promotions-cashback__image-full-width {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-cashback__image-centered {
  display: block;
  margin: 40px auto;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-cashback__table-wrapper {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__cashback-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* Ensure table is readable on smaller screens */
}

.page-promotions-cashback__cashback-table th,
.page-promotions-cashback__cashback-table td {
  padding: 15px;
  border: 1px solid #3a3a3a;
  text-align: left;
}

.page-promotions-cashback__cashback-table th {
  background-color: #8B0000; /* Deep red header */
  color: #FFD700; /* Gold text */
  font-weight: bold;
  font-size: 1.1em;
}

.page-promotions-cashback__cashback-table tr:nth-child(even) {
  background-color: #2e2e2e;
}

.page-promotions-cashback__cashback-table tr:nth-child(odd) {
  background-color: #222222;
}

.page-promotions-cashback__cashback-table td {
  color: #cccccc;
}

.page-promotions-cashback__vip-benefits {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
  text-align: left;
}

.page-promotions-cashback__vip-benefits li {
  background-color: #2e2e2e;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700; /* Gold accent */
  border-radius: 5px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  color: #cccccc;
}

.page-promotions-cashback__icon {
  color: #8B0000; /* Deep red icon */
  font-size: 1.5em;
  margin-right: 15px;
  font-weight: bold;
}

.page-promotions-cashback__vip-button {
  display: inline-block;
  background-color: #8B0000; /* Deep red button */
  color: #FFD700; /* Gold text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  border: 2px solid #8B0000;
}

.page-promotions-cashback__vip-button:hover {
  background-color: #6a0000; /* Slightly darker red */
  color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-promotions-cashback__accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-cashback__accordion-item {
  background-color: #2e2e2e;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__accordion-header {
  background-color: #3a3a3a;
  color: #FFD700; /* Gold text */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-cashback__accordion-header:hover {
  background-color: #4a4a4a;
}

.page-promotions-cashback__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-cashback__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-cashback__accordion-content {
  padding: 0 25px;
  background-color: #222222;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-cashback__accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #cccccc;
  font-size: 1em;
}

.page-promotions-cashback__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-promotions-cashback__cta-button {
  display: inline-block;
  padding: 15px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

.page-promotions-cashback__cta-button--register {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text */
  border-color: #FFD700;
}

.page-promotions-cashback__cta-button--register:hover {
  background-color: #e6c200;
  color: #6a0000;
  transform: translateY(-3px);
}

.page-promotions-cashback__cta-button--login {
  background-color: #8B0000; /* Deep red button */
  color: #FFD700; /* Gold text */
  border-color: #8B0000;
}

.page-promotions-cashback__cta-button--login:hover {
  background-color: #6a0000;
  color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-cashback__cta-button--download {
  background-color: #444444; /* Dark grey button */
  color: #FFD700; /* Gold text */
  border-color: #444444;
}

.page-promotions-cashback__cta-button--download:hover {
  background-color: #555555;
  color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-cashback__commitment-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  border: 2px solid #FFD700;
}

.page-promotions-cashback__commitment-button:hover {
  background-color: #e6c200;
  color: #6a0000;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions-cashback__hero {
    padding: 60px 0;
  }

  .page-promotions-cashback__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-cashback__hero-subtitle {
    font-size: 1.2em;
  }

  .page-promotions-cashback__section-title {
    font-size: 2em;
  }

  .page-promotions-cashback__feature-item,
  .page-promotions-cashback__step-item {
    max-width: 90%;
  }

  .page-promotions-cashback__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-cashback__cta-button {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-promotions-cashback__hero-title {
    font-size: 2em;
  }

  .page-promotions-cashback__hero-subtitle {
    font-size: 1em;
  }

  .page-promotions-cashback__hero-button,
  .page-promotions-cashback__vip-button,
  .page-promotions-cashback__commitment-button {
    font-size: 1em;
    padding: 12px 20px;
  }

  .page-promotions-cashback__section-title {
    font-size: 1.8em;
  }

  .page-promotions-cashback__feature-title,
  .page-promotions-cashback__step-title {
    font-size: 1.3em;
  }

  .page-promotions-cashback__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-promotions-cashback__cta-button {
    width: 90%;
  }
}