/* style/resources-onbet-latest-promotions.css */
.page-resources-onbet-latest-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F5F5F5; /* Light text on dark background */
  background-color: #0A0A0A; /* Main dark background */
  padding: 0;
  margin: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-resources-onbet-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-onbet-latest-promotions__hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #333333 100%); /* Dark gradient */
  color: #F5F5F5;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-onbet-latest-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-onbet-latest-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-onbet-latest-promotions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-resources-onbet-latest-promotions__hero-subtitle a {
  color: #FFD700; /* Gold for links in subtitle */
  text-decoration: none;
  font-weight: bold;
}

.page-resources-onbet-latest-promotions__hero-subtitle a:hover {
  text-decoration: underline;
}

.page-resources-onbet-latest-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15; /* Subtle background image */
  overflow: hidden;
  z-index: 1;
}

.page-resources-onbet-latest-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
  transform: scale(1.1);
}

.page-resources-onbet-latest-promotions__section {
  padding: 60px 0;
  background-color: #1A1A1A; /* Slightly lighter dark for sections */
  border-bottom: 1px solid #333333;
}

.page-resources-onbet-latest-promotions__section:nth-of-type(even) {
  background-color: #0A0A0A;
}

.page-resources-onbet-latest-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-resources-onbet-latest-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-onbet-latest-promotions__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-resources-onbet-latest-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A0A0A;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-resources-onbet-latest-promotions__cta-button:hover {
  background-color: #E0B500;
  transform: translateY(-3px);
}

.page-resources-onbet-latest-promotions__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 15px;
}

.page-resources-onbet-latest-promotions__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-resources-onbet-latest-promotions__list li {
  background-color: #2A2A2A;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  color: #F5F5F5;
  transition: background-color 0.3s ease;
}

.page-resources-onbet-latest-promotions__list li:hover {
  background-color: #3A3A3A;
}

.page-resources-onbet-latest-promotions__list li strong {
  color: #FFD700;
}

.page-resources-onbet-latest-promotions__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-onbet-latest-promotions__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-resources-onbet-latest-promotions__steps-list li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  padding-left: 60px;
  position: relative;
  background-color: #2A2A2A;
  padding: 25px 30px 25px 80px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-onbet-latest-promotions__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0A0A0A;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-resources-onbet-latest-promotions__steps-list li strong {
  color: #FFD700;
  display: block;
  margin-bottom: 10px;
  font-size: 1.2em;
}

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

.page-resources-onbet-latest-promotions__benefit-item {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-resources-onbet-latest-promotions__benefit-item:hover {
  transform: translateY(-5px);
}

.page-resources-onbet-latest-promotions__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Make icons pop on dark background */
}

.page-resources-onbet-latest-promotions__benefit-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-onbet-latest-promotions__app-download {
  background-color: #0A0A0A;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.page-resources-onbet-latest-promotions__app-download-content {
  position: relative;
  z-index: 2;
}

.page-resources-onbet-latest-promotions__app-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-onbet-latest-promotions__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #FFD700;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  animation: page-resources-onbet-latest-promotions__pulse 2s infinite;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.page-resources-onbet-latest-promotions__floating-promo.hidden-promo {
  transform: translateY(100px);
  opacity: 0;
}

.page-resources-onbet-latest-promotions__floating-promo-button {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  color: #0A0A0A;
  font-weight: bold;
  font-size: 1.1em;
  white-space: nowrap;
}

.page-resources-onbet-latest-promotions__floating-promo-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

@keyframes page-resources-onbet-latest-promotions__pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.page-resources-onbet-latest-promotions p {
  color: #E0E0E0;
  margin-bottom: 1em;
}

.page-resources-onbet-latest-promotions p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-onbet-latest-promotions p a:hover {
  text-decoration: underline;
}

.page-resources-onbet-latest-promotions .highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-onbet-latest-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-resources-onbet-latest-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-onbet-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-resources-onbet-latest-promotions__sub-title {
    font-size: 1.5em;
  }
  .page-resources-onbet-latest-promotions__steps-list li {
    padding: 20px 20px 20px 70px;
  }
  .page-resources-onbet-latest-promotions__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
  }
  .page-resources-onbet-latest-promotions__floating-promo {
    bottom: 15px;
    right: 15px;
  }
  .page-resources-onbet-latest-promotions__floating-promo-button {
    padding: 8px 15px;
    font-size: 1em;
  }
  .page-resources-onbet-latest-promotions__floating-promo-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .page-resources-onbet-latest-promotions__hero-title {
    font-size: 2em;
  }
}