/* style/promotions-cashback.css */

.page-promotions-cashback {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1D2F; /* Darker background for contrast with primary */
}

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

.page-promotions-cashback-highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Hero Section */
.page-promotions-cashback-hero {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background-color: #1A2E47; /* Primary color */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.page-promotions-cashback-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-promotions-cashback-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 46, 71, 0.8), rgba(255, 215, 0, 0.2));
  z-index: 2;
}

.page-promotions-cashback-hero .page-promotions-cashback-container {
  position: relative;
  z-index: 3;
}

.page-promotions-cashback-hero__title {
  font-size: 3.5em;
  color: #FFD700; /* Secondary color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-cashback-hero__subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styles */
.page-promotions-cashback-section {
  padding: 60px 0;
  background-color: #1A2E47;
  margin-bottom: 20px;
}

.page-promotions-cashback-section:nth-child(even) {
  background-color: #0F1D2F;
}

.page-promotions-cashback-section__title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  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: #FFD700;
  border-radius: 2px;
}

.page-promotions-cashback-section__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #B0B0B0;
}

/* Lists */
.page-promotions-cashback-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 800px;
}

.page-promotions-cashback-list li {
  background-color: #2A405A;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #E0E0E0;
  border-left: 5px solid #FFD700;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback-list--small li {
  padding: 15px;
  font-size: 1em;
}

.page-promotions-cashback-list--icon li {
  position: relative;
  padding-left: 45px;
}

.page-promotions-cashback-list--icon li::before {
  content: '⚡'; /* Icon for tips */
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFD700;
  font-size: 1.2em;
}

.page-promotions-cashback-list--check li {
  position: relative;
  padding-left: 45px;
}

.page-promotions-cashback-list--check li::before {
  content: '✔️'; /* Checkmark for responsible gambling */
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #4CAF50; /* Green checkmark */
  font-size: 1.2em;
}

/* Grid for How It Works */
.page-promotions-cashback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-promotions-cashback-grid__item {
  background-color: #2A405A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #E0E0E0;
}

.page-promotions-cashback-grid__title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-promotions-cashback-grid__item p {
  font-size: 1em;
  color: #B0B0B0;
}

/* Cards for Cashback Types */
.page-promotions-cashback-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-cashback-card {
  background-color: #2A405A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-cashback-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-bottom: 3px solid #FFD700;
}

.page-promotions-cashback-card__title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-promotions-cashback-card p {
  font-size: 1em;
  color: #B0B0B0;
  padding: 0 20px;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Steps for How to Claim */
.page-promotions-cashback-steps {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  display: grid;
  gap: 30px;
}

.page-promotions-cashback-steps li {
  display: flex;
  align-items: flex-start;
  background-color: #2A405A;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-left: 6px solid #FFD700;
}

.page-promotions-cashback-steps__number {
  font-size: 2.2em;
  font-weight: bold;
  color: #FFD700;
  margin-right: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.page-promotions-cashback-steps__content h3 {
  font-size: 1.5em;
  color: #E0E0E0;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-cashback-steps__content p {
  font-size: 1em;
  color: #B0B0B0;
}

.page-promotions-cashback-steps__content a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions-cashback-steps__content a:hover {
  color: #FFF;
}

/* Buttons */
.page-promotions-cashback-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-promotions-cashback-btn--primary {
  background-color: #FFD700;
  color: #1A2E47;
  border: 2px solid #FFD700;
}

.page-promotions-cashback-btn--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
  color: #0F1D2F;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-cashback-btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-cashback-btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E47;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-cashback-btn--register {
  background-color: #008000; /* Green for register */
  color: #FFFFFF;
  border: 2px solid #008000;
}

.page-promotions-cashback-btn--register:hover {
  background-color: #006400;
  border-color: #006400;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 128, 0, 0.4);
}

.page-promotions-cashback-btn--download {
  background-color: #007BFF; /* Blue for download */
  color: #FFFFFF;
  border: 2px solid #007BFF;
}

.page-promotions-cashback-btn--download:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-promotions-cashback-btn--cta {
  background-color: #FF4500; /* Orange-red for strong CTA */
  color: #FFFFFF;
  border: 2px solid #FF4500;
}

.page-promotions-cashback-btn--cta:hover {
  background-color: #CC3700;
  border-color: #CC3700;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 69, 0, 0.4);
}

.page-promotions-cashback-btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  margin-top: 15px;
}

.page-promotions-cashback-btn--large {
  padding: 16px 32px;
  font-size: 1.2em;
  min-width: 250px;
}

.page-promotions-cashback-cta-group {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Images */
.page-promotions-cashback-image--inline {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 3px solid #FFD700;
}

.page-promotions-cashback-image--full-width {
  display: block;
  width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 3px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-cashback-hero {
    padding: 100px 0;
  }

  .page-promotions-cashback-hero__title {
    font-size: 2.8em;
  }

  .page-promotions-cashback-hero__subtitle {
    font-size: 1.1em;
  }

  .page-promotions-cashback-section__title {
    font-size: 2em;
  }

  .page-promotions-cashback-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-cashback-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-promotions-cashback-steps li {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .page-promotions-cashback-steps__number {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .page-promotions-cashback-hero {
    padding: 80px 0;
  }

  .page-promotions-cashback-hero__title {
    font-size: 2.2em;
  }

  .page-promotions-cashback-hero__subtitle {
    font-size: 1em;
  }

  .page-promotions-cashback-section {
    padding: 40px 0;
  }

  .page-promotions-cashback-section__title {
    font-size: 1.8em;
  }

  .page-promotions-cashback-section__description {
    font-size: 0.95em;
  }

  .page-promotions-cashback-list li, .page-promotions-cashback-grid__item, .page-promotions-cashback-card {
    padding: 20px;
  }

  .page-promotions-cashback-card__title {
    font-size: 1.5em;
  }

  .page-promotions-cashback-btn--large {
    min-width: unset;
    width: 100%;
    margin-bottom: 10px;
  }

  .page-promotions-cashback-cta-group {
    flex-direction: column;
  }

  .page-promotions-cashback-image--inline, .page-promotions-cashback-image--full-width {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .page-promotions-cashback-hero__title {
    font-size: 1.8em;
  }

  .page-promotions-cashback-hero__subtitle {
    font-size: 0.9em;
  }

  .page-promotions-cashback-btn {
    font-size: 1em;
    padding: 12px 24px;
  }

  .page-promotions-cashback-list li {
    font-size: 0.95em;
  }
}