.page-register {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff; /* Default light background */
}

.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-register__text-center {
  text-align: center;
}

/* Hero Section */
.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #f0f8ff; /* Light blue background for hero */
}

.page-register__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-register__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-register__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-register__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-register__hero-title {
  font-size: 3.2em;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-register__hero-description {
  font-size: 1.3em;
  color: #333333;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: #26A9E0; /* Primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(38, 169, 224, 0.4);
  border: none;
  cursor: pointer;
}

.page-register__cta-button:hover {
  background: #1e87c2; /* Slightly darker primary */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(38, 169, 224, 0.6);
}

.page-register__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: none;
}

.page-register__btn-primary:hover {
  background: #1e87c2;
}

.page-register__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-register__btn-secondary:hover {
  background: #f0f8ff;
  color: #1e87c2;
}

/* General Section Styles */
.page-register__section {
  padding: 80px 0;
  text-align: center;
}

.page-register__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-register__section-description {
  font-size: 1.1em;
  color: #555555;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
}

.page-register__light-bg {
  background-color: #f9f9f9;
  color: #333333;
}

.page-register__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-register__dark-bg .page-register__section-title,
.page-register__dark-bg .page-register__section-description,
.page-register__dark-bg .page-register__card-title,
.page-register__dark-bg .page-register__card-description,
.page-register__dark-bg .page-register__security-subtitle,
.page-register__dark-bg .page-register__security-text p,
.page-register__dark-bg .page-register__security-list li {
  color: #ffffff;
}

/* Features Grid */
.page-register__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-register__feature-item {
  text-align: left;
}

/* Card Styles */
.page-register__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-register__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-register__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register__card-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
}

/* How-to Register Section */
.page-register__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-register__step-item {
  text-align: center;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}

.page-register__step-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-register__step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register__step-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
}

.page-register__step-description a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-register__tips-block {
  background-color: #f0f8ff;
  border: 1px solid #26A9E0;
  border-radius: 12px;
  padding: 30px;
  margin-top: 60px;
  text-align: left;
}

.page-register__tips-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-register__tips-list {
  list-style: disc inside;
  font-size: 1em;
  color: #333333;
  line-height: 1.8;
  padding-left: 20px;
}

.page-register__tips-list li {
  margin-bottom: 10px;
}

/* Security Section */
.page-register__security-content {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
  text-align: left;
}

.page-register__security-text {
  flex: 1;
}

.page-register__security-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-register__security-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-register__security-subtitle {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register__security-text p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-register__security-list {
  list-style: disc inside;
  padding-left: 20px;
  line-height: 1.8;
}

.page-register__security-list li {
  margin-bottom: 8px;
}

/* Deposit Bonus Section */
.page-register__bonus-content {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
  text-align: left;
}

.page-register__bonus-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-register__bonus-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-register__bonus-text {
  flex: 1;
}

.page-register__bonus-subtitle {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #26A9E0;
}