/* style/blog-how-to-register-sun-win-club.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color-page: #08160F; /* Renamed to avoid conflict with shared.css body background */
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-blog-how-to-register-sun-win-club {
  background-color: var(--background-color-page);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-blog-how-to-register-sun-win-club__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-register-sun-win-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Minimal top padding, body handles header offset */
  background-color: var(--deep-green);
  overflow: hidden;
}

.page-blog-how-to-register-sun-win-club__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-blog-how-to-register-sun-win-club__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-how-to-register-sun-win-club__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-how-to-register-sun-win-club__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Responsive font size */
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-blog-how-to-register-sun-win-club__intro-text {
  font-size: 1.1em;
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-register-sun-win-club__btn-primary {
  display: inline-block;
  background: var(--button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  min-width: 200px; /* Ensure buttons are not too small */
  min-height: 50px;
  box-sizing: border-box;
}

.page-blog-how-to-register-sun-win-club__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-register-sun-win-club__content-section,
.page-blog-how-to-register-sun-win-club__security-section,
.page-blog-how-to-register-sun-win-club__deposit-promo-section,
.page-blog-how-to-register-sun-win-club__games-section,
.page-blog-how-to-register-sun-win-club__faq-section,
.page-blog-how-to-register-sun-win-club__conclusion-section {
  padding: 60px 0;
  background-color: var(--background-color-page);
}

.page-blog-how-to-register-sun-win-club__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(var(--primary-color), 0.5);
}

.page-blog-how-to-register-sun-win-club__section-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-register-sun-win-club__step-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-how-to-register-sun-win-club__step-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.page-blog-how-to-register-sun-win-club__step-number {
  background: var(--button-gradient);
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  font-weight: bold;
  margin-right: 15px;
}

.page-blog-how-to-register-sun-win-club__step-title {
  font-size: 1.6em;
  color: var(--gold-color);
  margin: 0;
}

.page-blog-how-to-register-sun-win-club__step-text {
  color: var(--text-main);
  font-size: 1.05em;
  margin-bottom: 20px;
}

.page-blog-how-to-register-sun-win-club__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-how-to-register-sun-win-club__btn-register-cta {
  margin-top: 20px;
}

.page-blog-how-to-register-sun-win-club__security-grid,
.page-blog-how-to-register-sun-win-club__promo-grid,
.page-blog-how-to-register-sun-win-club__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-how-to-register-sun-win-club__security-item,
.page-blog-how-to-register-sun-win-club__promo-item,
.page-blog-how-to-register-sun-win-club__game-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-blog-how-to-register-sun-win-club__security-item-title,
.page-blog-how-to-register-sun-win-club__promo-item-title,
.page-blog-how-to-register-sun-win-club__game-item-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-how-to-register-sun-win-club__security-item-text,
.page-blog-how-to-register-sun-win-club__promo-item-text,
.page-blog-how-to-register-sun-win-club__game-item-text {
  color: var(--text-secondary);
  font-size: 1em;
}

.page-blog-how-to-register-sun-win-club__security-image,
.page-blog-how-to-register-sun-win-club__promo-image,
.page-blog-how-to-register-sun-win-club__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto 20px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-how-to-register-sun-win-club__inline-link {
  color: var(--gold-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-how-to-register-sun-win-club__inline-link:hover {
  color: var(--glow-color);
}

.page-blog-how-to-register-sun-win-club__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-register-sun-win-club__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-register-sun-win-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-register-sun-win-club__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-register-sun-win-club__faq-item[open] > .page-blog-how-to-register-sun-win-club__faq-question {
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
  border-radius: 10px 10px 0 0;
}

.page-blog-how-to-register-sun-win-club__faq-qtext {
  flex-grow: 1;
  color: var(--gold-color);
}

.page-blog-how-to-register-sun-win-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-how-to-register-sun-win-club__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--text-secondary);
  line-height: 1.5;
}

.page-blog-how-to-register-sun-win-club__conclusion-section .page-blog-how-to-register-sun-win-club__btn-primary {
  margin-top: 30px;
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
  .page-blog-how-to-register-sun-win-club {
    font-size: 15px;
  }

  .page-blog-how-to-register-sun-win-club__container {
    padding: 0 15px !important;
  }

  .page-blog-how-to-register-sun-win-club__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-how-to-register-sun-win-club__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-how-to-register-sun-win-club__intro-text {
    font-size: 1em;
  }

  .page-blog-how-to-register-sun-win-club__btn-primary {
    width: 100% !important;
    max-width: 300px !important; /* Constrain max-width for better look */
    padding: 12px 20px !important;
    font-size: 0.95em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0 auto !important;
    display: block !important;
    min-height: 45px; /* Ensure min height */
    box-sizing: border-box !important;
  }

  .page-blog-how-to-register-sun-win-club__section-title {
    font-size: 1.8em;
  }

  .page-blog-how-to-register-sun-win-club__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-blog-how-to-register-sun-win-club__step-card {
    padding: 20px;
  }

  .page-blog-how-to-register-sun-win-club__step-title {
    font-size: 1.3em;
  }

  .page-blog-how-to-register-sun-win-club__step-image,
  .page-blog-how-to-register-sun-win-club__security-image,
  .page-blog-how-to-register-sun-win-club__promo-image,
  .page-blog-how-to-register-sun-win-club__game-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
  }

  .page-blog-how-to-register-sun-win-club__security-grid,
  .page-blog-how-to-register-sun-win-club__promo-grid,
  .page-blog-how-to-register-sun-win-club__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-register-sun-win-club__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-how-to-register-sun-win-club__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95em;
  }

  /* Ensure all image containers are responsive */
  .page-blog-how-to-register-sun-win-club__hero-image-wrapper,
  .page-blog-how-to-register-sun-win-club__step-card,
  .page-blog-how-to-register-sun-win-club__security-item,
  .page-blog-how-to-register-sun-win-club__promo-item,
  .page-blog-how-to-register-sun-win-club__game-item,
  .page-blog-how-to-register-sun-win-club__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }
}