/* style/register.css */

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

/* Base styles for the page content, ensuring contrast with body background */
.page-register {
  background-color: var(--ebet-bg-color); /* Matches custom background color */
  color: var(--ebet-text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Add some padding before footer */
}

/* General container for content sections */
.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section styling */
.page-register__hero-section,
.page-register__registration-guide-section,
.page-register__benefits-section,
.page-register__faq-section,
.page-register__cta-section {
  padding: 80px 0;
  text-align: center;
}

/* Dark background sections */
.page-register__dark-section {
  background-color: var(--ebet-bg-color);
  color: var(--ebet-text-main);
}

/* Light background sections */
.page-register__light-bg {
  background-color: var(--ebet-card-bg); /* Using card bg for a slightly different dark tone */
  color: var(--ebet-text-main);
}

/* Hero Section */
.page-register__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column; /* Image block on top, text block below */
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding as per instruction */
  background-color: var(--ebet-bg-color); /* Ensure background is dark */
}

.page-register__hero-image-wrapper {
  width: 100%;
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Dim the image */
}

.page-register__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 90%;
  padding: 40px 20px;
  text-shadow: none;
  background-color: transparent;
}


/* Titles */
.page-register__main-title {
  font-size: clamp(2em, 5vw, 3.2em); /* Using clamp for H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ebet-text-main);
}

.page-register__section-title {
  font-size: clamp(1.8em, 4vw, 2.8em); /* Clamp for H2 */
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--ebet-text-main);
}

.page-register__step-title,
.page-register__benefit-title {
  font-size: clamp(1.4em, 3vw, 2em); /* Clamp for H3 */
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--ebet-text-main);
}