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

/* Custom Colors */
:root {
  --promotions-new-user-bonus-primary-color: #11A84E; /* Main color */
  --promotions-new-user-bonus-secondary-color: #22C768; /* Auxiliary color */
  --promotions-new-user-bonus-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --promotions-new-user-bonus-card-bg: #11271B;
  --promotions-new-user-bonus-background: #08160F;
  --promotions-new-user-bonus-text-main: #F2FFF6;
  --promotions-new-user-bonus-text-secondary: #A7D9B8;
  --promotions-new-user-bonus-border: #2E7A4E;
  --promotions-new-user-bonus-glow: #57E38D;
  --promotions-new-user-bonus-gold: #F2C14E;
  --promotions-new-user-bonus-divider: #1E3A2A;
  --promotions-new-user-bonus-deep-green: #0A4B2C;
}

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  color: var(--promotions-new-user-bonus-text-main); /* Light text on dark background */
  background-color: var(--promotions-new-user-bonus-background); /* Explicitly setting for content area, but body is handled by shared */
  line-height: 1.6;
}

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

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  background-color: var(--promotions-new-user-bonus-deep-green); /* Fallback/additional background */
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure image wrapper doesn't exceed common max */
  margin-bottom: 30px; /* Space between image and text */
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-new-user-bonus__main-title {
  color: var(--promotions-new-user-bonus-gold);
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.page-promotions-new-user-bonus__hero-description {
  color: var(--promotions-new-user-bonus-text-secondary);
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%; /* Ensure container takes full width for flex-wrap */
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow long words to break */
}

.page-promotions-new-user-bonus__btn-primary {
  background: var(--promotions-new-user-bonus-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions-new-user-bonus__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions-new-user-bonus__btn-secondary {
  background: transparent;
  color: var(--promotions-new-user-bonus-text-main);
  border: 2px solid var(--promotions-new-user-bonus-primary-color);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background: var(--promotions-new-user-bonus-primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}