:root {
  --primary-color: #017439; /* Main Green */
  --secondary-color: #C30808; /* Red for Register/Login */
  --text-color-dark: #333333;
  --text-color-light: #FFFFFF;
  --background-color-light: #FFFFFF;
  --background-color-dark: #017439;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --register-login-font: #FFFF00;
  --border-color: #e0e0e0;
}

.page-index-1xbet-registration-process {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Default text color for light background */
  background-color: var(--background-color-light); /* Default body background is white */
}

/* HERO Section */
.page-index-1xbet-registration-process__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 content is below fixed header */
  background: linear-gradient(135deg, var(--primary-color) 0%, #a8e063 100%); /* Lighter green gradient */
  color: var(--text-color-light);
}

.page-index-1xbet-registration-process__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-index-1xbet-registration-process__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 1000px; /* Constrain hero image width */
}

.page-index-1xbet-registration-process__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.page-index-1xbet-registration-process__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-1xbet-registration-process__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-color-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-1xbet-registration-process__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--register-button-bg); /* Use specific register color */
  color: var(--register-login-font); /* Use specific font color */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-index-1xbet-registration-process__cta-button:hover {
  background: #E53935; /* Slightly darker red on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-index-1xbet-registration-process__section {
  padding: 80px 20px;
  background-color: var(--background-color-light);
}

.page-index-1xbet-registration-process__section:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.page-index-1xbet-registration-process__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%; /* Ensure container takes full width up to max-width */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.page-index-1xbet-registration-process__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-1xbet-registration-process__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-dark);
}

.page-index-1xbet-registration-process__paragraph a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-index-1xbet-registration-process__paragraph a:hover {
  color: var(--secondary-color);
}

/* Registration Methods Grid */
.page-index-1xbet-registration-process__methods-grid,
.page-index-1xbet-registration-process__benefits-grid,
.page-index-1xbet-registration-process__issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-1xbet-registration-process__method-card,
.page-index-1xbet-registration-process__benefit-item,
.page-index-1xbet-registration-process__issue-card {
  background: var(--background-color-light);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-index-1xbet-registration-process__method-card:hover,
.page-index-1xbet-registration-process__benefit-item:hover,
.page-index-1xbet-registration-process__issue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-1xbet-registration-process__method-card img,
.page-index-1xbet-registration-process__benefit-item img {
  max-width: 100%;
  height: auto;
  min-width: 200px; /* Minimum image size for cards */
  min- /* Minimum image size for cards */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-index-1xbet-registration-process__card-title,
.page-index-1xbet-registration-process__benefit-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-1xbet-registration-process__card-description,
.page-index-1xbet-registration-process__benefit-description {
  font-size: 1em;
  color: var(--text-color-dark);
  margin-bottom: 20px;
}

.page-index-1xbet-registration-process__card-description a {
  color: var(--primary-color);
  text-decoration: underline;
}
.page-index-1xbet-registration-process__card-description a:hover {
  color: var(--secondary-color);
}


.page-index-1xbet-registration-process__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--register-button-bg);
  color: var(--register-login-font);
  text-decoration: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-index-1xbet-registration-process__btn-primary:hover {
  background: #E53935;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-1xbet-registration-process__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--background-color-light);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-index-1xbet-registration-process__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-color-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-1xbet-registration-process__button-group {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Safety Tips Section */
.page-index-1xbet-registration-process__safety-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-index-1xbet-registration-process__safety-image {
  flex: 1;
  text-align: center;
}

.page-index-1xbet-registration-process__safety-image img {
  max-width: 100%;
  height: auto;
  min-width: 200px;
  min-
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-index-1xbet-registration-process__safety-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-index-1xbet-registration-process__safety-list-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: var(--text-color-dark);
}

.page-index-1xbet-registration-process__safety-list-item::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.page-index-1xbet-registration-process__safety-list-item a {
  color: var(--primary-color);
  text-decoration: underline;
}
.page-index-1xbet-registration-process__safety-list-item a:hover {
  color: var(--secondary-color);
}

/* Call to Action Final Section */
.page-index-1xbet-registration-process__call-to-action {
  background: var(--background-color-dark); /* Dark background for CTA */
  color: var(--text-color-light);
  text-align: center;
  padding: 100px 20px;
}

.page-index-1xbet-registration-process__call-to-action .page-index-1xbet-registration-process__section-title {
  color: var(--text-color-light);
}

.page-index-1xbet-registration-process__call-to-action .page-index-1xbet-registration-process__paragraph {
  color: var(--text-color-light);
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-index-1xbet-registration-process__call-to-action .page-index-1xbet-registration-process__paragraph a {
  color: #FFFF00; /* Yellow for links on dark background */
  text-decoration: underline;
}
.page-index-1xbet-registration-process__call-to-action .page-index-1xbet-registration-process__paragraph a:hover {
  color: #FFD700; /* Slightly different yellow on hover */
}

.page-index-1xbet-registration-process__cta-final {
  padding: 20px 60px;
  font-size: 1.4em;
  background: var(--register-button-bg);
  color: var(--register-login-font);
}

.page-index-1xbet-registration-process__cta-final:hover {
  background: #E53935;
}

/* FAQ Section */
.page-index-1xbet-registration-process__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-1xbet-registration-process__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-1xbet-registration-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--background-color-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-1xbet-registration-process__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-index-1xbet-registration-process__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-color-dark);
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-index-1xbet-registration-process__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-index-1xbet-registration-process__faq-item.active .page-index-1xbet-registration-process__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg); /* Plus to X transition */
}
}