/* style/blog-how-to-register-on-winph.css */
.page-blog-how-to-register-on-winph {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

.page-blog-how-to-register-on-winph__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.page-blog-how-to-register-on-winph__hero-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px; /* Space below hero text */
}

.page-blog-how-to-register-on-winph__hero-content-wrapper {
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-register-on-winph__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-blog-how-to-register-on-winph__hero-text-block {
  text-align: center;
  max-width: 900px;
}

.page-blog-how-to-register-on-winph__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: bold;
  color: #F2C14E; /* Main color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-how-to-register-on-winph__lead-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-blog-how-to-register-on-winph__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* General Section Styling */
.page-blog-how-to-register-on-winph__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #3A2A12; /* Border */
}

.page-blog-how-to-register-on-winph__content-section:last-of-type {
  border-bottom: none;
}

.page-blog-how-to-register-on-winph__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-how-to-register-on-winph__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #FFF6D6;
}

/* Images */
.page-blog-how-to-register-on-winph__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-how-to-register-on-winph__image-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Feature Grid */
.page-blog-how-to-register-on-winph__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-how-to-register-on-winph__feature-card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border */
}

.page-blog-how-to-register-on-winph__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B; /* Glow */
}

.page-blog-how-to-register-on-winph__card-title {
  font-size: 1.5em;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-blog-how-to-register-on-winph__dark-bg {
  color: #ffffff;
  background: #111111;
}

/* Registration Steps */
.page-blog-how-to-register-on-winph__registration-steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-how-to-register-on-winph__step-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
}

.page-blog-how-to-register-on-winph__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #0A0A0A;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-blog-how-to-register-on-winph__step-title {
  font-size: 1.3em;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

/* App CTA */
.page-blog-how-to-register-on-winph__app-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Tips List */
.page-blog-how-to-register-on-winph__tips-list {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
  color: #FFF6D6;
  font-size: 1.1em;
  margin-top: 30px;
}

.page-blog-how-to-register-on-winph__tips-list li {
  margin-bottom: 10px;
}

.page-blog-how-to-register-on-winph__tips-list li strong {
  color: #F2C14E;
}

.page-blog-how-to-register-on-winph__tips-list li a {
  color: #FFD36B;
  text-decoration: underline;
}

.page-blog-how-to-register-on-winph__tips-list li a:hover {
  color: #F2C14E;
}

/* Buttons */
.page-blog-how-to-register-on-winph__btn-primary,
.page-blog-how-to-register-on-winph__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-how-to-register-on-winph__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #0A0A0A;
  border: none;
}

.page-blog-how-to-register-on-winph__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-how-to-register-on-winph__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E;
}

.page-blog-how-to-register-on-winph__btn-secondary:hover {
  background-color: #F2C14E;
  color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

/* FAQ Section */
.page-blog-how-to-register-on-winph__faq-list {
  margin-top: 40px;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  overflow: hidden;
}

.page-blog-how-to-register-on-winph__faq-item {
  border-bottom: 1px solid #3A2A12;
}

.page-blog-how-to-register-on-winph__faq-item:last-child {
  border-bottom: none;
}

.page-blog-how-to-register-on-winph__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #111111; /* Card BG */
  transition: background-color 0.3s ease;
}

.page-blog-how-to-register-on-winph__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-blog-how-to-register-on-winph__faq-title {
  font-size: 1.2em;
  color: #FFF6D6;
  margin: 0;
}

.page-blog-how-to-register-on-winph__faq-toggle {
  font-size: 1.8em;
  color: #F2C14E;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-blog-how-to-register-on-winph__faq-item.active .page-blog-how-to-register-on-winph__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-register-on-winph__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #0A0A0A;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

.page-blog-how-to-register-on-winph__faq-item.active .page-blog-how-to-register-on-winph__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 20px 25px;
}

/* CTA Section */
.page-blog-how-to-register-on-winph__cta-section {
  text-align: center;
  padding-bottom: 60px;
}

.page-blog-how-to-register-on-winph__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-register-on-winph__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-how-to-register-on-winph__section-title {
    font-size: clamp(1.6em, 4vw, 2.5em);
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-register-on-winph {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-register-on-winph__hero-content-wrapper {
    padding: 0 15px;
  }

  .page-blog-how-to-register-on-winph__hero-cta-buttons,
  .page-blog-how-to-register-on-winph__app-cta,
  .page-blog-how-to-register-on-winph__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-how-to-register-on-winph__btn-primary,
  .page-blog-how-to-register-on-winph__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-register-on-winph__container {
    padding: 0 15px;
  }

  .page-blog-how-to-register-on-winph__content-section {
    padding: 40px 0;
  }

  .page-blog-how-to-register-on-winph__features-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-how-to-register-on-winph__step-item {
    padding-left: 50px;
  }

  .page-blog-how-to-register-on-winph__step-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }

  .page-blog-how-to-register-on-winph__faq-question {
    padding: 15px 20px;
  }

  .page-blog-how-to-register-on-winph__faq-answer {
    padding: 15px 20px;
  }

  /* Ensure all images are responsive */
  .page-blog-how-to-register-on-winph img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-how-to-register-on-winph__section,
  .page-blog-how-to-register-on-winph__card,
  .page-blog-how-to-register-on-winph__container,
  .page-blog-how-to-register-on-winph__hero-content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-register-on-winph__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile: controlled by shared's media */
  }
}