/* style/resources-how-to-register-32win.css */
.page-resources-how-to-register-32win {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-resources-how-to-register-32win__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-how-to-register-32win__hero {
  background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-how-to-register-32win__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  animation: page-resources-how-to-register-32win-pulse 10s infinite alternate;
}

@keyframes page-resources-how-to-register-32win-pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

.page-resources-how-to-register-32win__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-resources-how-to-register-32win__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  position: relative;
  z-index: 1;
}

.page-resources-how-to-register-32win__section {
  padding: 60px 0;
}

.page-resources-how-to-register-32win__section--dark {
  background-color: #000080;
  color: #FFD700;
}

.page-resources-how-to-register-32win__section-title {
  font-size: 2.5em;
  color: #000080;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-how-to-register-32win__section--dark .page-resources-how-to-register-32win__section-title {
  color: #FFD700;
}

.page-resources-how-to-register-32win__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-how-to-register-32win__section--dark .page-resources-how-to-register-32win__section-title::after {
  background-color: #FFFFFF;
}

.page-resources-how-to-register-32win__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-resources-how-to-register-32win__btn--primary {
  background-color: #FFD700;
  color: #000080;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-how-to-register-32win__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-how-to-register-32win__btn--secondary {
  background-color: #000080;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-how-to-register-32win__btn--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-2px);
}

.page-resources-how-to-register-32win__btn--action {
  background-color: #000080;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 12px 25px;
  font-size: 1em;
}

.page-resources-how-to-register-32win__btn--action:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-2px);
}

.page-resources-how-to-register-32win__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-resources-how-to-register-32win__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-how-to-register-32win__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-how-to-register-32win__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-how-to-register-32win__feature-title {
  color: #000080;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-resources-how-to-register-32win__feature-item ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 15px;
  color: #555;
}

.page-resources-how-to-register-32win__feature-item li {
  margin-bottom: 8px;
}

.page-resources-how-to-register-32win__list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
  color: #555;
}

.page-resources-how-to-register-32win__section--dark .page-resources-how-to-register-32win__list {
  color: #f0f0f0;
}

.page-resources-how-to-register-32win__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-how-to-register-32win__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 40px;
}

.page-resources-how-to-register-32win__step-item {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-resources-how-to-register-32win__step-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-register-32win__step-item p {
  font-size: 1.1em;
  margin-bottom: 25px;
  max-width: 700px;
}

.page-resources-how-to-register-32win__step-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
  width: 100%;
  max-width: 600px;
}

.page-resources-how-to-register-32win__step-item ul li {
  background-color: #f0f8ff;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-left: 5px solid #000080;
  border-radius: 5px;
  font-size: 1em;
}

.page-resources-how-to-register-32win__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #eee;
}

.page-resources-how-to-register-32win__after-register-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-how-to-register-32win__action-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  color: #333;
}

.page-resources-how-to-register-32win__section--dark .page-resources-how-to-register-32win__action-item {
  background-color: #1a1a90;
  color: #FFD700;
}

.page-resources-how-to-register-32win__action-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-resources-how-to-register-32win__section--dark .page-resources-how-to-register-32win__action-title {
  color: #FFFFFF;
}

.page-resources-how-to-register-32win__action-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-register-32win__faq {
  margin-top: 40px;
}

.page-resources-how-to-register-32win__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-resources-how-to-register-32win__faq-question {
  font-size: 1.3em;
  color: #000080;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #FFD700;
  color: #000080;
  border-bottom: 1px solid rgba(0, 0, 128, 0.1);
}

.page-resources-how-to-register-32win__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-how-to-register-32win__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-resources-how-to-register-32win__faq-answer {
  padding: 20px;
  font-size: 1.1em;
  color: #333;
  display: none;
  background-color: #fcfcfc;
}

.page-resources-how-to-register-32win__faq-answer.active {
  display: block;
}

.page-resources-how-to-register-32win__cta-final {
  text-align: center;
  padding: 80px 0;
}

.page-resources-how-to-register-32win__cta-final .page-resources-how-to-register-32win__section-title {
  color: #FFD700;
}

.page-resources-how-to-register-32win__cta-final p {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-how-to-register-32win__cta-image {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-how-to-register-32win__title {
    font-size: 2.5em;
  }

  .page-resources-how-to-register-32win__subtitle {
    font-size: 1em;
  }

  .page-resources-how-to-register-32win__section-title {
    font-size: 2em;
  }

  .page-resources-how-to-register-32win__features,
  .page-resources-how-to-register-32win__after-register-actions {
    grid-template-columns: 1fr;
  }

  .page-resources-how-to-register-32win__step-item {
    padding: 30px 20px;
  }

  .page-resources-how-to-register-32win__step-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-register-32win__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-register-32win__hero,
  .page-resources-how-to-register-32win__cta-final {
    padding: 50px 0;
  }

  .page-resources-how-to-register-32win__title {
    font-size: 2em;
  }

  .page-resources-how-to-register-32win__section {
    padding: 40px 0;
  }

  .page-resources-how-to-register-32win__section-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-register-32win__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-how-to-register-32win__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-resources-how-to-register-32win__faq-question::after {
    right: 15px;
  }

  .page-resources-how-to-register-32win__faq-answer {
    padding: 15px;
    font-size: 1em;
  }
}