/* style/promotions-new-user-bonus-details.css */

/* Variables */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-dark: #121212; /* From shared.css body background */
  --btn-register: #C30808;
  --btn-login: #C30808;
  --font-register-login: #FFFF00;
}

/* Base Styles for the page content */
.page-promotions-new-user-bonus-details {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Dark body background, so light text */
  background-color: var(--background-dark);
}

.page-promotions-new-user-bonus-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-promotions-new-user-bonus-details__section-title {
  font-size: 2.5em;
  color: var(--secondary-color); /* White for titles on dark background */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-promotions-new-user-bonus-details__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0; /* Slightly off-white for body text */
}

.page-promotions-new-user-bonus-details__section-description a {
  color: var(--primary-color); /* Brand green for links */
  text-decoration: underline;
}

/* Hero Section */
.page-promotions-new-user-bonus-details__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #0a0a0a; /* Slightly darker for hero */
  overflow: hidden;
}

.page-promotions-new-user-bonus-details__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-promotions-new-user-bonus-details__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Overlay to ensure text readability */
  display: block;
}

.page-promotions-new-user-bonus-details__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--text-light);
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-promotions-new-user-bonus-details__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color); /* White for hero title */
}

.page-promotions-new-user-bonus-details__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus-details__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-new-user-bonus-details__btn-primary,
.page-promotions-new-user-bonus-details__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promotions-new-user-bonus-details__btn-primary {
  background-color: var(--btn-register); /* Red for register */
  color: var(--font-register-login); /* Yellow for font */
  border: 2px solid var(--btn-register);
}

.page-promotions-new-user-bonus-details__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
}

.page-promotions-new-user-bonus-details__btn-secondary {
  background-color: transparent;
  color: var(--font-register-login); /* Yellow for font */
  border: 2px solid var(--font-register-login);
}

.page-promotions-new-user-bonus-details__btn-secondary:hover {
  background-color: var(--font-register-login);
  color: var(--btn-register);
}

.page-promotions-new-user-bonus-details__btn-large {
  font-size: 1.2em;
  padding: 18px 35px;
}

/* Intro Section */
.page-promotions-new-user-bonus-details__intro-section {
  padding: 80px 20px;
  background-color: var(--primary-color); /* Green brand color */
  color: var(--text-light);
}

.page-promotions-new-user-bonus-details__intro-section .page-promotions-new-user-bonus-details__section-title {
  color: var(--secondary-color);
  padding-top: 0; /* Already has padding from section */
}

.page-promotions-new-user-bonus-details__intro-section .page-promotions-new-user-bonus-details__section-description {
  color: #e0e0e0;
}

/* Claim Guide Section */
.page-promotions-new-user-bonus-details__claim-guide {
  padding: 80px 20px;
  background-color: var(--background-dark);
}

.page-promotions-new-user-bonus-details__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-bonus-details__guide-item {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent white */
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page-promotions-new-user-bonus-details__guide-item-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}