/* style/resources-how-to-register-12bet-safely.css */

/* Base styles for the page content */
.page-resources-how-to-register-12bet-safely {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #FFFFFF); /* Inherit from shared or default to white */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

/* Color Contrast Safeguards */
.page-resources-how-to-register-12bet-safely__dark-bg {
  background-color: #26A9E0; /* Main brand color */
  color: #ffffff; /* White text for dark background */
}

.page-resources-how-to-register-12bet-safely__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

/* Hero Section */
.page-resources-how-to-register-12bet-safely__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #26A9E0, #4CAF50); /* Example gradient with brand color */
  color: #ffffff;
}

.page-resources-how-to-register-12bet-safely__hero-content {
  max-width: 900px;
  margin-bottom: 30px;
}

.page-resources-how-to-register-12bet-safely__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-resources-how-to-register-12bet-safely__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-resources-how-to-register-12bet-safely__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-resources-how-to-register-12bet-safely__btn-primary,
.page-resources-how-to-register-12bet-safely__btn-secondary,
.page-resources-how-to-register-12bet-safely__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Button responsive */
  box-sizing: border-box; /* Button responsive */
  white-space: normal; /* Button text wrap */
  word-wrap: break-word; /* Button text wrap */
}

.page-resources-how-to-register-12bet-safely__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-how-to-register-12bet-safely__btn-primary:hover {
  background-color: #d16b00;
  border-color: #d16b00;
}

.page-resources-how-to-register-12bet-safely__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-how-to-register-12bet-safely__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a7bb0;
  border-color: #1a7bb0;
}

.page-resources-how-to-register-12bet-safely__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 800px; /* Max width for hero image */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-register-12bet-safely__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Content Sections */
.page-resources-how-to-register-12bet-safely__content-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 100%; /* Ensure content section doesn't overflow */
  box-sizing: border-box;
}

.page-resources-how-to-register-12bet-safely__section-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from parent section (dark/light bg) */
}

.page-resources-how-to-register-12bet-safely__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

/* Features Grid */
.page-resources-how-to-register-12bet-safely__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-how-to-register-12bet-safely__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-resources-how-to-register-12bet-safely__feature-card:hover {
  transform: translateY(-5px);
}

.page-resources-how-to-register-12bet-safely__feature-image {
  width: 100%;
  max-width: 400px; /* Adjust based on content display */
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-how-to-register-12bet-safely__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-how-to-register-12bet-safely__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Steps Container */
.page-resources-how-to-register-12bet-safely__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-how-to-register-12bet-safely__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  color: #333333;
}

.page-resources-how-to-register-12bet-safely__step-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-how-to-register-12bet-safely__step-description {
  font-size: 1em;
  margin-bottom: 20px;
  color: #555555;
}

.page-resources-how-to-register-12bet-safely__step-image {
  width: 100%;
  max-width: 600px; /* Adjust based on content display */
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Video Section */
.page-resources-how-to-register-12bet-safely__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #000; /* Fallback for video area */
}

.page-resources-how-to-register-12bet-safely__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-resources-how-to-register-12bet-safely__video-caption {
  font-style: italic;
  margin-top: 10px;
  color: inherit;
}

.page-resources-how-to-register-12bet-safely__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Checklist Section */
.page-resources-how-to-register-12bet-safely__checklist {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-resources-how-to-register-12bet-safely__checklist-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-resources-how-to-register-12bet-safely__checklist-icon {
  font-size: 1.5em;
  color: #26A9E0;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-resources-how-to-register-12bet-safely__checklist-item p {
  margin: 0;
}

/* FAQ Section */
.page-resources-how-to-register-12bet-safely__faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-resources-how-to-register-12bet-safely__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-resources-how-to-register-12bet-safely__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f0f0f0;
  color: #333333;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-register-12bet-safely__faq-question:hover {
  background-color: #e0e0e0;
}

.page-resources-how-to-register-12bet-safely__faq-question h3 {
  margin: 0;
  color: #26A9E0;
}

.page-resources-how-to-register-12bet-safely__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-resources-how-to-register-12bet-safely__faq-item.active .page-resources-how-to-register-12bet-safely__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-how-to-register-12bet-safely__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-resources-how-to-register-12bet-safely__faq-item.active .page-resources-how-to-register-12bet-safely__faq-answer {
  max-height: 1000px !important; /* Important for JS to expand */
  padding: 15px 25px 25px 25px;
}

.page-resources-how-to-register-12bet-safely__faq-answer p {
  margin: 0;
}

/* Call to Action Section */
.page-resources-how-to-register-12bet-safely__cta-section {
  padding: 80px 20px;
  background-color: #26A9E0; /* Brand color */
  color: #ffffff;
  text-align: center;
}

.page-resources-how-to-register-12bet-safely__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-how-to-register-12bet-safely__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-register-12bet-safely__hero-title {
    font-size: 2.2em;
  }
  .page-resources-how-to-register-12bet-safely__section-title {
    font-size: 2em;
  }
  .page-resources-how-to-register-12bet-safely__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-register-12bet-safely {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  .page-resources-how-to-register-12bet-safely__hero-section {
    padding: 40px 15px;
  }

  .page-resources-how-to-register-12bet-safely__hero-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-register-12bet-safely__hero-description {
    font-size: 1em;
  }

  .page-resources-how-to-register-12bet-safely__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-how-to-register-12bet-safely__btn-primary,
  .page-resources-how-to-register-12bet-safely__btn-secondary,
  .page-resources-how-to-register-12bet-safely__btn-link {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important; /* Button responsive */
    width: 100% !important; /* Button responsive */
    box-sizing: border-box !important; /* Button responsive */
    white-space: normal !important; /* Button text wrap */
    word-wrap: break-word !important; /* Button text wrap */
  }

  .page-resources-how-to-register-12bet-safely__content-section,
  .page-resources-how-to-register-12bet-safely__cta-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-how-to-register-12bet-safely__section-title {
    font-size: 1.6em;
  }

  .page-resources-how-to-register-12bet-safely__features-grid,
  .page-resources-how-to-register-12bet-safely__steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-how-to-register-12bet-safely__feature-card,
  .page-resources-how-to-register-12bet-safely__step-card {
    padding: 20px;
  }

  /* Image responsive */
  .page-resources-how-to-register-12bet-safely img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-how-to-register-12bet-safely__hero-image-wrapper,
  .page-resources-how-to-register-12bet-safely__feature-image,
  .page-resources-how-to-register-12bet-safely__step-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Video responsive */
  .page-resources-how-to-register-12bet-safely__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-bottom: 56.25% !important; /* Maintain aspect ratio */
  }
  .page-resources-how-to-register-12bet-safely__video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important; /* Fill parent */
    display: block !important;
  }

  .page-resources-how-to-register-12bet-safely__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-how-to-register-12bet-safely__checklist-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .page-resources-how-to-register-12bet-safely__checklist-icon {
    margin-bottom: 10px;
  }

  .page-resources-how-to-register-12bet-safely__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-resources-how-to-register-12bet-safely__faq-answer {
    padding: 0 20px;
  }

  .page-resources-how-to-register-12bet-safely__faq-item.active .page-resources-how-to-register-12bet-safely__faq-answer {
    padding: 15px 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-register-12bet-safely__hero-title {
    font-size: 1.5em;
  }
  .page-resources-how-to-register-12bet-safely__section-title {
    font-size: 1.4em;
  }
  .page-resources-how-to-register-12bet-safely__cta-title {
    font-size: 1.6em;
  }
}

/* Contrast fix for any unforeseen issues */
.page-resources-how-to-register-12bet-safely__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-resources-how-to-register-12bet-safely__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}