/* style/promotions-new-user-bonus.css */
:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg: #17191F;
  --background-dark: #0D0E12;
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
}

.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Text Main: #FFF3E6 */
  background-color: var(--background-dark); /* Background: #0D0E12 */
}

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

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 8px rgba(255, 140, 26, 0.5);
}

.page-promotions-new-user-bonus__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main);
}

/* HERO Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, var(--background-dark) 0%, #1a0e00 100%);
  overflow: hidden;
  border-bottom: 2px solid var(--border-color);
}

.page-promotions-new-user-bonus__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width for flex item */
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  margin-bottom: 30px;
  order: 1; /* Image first */
}

.page-promotions-new-user-bonus__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(255, 140, 26, 0.3);
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  order: 2; /* Content second */
  padding: 0 15px;
}

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* H1 font size clamp */
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  text-shadow: 0 0 10px var(--glow-color);
  line-height: 1.2;
}

.page-promotions-new-user-bonus__description {
  font-size: 1.15em;
  color: var(--text-main);
  max-width: 900px;
  margin: 0 auto 30px auto;
  opacity: 0.9;
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
  border: none;
  cursor: pointer;
}

.page-promotions-new-user-bonus__cta-button:hover {
  background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

.page-promotions-new-user-bonus__cta-button--large {
  padding: 18px 50px;
  font-size: 1.4em;
  margin-top: 50px;
}

/* Advantages Section */
.page-promotions-new-user-bonus__advantages-section {
  padding: 80px 0;
  background-color: var(--background-dark);
}

.page-promotions-new-user-bonus__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-bonus__card {
  background: var(--card-bg); /* Card BG: #17191F */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color); /* Border: #A84F0C */
  color: var(--text-main);
}

.page-promotions-new-user-bonus__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 140, 26, 0.2);
}

.page-promotions-new-user-bonus__card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions-new-user-bonus__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-new-user-bonus__card p {
  font-size: 1em;
  color: var(--text-main);
  opacity: 0.8;
}

/* Registration Guide */
.page-promotions-new-user-bonus__registration-guide {
  padding: 80px 0;
  background-color: #101216;
}

.page-promotions-new-user-bonus__step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions-new-user-bonus__step-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.page-promotions-new-user-bonus__step-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-new-user-bonus__step-item p {
  color: var(--text-main);
  opacity: 0.8;
}

.page-promotions-new-user-bonus__info-list {
  list-style: disc;
  margin-left: 25px;
  color: var(--text-main);
  opacity: 0.8;
}

.page-promotions-new-user-bonus__info-list li {
  margin-bottom: 8px;
}

.page-promotions-new-user-bonus__cta-block {
  text-align: center;
  margin-top: 40px;
}

/* Bonus Details */
.page-promotions-new-user-bonus__bonus-details {
  padding: 80px 0;
  background-color: var(--background-dark);
}

.page-promotions-new-user-bonus__bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-bonus__dark-bg {
  background: var(--card-bg); /* Card BG: #17191F */
  color: var(--text-main); /* Text Main: #FFF3E6 */
}

.page-promotions-new-user-bonus__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 140, 26, 0.4);
}

.page-promotions-new-user-bonus__terms-section {
  margin-top: 60px;
  padding: 30px;
  background: #101216;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__bullet-list {
  list-style: disc;
  margin-left: 25px;
  color: var(--text-main);
  opacity: 0.8;
}

.page-promotions-new-user-bonus__bullet-list li {
  margin-bottom: 10px;
}

/* Game Overview */
.page-promotions-new-user-bonus__game-overview {
  padding: 80px 0;
  background-color: #101216;
}

.page-promotions-new-user-bonus__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-bonus__game-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__game-card:hover {
  transform: translateY(-5px);
}

.page-promotions-new-user-bonus__game-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions-new-user-bonus__game-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: 600;
}