/* style/promotions-daily-bonuses.css */

:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Deep Red */
  --text-color: #333333;
  --background-color: #f8f8f8;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-bonuses {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

.page-promotions-daily-bonuses__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

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

.page-promotions-daily-bonuses__hero-section {
  padding-top: 120px; /* Adjusted for fixed header on desktop */
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(255, 215, 0, 0.7) 50%, var(--secondary-color) 100%);
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-bonuses__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #ffffff;
}

.page-promotions-daily-bonuses__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-promotions-daily-bonuses__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-daily-bonuses__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-color);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-promotions-daily-bonuses__cta-button--primary {
  background: var(--secondary-color);
  color: #ffffff;
  border: 2px solid var(--secondary-color);
}

.page-promotions-daily-bonuses__cta-button--primary:hover {
  background: #a30000;
  border-color: #a30000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-bonuses__cta-button--secondary {
  background: #ffffff;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-promotions-daily-bonuses__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--text-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-bonuses__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: bold;
}

.page-promotions-daily-bonuses__section-intro {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-color);
}

.page-promotions-daily-bonuses__highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-promotions-daily-bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-daily-bonuses__grid--two-cols {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-promotions-daily-bonuses__card {
  background: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--shadow-color);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-promotions-daily-bonuses__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-bonuses__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-promotions-daily-bonuses__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-weight: bold;
}

.page-promotions-daily-bonuses__card-text {
  font-size: 1em;
  color: var(--text-color);
}

.page-promotions-daily-bonuses__steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-promotions-daily-bonuses__step-item {
  background: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow-color);
  padding: 25px 30px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary-color);
  transition: all 0.3s ease;
}

.page-promotions-daily-bonuses__step-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-bonuses__step-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-bonuses__step-description {
  font-size: 1em;
  color: var(--text-color);
}

.page-promotions-daily-bonuses__link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-daily-bonuses__link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-promotions-daily-bonuses__cta-center {
  margin-top: 40px;
}

.page-promotions-daily-bonuses__terms-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 40px;
}

.page-promotions-daily-bonuses__terms-item {
  background: var(--card-background);
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-bonuses__terms-title {
  font-size: 1.3em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-bonuses__terms-description {
  font-size: 0.95em;
  color: var(--text-color);
}

.page-promotions-daily-bonuses__section-footer {
  font-size: 1em;
  margin-top: 30px;
  color: var(--text-color);
}

.page-promotions-daily-bonuses__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-daily-bonuses__feature-item {
  background: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--shadow-color);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-promotions-daily-bonuses__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-bonuses__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-bonuses__feature-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-bonuses__feature-description {
  font-size: 0.95em;
  color: var(--text-color);
}

.page-promotions-daily-bonuses__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-daily-bonuses__promo-card {
  background: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--shadow-color);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.page-promotions-daily-bonuses__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-bonuses__promo-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 25px;
}

.page-promotions-daily-bonuses__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  max-width: 100%;
  display: block;
}

.page-promotions-daily-bonuses__promo-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
  padding: 0 25px;
}

.page-promotions-daily-bonuses__promo-description {
  font-size: 0.95em;
  color: var(--text-color);
  padding: 0 25px;
}

.page-promotions-daily-bonuses__contact-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.1em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-promotions-daily-bonuses__contact-item {
  color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-daily-bonuses__hero-title {
    font-size: 2.8em;
  }

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

  .page-promotions-daily-bonuses__grid--two-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-bonuses__hero-section {
    padding-top: 100px !important; /* Adjusted for fixed header on mobile */
    padding-bottom: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-daily-bonuses__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-daily-bonuses__hero-description {
    font-size: 1em;
  }

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

  .page-promotions-daily-bonuses__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-daily-bonuses__section {
    padding: 40px 0;
  }

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

  .page-promotions-daily-bonuses__section-intro {
    font-size: 0.95em;
    padding: 0 15px;
  }

  .page-promotions-daily-bonuses__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-daily-bonuses__grid,
  .page-promotions-daily-bonuses__grid--two-cols,
  .page-promotions-daily-bonuses__features-grid,
  .page-promotions-daily-bonuses__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-daily-bonuses__card,
  .page-promotions-daily-bonuses__feature-item,
  .page-promotions-daily-bonuses__promo-card {
    padding: 20px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-daily-bonuses__card-image,
  .page-promotions-daily-bonuses__promo-image {
    height: 150px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-daily-bonuses__feature-icon {
    width: 60px;
    height: 60px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-daily-bonuses__step-item {
    padding: 20px 25px;
  }

  .page-promotions-daily-bonuses__step-title,
  .page-promotions-daily-bonuses__card-title,
  .page-promotions-daily-bonuses__feature-title,
  .page-promotions-daily-bonuses__promo-title,
  .page-promotions-daily-bonuses__terms-title {
    font-size: 1.2em;
  }

  .page-promotions-daily-bonuses__card-text,
  .page-promotions-daily-bonuses__step-description,
  .page-promotions-daily-bonuses__terms-description,
  .page-promotions-daily-bonuses__feature-description,
  .page-promotions-daily-bonuses__promo-description,
  .page-promotions-daily-bonuses__section-footer,
  .page-promotions-daily-bonuses__contact-item {
    font-size: 0.9em;
  }

  .page-promotions-daily-bonuses__promo-link {
    padding-bottom: 20px;
  }

  .page-promotions-daily-bonuses__promo-title,
  .page-promotions-daily-bonuses__promo-description {
    padding: 0 20px;
  }

  .page-promotions-daily-bonuses__contact-info {
    font-size: 1em;
    padding: 0 15px;
  }
}