/* style/index-how-to-register.css */
.page-index-how-to-register {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1a1a1a; /* Very dark grey background */
}

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

/* Hero Section */
.page-index-how-to-register__hero-section {
  background: linear-gradient(135deg, #8B0000 0%, #3a0000 100%); /* Dark Red to even darker red */
  color: #FFD700; /* Gold for text */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-how-to-register__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.page-index-how-to-register__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #F0F0F0; /* Off-white for subtitle */
  position: relative;
  z-index: 1;
}

.page-index-how-to-register__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark Red text on gold */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-index-how-to-register__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-index-how-to-register__hero-image-wrapper {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 0;
}

.page-index-how-to-register__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

/* General Section Styling */
.page-index-how-to-register__section {
  padding: 60px 0;
  background-color: #222222; /* Slightly lighter dark grey for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-index-how-to-register__section:nth-child(even) {
    background-color: #1c1c1c;
}

.page-index-how-to-register__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-index-how-to-register__sub-section-title {
    font-size: 2em;
    color: #FFD700;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.page-index-how-to-register__section-description {
  font-size: 1.1em;
  color: #B0B0B0; /* Lighter grey for descriptions */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Steps Section */
.page-index-how-to-register__steps {
    background-color: #1a1a1a;
}

.page-index-how-to-register__step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-index-how-to-register__step-item {
  background-color: #2c2c2c; /* Darker grey for step cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 5px solid #8B0000; /* Dark Red accent */
}

.page-index-how-to-register__step-item:hover {
  transform: translateY(-5px);
}

.page-index-how-to-register__step-icon-wrapper {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.page-index-how-to-register__step-icon {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-how-to-register__step-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-how-to-register__step-text {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 20px;
  text-align: left;
}

.page-index-how-to-register__step-image {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-how-to-register__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}

.page-index-how-to-register__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #C0C0C0;
}

.page-index-how-to-register__list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-index-how-to-register__video-placeholder {
    background-color: #000;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-top: 30px;
    overflow: hidden;
    position: relative;
}

.page-index-how-to-register__video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.7);
}

.page-index-how-to-register__video-placeholder p {
    color: #FFD700;
    font-size: 1.2em;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Benefits Section */
.page-index-how-to-register__benefits {
    background-color: #222222;
}

.page-index-how-to-register__benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-index-how-to-register__benefit-list li {
  background-color: #2c2c2c;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #C0C0C0;
  border-left: 5px solid #FFD700; /* Gold accent */
}

.page-index-how-to-register__benefit-icon {
  font-size: 1.8em;
  color: #FFD700;
  line-height: 1;
}

.page-index-how-to-register__benefit-list li strong {
  color: #FFD700;
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}

/* Image Wrapper for sections */
.page-index-how-to-register__image-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-index-how-to-register__image-wrapper--small {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-how-to-register__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-index-how-to-register__faq {
    background-color: #1c1c1c;
}

.page-index-how-to-register__faq-item {
  background-color: #2c2c2c;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #8B0000; /* Dark Red accent */
}

.page-index-how-to-register__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-how-to-register__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-index-how-to-register__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-index-how-to-register__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
  padding-top: 0;
}

.page-index-how-to-register__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  opacity: 1;
  padding-top: 10px;
}

/* Call to Action Section */
.page-index-how-to-register__call-to-action {
  background: linear-gradient(90deg, #8B0000, #FFD700); /* Gradient from Dark Red to Gold */
  color: #FFF;
  text-align: center;
  padding: 70px 0;
}

.page-index-how-to-register__call-to-action .page-index-how-to-register__section-title {
    color: #FFF;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-index-how-to-register__call-to-action .page-index-how-to-register__section-description {
    color: #F0F0F0;
    margin-bottom: 50px;
}

.page-index-how-to-register__cta-button--large {
  padding: 20px 60px;
  font-size: 1.5em;
  background-color: #1a1a1a; /* Dark background for contrast */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-index-how-to-register__cta-button--large:hover {
  background-color: #333333;
  border-color: #e6c200;
  color: #e6c200;
}

.page-index-how-to-register__contact-text {
    margin-top: 30px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-index-how-to-register__contact-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-how-to-register__contact-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Responsible Gaming Section */
.page-index-how-to-register__responsible-gaming {
    background-color: #222222;
    padding-bottom: 80px;
}

.page-index-how-to-register__responsible-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-index-how-to-register__responsible-list li {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    color: #C0C0C0;
    flex: 1 1 calc(33% - 40px);
    min-width: 280px;
    text-align: left;
    border-bottom: 3px solid #FFD700;
}

.page-index-how-to-register__responsible-list li strong {
    color: #FFD700;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-how-to-register__hero-title {
    font-size: 2.8em;
  }
  .page-index-how-to-register__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-how-to-register__section-title {
    font-size: 2em;
  }
  .page-index-how-to-register__benefit-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .page-index-how-to-register__responsible-list li {
      flex: 1 1 calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  .page-index-how-to-register__hero-section {
    padding: 60px 0;
  }
  .page-index-how-to-register__hero-title {
    font-size: 2.2em;
  }
  .page-index-how-to-register__hero-subtitle {
    font-size: 1em;
  }
  .page-index-how-to-register__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-index-how-to-register__section {
    padding: 40px 0;
  }
  .page-index-how-to-register__section-title {
    font-size: 1.8em;
  }
  .page-index-how-to-register__step-grid {
    grid-template-columns: 1fr;
  }
  .page-index-how-to-register__benefit-list {
    grid-template-columns: 1fr;
  }
  .page-index-how-to-register__responsible-list li {
      flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .page-index-how-to-register__hero-title {
    font-size: 1.8em;
  }
  .page-index-how-to-register__hero-subtitle {
    font-size: 0.9em;
  }
  .page-index-how-to-register__cta-button--large {
    padding: 15px 40px;
    font-size: 1.2em;
  }
  .page-index-how-to-register__section-title {
      font-size: 1.5em;
  }
}