/* ==========================================================================
   300% BONUS PAGE STYLES
   ========================================================================== */

/* Bonus Hero Section */
.bonus-hero {
  position: relative;
  background-image: url('../images/300bonus-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bonus-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.4); */
  z-index: 1;
}

.bonus-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -250px;
  width: 600px;
  height: 600px;
  background-color: #D40E37;
  opacity: 0.28;
  filter: blur(110px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.bonus-hero .container {
  position: relative;
  z-index: 2;
}

.bonus-hero-content {
  max-width: 600px;
  text-align: left;
}

.bonus-hero-title {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -1px;
}

.bonus-hero-title .red-text {
  background: linear-gradient(135deg, #FF154B, #B00927);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 600;
}

/* Bonus About Section */
.bonus-about-section {
  padding: 100px 0;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.bonus-about-card {
  background-color: rgba(255, 255, 255, 0.03);
  background-image: linear-gradient(120deg, rgba(190, 28, 66, 0.7) 0%, transparent 70%);
  /* border: 1px solid rgba(254, 21, 74, 0.25); */
  border-radius: 16px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.bonus-about-image-wrap {
  width: auto;
  border-radius: 12px;
  overflow: hidden;
}

.bonus-about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.bonus-about-content {
  display: flex;
  flex-direction: column;
}

.bonus-about-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.bonus-about-title .red-text {
  color: #FF154B;
  display: inline-block;
  font-weight: 700;
}

.bonus-about-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: #D6D6D6;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}

.bonus-about-text:last-child {
  margin-bottom: 0;
}

/* Bonus Details & Examples Section */
.bonus-info-section {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.04);
  background-image:
    radial-gradient(circle at 85% 25%, rgba(212, 14, 55, 0.28) 0%, transparent 60%),
    radial-gradient(circle at 85% 15%, rgba(212, 14, 55, 0.28) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.bonus-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
  z-index: 2;
}

.bonus-info-row:last-child {
  margin-bottom: 0;
}

.bonus-info-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.bonus-info-image {
  width: 100%;
}

.bonus-info-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.bonus-info-title .red-text {
  color: #FF154B;
  font-weight: 700;
}

.bonus-info-subtitle {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.1;
}

.bonus-info-tc-header {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: #D6D6D6;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.bonus-info-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: #D6D6D6;
  line-height: 1.7;
  font-weight: 300;
}

.bonus-info-image-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.bonus-info-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.bonus-info-image-wrap:hover .bonus-info-img {
  transform: scale(1.03);
}

.bonus-examples-list {
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-examples-list li {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 18px;
  color: #D6D6D6;
  font-weight: 300;
}

.check-icon {
  width: 22px;
  height: 22px;
  margin-right: 14px;
  flex-shrink: 0;
}

.check-icon rect {
  fill: #D40E37;
}

.bonus-wagering-header {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: #D6D6D6;
  margin-bottom: 15px;
}

.bonus-wagering-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 35px;
  list-style-type: none;
  padding-left: 0;
}

.bonus-wagering-list li {
  font-family: var(--font-body);
  font-size: 18px;
  color: #D6D6D6;
  line-height: 1.6;
  font-weight: 300;
}

.bonus-disclaimer-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: #D6D6D6;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.bonus-disclaimer-text:last-child {
  margin-bottom: 0;
}


/* Responsive adjustments */
@media (max-width: 992px) {
  .bonus-hero-title {
    font-size: 3.2rem;
  }

  .bonus-about-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .bonus-about-title {
    font-size: 2.25rem;
  }

  .bonus-about-section {
    padding: 60px 0;
  }

  .bonus-info-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 70px;
  }

  .bonus-info-row:nth-child(2) .bonus-info-image {
    order: 2;
  }

  .bonus-info-title {
    font-size: 38px;
  }

  .bonus-info-subtitle {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .bonus-info-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .bonus-hero {
    height: 320px;
  }

  .bonus-hero-title {
    font-size: 2.5rem;
  }

  .bonus-about-card {
    padding: 30px 20px;
  }

  .bonus-about-title {
    font-size: 1.8rem;
  }

  .bonus-about-text {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .bonus-info-title {
    font-size: 30px;
  }

  .bonus-info-subtitle {
    font-size: 26px;
  }

  .bonus-info-desc {
    font-size: 14px;
  }

  .bonus-examples-list li {
    font-size: 15px;
  }

  .check-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
}