/* style/blog-23win01-app-beginner-guide.css */
.page-blog-23win01-app-beginner-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

.page-blog-23win01-app-beginner-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0;
  background-color: var(--background);
}

.page-blog-23win01-app-beginner-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-blog-23win01-app-beginner-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-blog-23win01-app-beginner-guide__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-23win01-app-beginner-guide__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-23win01-app-beginner-guide__description {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-23win01-app-beginner-guide__section {
  padding: 60px 0;
  background-color: var(--background);
}

.page-blog-23win01-app-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-23win01-app-beginner-guide__section-title {
  font-size: 2.5em;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-23win01-app-beginner-guide__sub-title {
  font-size: 1.8em;
  color: var(--text-main);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-23win01-app-beginner-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog-23win01-app-beginner-guide__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-23win01-app-beginner-guide__cta-button--centered {
  display: block;
  margin: 40px auto 0 auto;
  text-align: center;
}

.page-blog-23win01-app-beginner-guide__features-grid,
.page-blog-23win01-app-beginner-guide__steps-grid,
.page-blog-23win01-app-beginner-guide__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-23win01-app-beginner-guide__feature-card,
.page-blog-23win01-app-beginner-guide__step-card,
.page-blog-23win01-app-beginner-guide__game-card,
.page-blog-23win01-app-beginner-guide__method-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-secondary);
}

.page-blog-23win01-app-beginner-guide__feature-icon,
.page-blog-23win01-app-beginner-guide__step-image,
.page-blog-23win01-app-beginner-guide__game-icon,
.page-blog-23win01-app-beginner-guide__method-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-blog-23win01-app-beginner-guide__feature-title,
.page-blog-23win01-app-beginner-guide__step-title,
.page-blog-23win01-app-beginner-guide__game-title {
  font-size: 1.4em;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-23win01-app-beginner-guide__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--deep-green);
  color: var(--text-main);
  border-radius: 50%;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
  border: 2px solid var(--glow);
}

.page-blog-23win01-app-beginner-guide__payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-23win01-app-beginner-guide__method-card {
  flex: 0 0 calc(33.33% - 20px);
  max-width: 200px;
}

.page-blog-23win01-app-beginner-guide__method-card p {
  font-size: 1.1em;
  color: var(--text-main);
}

.page-blog-23win01-app-beginner-guide__read-more {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-23win01-app-beginner-guide__read-more:hover {
  color: var(--glow);
}

.page-blog-23win01-app-beginner-guide__ordered-list,
.page-blog-23win01-app-beginner-guide__unordered-list {
  list-style-position: inside;
  text-align: left;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-23win01-app-beginner-guide__ordered-list li,
.page-blog-23win01-app-beginner-guide__unordered-list li {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-blog-23win01-app-beginner-guide__note {
  background-color: var(--divider);
  padding: 15px;
  border-left: 5px solid var(--gold);
  margin-top: 30px;
  margin-bottom: 30px;
  color: var(--text-main);
  border-radius: 4px;
}

.page-blog-23win01-app-beginner-guide__contact-methods ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.page-blog-23win01-app-beginner-guide__contact-methods li {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-blog-23win01-app-beginner-guide__faq-list {
  margin-top: 30px;
}

.page-blog-23win01-app-beginner-guide__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-23win01-app-beginner-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-blog-23win01-app-beginner-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-23win01-app-beginner-guide__faq-question:hover {
  background-color: var(--divider);
}

.page-blog-23win01-app-beginner-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold);
}

.page-blog-23win01-app-beginner-guide__faq-answer {
  padding: 15px 25px;
  font-size: 1.05em;
  color: var(--text-secondary);
  background-color: var(--card-bg);
}

.page-blog-23win01-app-beginner-guide__faq-answer p {
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-23win01-app-beginner-guide__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }
  .page-blog-23win01-app-beginner-guide__section-title {
    font-size: 2em;
  }
  .page-blog-23win01-app-beginner-guide__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-23win01-app-beginner-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-23win01-app-beginner-guide__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-23win01-app-beginner-guide__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }
  .page-blog-23win01-app-beginner-guide__description {
    font-size: 1em;
  }
  .page-blog-23win01-app-beginner-guide__section {
    padding: 40px 0;
  }
  .page-blog-23win01-app-beginner-guide__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-23win01-app-beginner-guide__features-grid,
  .page-blog-23win01-app-beginner-guide__steps-grid,
  .page-blog-23win01-app-beginner-guide__game-categories {
    grid-template-columns: 1fr;
  }
  .page-blog-23win01-app-beginner-guide__method-card {
    flex: 0 0 calc(50% - 10px);
    max-width: unset;
  }

  /* Mobile responsive images */
  .page-blog-23win01-app-beginner-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile responsive buttons */
  .page-blog-23win01-app-beginner-guide__cta-button,
  .page-blog-23win01-app-beginner-guide a[class*="button"],
  .page-blog-23win01-app-beginner-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-23win01-app-beginner-guide__cta-button--centered {
    width: auto !important;
  }

  .page-blog-23win01-app-beginner-guide__cta-buttons,
  .page-blog-23win01-app-beginner-guide__button-group,
  .page-blog-23win01-app-beginner-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-23win01-app-beginner-guide__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  .page-blog-23win01-app-beginner-guide__video-section {
    padding-top: 10px !important;
  }
}