/* style/index-registration-entrance.css */
.page-index-registration-entrance {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Main dark background */
  line-height: 1.6;
}

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

.page-index-registration-entrance__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a63 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-registration-entrance__hero-title {
  font-size: 3.5em;
  color: #FFFFFF; /* White for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-registration-entrance__hero-title .highlight {
  color: #FFD700; /* Gold for highlight */
}

.page-index-registration-entrance__hero-subtitle {
  font-size: 1.3em;
  color: #B0B0B0; /* Lighter grey for subtitle */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-registration-entrance__hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-registration-entrance__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-index-registration-entrance__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue text on gold */
}

.page-index-registration-entrance__btn--primary:hover {
  background-color: #e6c200; /* Darker gold */
  transform: translateY(-3px);
}

.page-index-registration-entrance__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-index-registration-entrance__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-index-registration-entrance__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-registration-entrance__section {
  padding: 80px 0;
}

.page-index-registration-entrance__section:nth-of-type(even) {
  background-color: #0F2038; /* Slightly lighter dark blue for alternating sections */
}

.page-index-registration-entrance__section-title {
  font-size: 2.8em;
  color: #FFFFFF; /* White */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-index-registration-entrance__section-title .highlight {
  color: #FFD700; /* Gold */
}

.page-index-registration-entrance__section-description {
  font-size: 1.1em;
  color: #B0B0B0; /* Lighter grey */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.page-index-registration-entrance__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-registration-entrance__feature-item {
  background-color: #1a2a43; /* Darker blue for feature cards */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-registration-entrance__feature-item:hover {
  transform: translateY(-10px);
}

.page-index-registration-entrance__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

.page-index-registration-entrance__feature-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-index-registration-entrance__feature-text {
  font-size: 1em;
  color: #C0C0C0; /* Light grey */
}

.page-index-registration-entrance__how-to-register {
  background-color: #0A192F;
}

.page-index-registration-entrance__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-index-registration-entrance__step-item {
  background-color: #1a2a43;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.page-index-registration-entrance__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #0A192F;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-index-registration-entrance__step-title {
  font-size: 1.7em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-registration-entrance__step-text {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 25px;
}

.page-index-registration-entrance__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-registration-entrance__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-index-registration-entrance__cta-text {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-top: 25px;
}

.page-index-registration-entrance__login-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-registration-entrance__login-link:hover {
  text-decoration: underline;
}

.page-index-registration-entrance__exclusive-benefits {
  background-color: #0F2038;
}

.page-index-registration-entrance__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-registration-entrance__benefit-item {
  background-color: #1a2a43;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-index-registration-entrance__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: brightness(1.2) drop-shadow(0 0 6px rgba(255, 215, 0, 0.4));
}

.page-index-registration-entrance__benefit-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-registration-entrance__benefit-text {
  font-size: 0.95em;
  color: #C0C0C0;
}

.page-index-registration-entrance__responsible-gaming {
  background-color: #0A192F;
}

.page-index-registration-entrance__responsible-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-index-registration-entrance__responsible-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-registration-entrance__responsible-list {
  flex: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-index-registration-entrance__responsible-list li {
  background-color: #1a2a43;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #C0C0C0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-index-registration-entrance__responsible-list li i {
  color: #FFD700;
  margin-right: 15px;
  font-size: 1.5em;
}

.page-index-registration-entrance__responsible-footer {
  text-align: center;
  font-size: 1.1em;
  color: #B0B0B0;
  margin-top: 50px;
}

.page-index-registration-entrance__faq {
  background-color: #0F2038;
}

.page-index-registration-entrance__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-index-registration-entrance__faq-item {
  background-color: #1a2a43;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-index-registration-entrance__faq-question {
  background-color: #2a3d5b; /* Slightly lighter dark blue for question */
  color: #FFD700; /* Gold */
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-index-registration-entrance__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-registration-entrance__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-registration-entrance__faq-answer {
  padding: 0 25px;
  background-color: #1a2a43;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-registration-entrance__faq-answer p {
  padding: 15px 0;
  color: #C0C0C0;
  font-size: 1em;
}

.page-index-registration-entrance__final-cta {
  background: linear-gradient(45deg, #0A192F, #1a3a63);
  padding: 100px 0;
  text-align: center;
}

.page-index-registration-entrance__final-cta-title {
  font-size: 3em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-registration-entrance__final-cta-title .highlight {
  color: #FFD700;
}

.page-index-registration-entrance__final-cta-text {
  font-size: 1.2em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-registration-entrance__final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-registration-entrance__hero-title {
    font-size: 2.8em;
  }
  .page-index-registration-entrance__section-title {
    font-size: 2.2em;
  }
  .page-index-registration-entrance__responsible-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index-registration-entrance__responsible-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-registration-entrance__hero {
    padding: 80px 0;
  }
  .page-index-registration-entrance__hero-title {
    font-size: 2.2em;
  }
  .page-index-registration-entrance__hero-subtitle,
  .page-index-registration-entrance__section-description {
    font-size: 1em;
  }
  .page-index-registration-entrance__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-registration-entrance__section {
    padding: 60px 0;
  }
  .page-index-registration-entrance__section-title {
    font-size: 1.8em;
  }
  .page-index-registration-entrance__feature-title,
  .page-index-registration-entrance__step-title,
  .page-index-registration-entrance__benefit-title {
    font-size: 1.4em;
  }
  .page-index-registration-entrance__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-index-registration-entrance__final-cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  .page-index-registration-entrance__hero-title {
    font-size: 1.8em;
  }
  .page-index-registration-entrance__hero-subtitle {
    font-size: 0.9em;
  }
  .page-index-registration-entrance__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-registration-entrance__btn {
    width: 80%;
  }
  .page-index-registration-entrance__section-title {
    font-size: 1.5em;
  }
  .page-index-registration-entrance__section-description {
    font-size: 0.9em;
  }
  .page-index-registration-entrance__feature-item,
  .page-index-registration-entrance__step-item,
  .page-index-registration-entrance__benefit-item {
    padding: 25px;
  }
  .page-index-registration-entrance__final-cta-title {
    font-size: 2em;
  }
}