/* style/blog-winwin-app-registration-login-tutorial.css */
:root {
  --winwin-app-primary: #11A84E;
  --winwin-app-secondary: #22C768;
  --winwin-app-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --winwin-app-card-bg: #11271B;
  --winwin-app-background: #08160F;
  --winwin-app-text-main: #F2FFF6;
  --winwin-app-text-secondary: #A7D9B8;
  --winwin-app-border: #2E7A4E;
  --winwin-app-glow: #57E38D;
  --winwin-app-gold: #F2C14E;
  --winwin-app-divider: #1E3A2A;
  --winwin-app-deep-green: #0A4B2C;
}

.page-blog-winwin-app-registration-login-tutorial {
  background-color: var(--winwin-app-background);
  color: var(--winwin-app-text-main);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-blog-winwin-app-registration-login-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-winwin-app-registration-login-tutorial__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  background-color: var(--winwin-app-deep-green);
}

.page-blog-winwin-app-registration-login-tutorial__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for aesthetic */
  overflow: hidden;
}

.page-blog-winwin-app-registration-login-tutorial__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-winwin-app-registration-login-tutorial__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-winwin-app-registration-login-tutorial__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive H1 font size */
  font-weight: 700;
  color: var(--winwin-app-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-winwin-app-registration-login-tutorial__description {
  font-size: 1.1em;
  color: var(--winwin-app-text-secondary);
  margin-bottom: 30px;
}

.page-blog-winwin-app-registration-login-tutorial__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-winwin-app-registration-login-tutorial__btn-primary,
.page-blog-winwin-app-registration-login-tutorial__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
}

.page-blog-winwin-app-registration-login-tutorial__btn-primary {
  background: var(--winwin-app-button-gradient);
  color: var(--winwin-app-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-winwin-app-registration-login-tutorial__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-winwin-app-registration-login-tutorial__btn-secondary {
  background: transparent;
  color: var(--winwin-app-text-main);
  border: 2px solid var(--winwin-app-primary);
}

.page-blog-winwin-app-registration-login-tutorial__btn-secondary:hover {
  background-color: var(--winwin-app-primary);
  color: var(--winwin-app-text-main);
  transform: translateY(-2px);
}

.page-blog-winwin-app-registration-login-tutorial__content-area {
  padding: 60px 0;
}

.page-blog-winwin-app-registration-login-tutorial__dark-bg {
  background-color: var(--winwin-app-card-bg);
  color: var(--winwin-app-text-main);
}

.page-blog-winwin-app-registration-login-tutorial__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em); /* Responsive section title */
  color: var(--winwin-app-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-winwin-app-registration-login-tutorial__text-block {
  font-size: 1.05em;
  margin-bottom: 30px;
  text-align: justify;
  color: var(--winwin-app-text-secondary);
}

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

.page-blog-winwin-app-registration-login-tutorial__feature-card,
.page-blog-winwin-app-registration-login-tutorial__step-card,
.page-blog-winwin-app-registration-login-tutorial__issue-card {
  background-color: var(--winwin-app-card-bg);
  border: 1px solid var(--winwin-app-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: var(--winwin-app-text-secondary);
}

.page-blog-winwin-app-registration-login-tutorial__feature-card p,
.page-blog-winwin-app-registration-login-tutorial__step-card p,
.page-blog-winwin-app-registration-login-tutorial__issue-card p {
  text-align: justify;
  font-size: 0.95em;
  color: var(--winwin-app-text-secondary);
}

.page-blog-winwin-app-registration-login-tutorial__feature-title,
.page-blog-winwin-app-registration-login-tutorial__step-title,
.page-blog-winwin-app-registration-login-tutorial__issue-title {
  font-size: 1.4em;
  color: var(--winwin-app-text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-winwin-app-registration-login-tutorial__feature-icon,
.page-blog-winwin-app-registration-login-tutorial__step-image,
.page-blog-winwin-app-registration-login-tutorial__security-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 15px auto 20px auto;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-winwin-app-registration-login-tutorial__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-winwin-app-registration-login-tutorial__info-list,
.page-blog-winwin-app-registration-login-tutorial__security-tips {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--winwin-app-text-secondary);
  text-align: left;
}

.page-blog-winwin-app-registration-login-tutorial__info-list li,
.page-blog-winwin-app-registration-login-tutorial__security-tips li {
  margin-bottom: 10px;
  font-size: 0.95em;
}

.page-blog-winwin-app-registration-login-tutorial__info-list strong,
.page-blog-winwin-app-registration-login-tutorial__security-tips strong {
  color: var(--winwin-app-text-main);
}

.page-blog-winwin-app-registration-login-tutorial__issue-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-winwin-app-registration-login-tutorial__faq-list {
  margin-top: 40px;
}

.page-blog-winwin-app-registration-login-tutorial__faq-item {
  background-color: var(--winwin-app-card-bg);
  border: 1px solid var(--winwin-app-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--winwin-app-text-main);
}

.page-blog-winwin-app-registration-login-tutorial__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: var(--winwin-app-gold);
  background-color: var(--winwin-app-deep-green);
  border-bottom: 1px solid var(--winwin-app-border);
}

.page-blog-winwin-app-registration-login-tutorial__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-blog-winwin-app-registration-login-tutorial__faq-question::marker {
  display: none; /* Hide default marker for Firefox */
}

.page-blog-winwin-app-registration-login-tutorial__faq-qtext {
  flex-grow: 1;
}

.page-blog-winwin-app-registration-login-tutorial__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--winwin-app-text-main);
}

.page-blog-winwin-app-registration-login-tutorial__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.7;
  color: var(--winwin-app-text-secondary);
  text-align: justify;
}

.page-blog-winwin-app-registration-login-tutorial__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-winwin-app-registration-login-tutorial__faq-answer .page-blog-winwin-app-registration-login-tutorial__btn-primary {
  margin-top: 15px;
  display: inline-block;
}

.page-blog-winwin-app-registration-login-tutorial__cta-buttons--bottom {
  margin-top: 50px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-blog-winwin-app-registration-login-tutorial__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }
  .page-blog-winwin-app-registration-login-tutorial__section-title {
    font-size: clamp(1.6em, 4.5vw, 2.2em);
  }
  .page-blog-winwin-app-registration-login-tutorial__hero-content {
    padding: 0 15px;
  }
}