/* style/blog-8swin-latest-game-guide.css */

/* Root variables for colors */
:root {
  --8swin-primary-color: #11A84E;
  --8swin-secondary-color: #22C768;
  --8swin-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --8swin-card-bg: #11271B;
  --8swin-background: #08160F;
  --8swin-text-main: #F2FFF6;
  --8swin-text-secondary: #A7D9B8;
  --8swin-border-color: #2E7A4E;
  --8swin-glow-color: #57E38D;
  --8swin-gold-color: #F2C14E;
  --8swin-divider-color: #1E3A2A;
  --8swin-deep-green: #0A4B2C;
}

.page-blog-8swin-latest-game-guide {
  background-color: var(--8swin-background);
  color: var(--8swin-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-blog-8swin-latest-game-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
  background-color: var(--8swin-deep-green);
}

.page-blog-8swin-latest-game-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-8swin-latest-game-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-blog-8swin-latest-game-guide__hero-content {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-8swin-latest-game-guide__main-title {
  font-size: clamp(2em, 4vw, 2.8em);
  color: var(--8swin-gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-blog-8swin-latest-game-guide__description {
  font-size: 1.1em;
  color: var(--8swin-text-secondary);
  margin-bottom: 30px;
}

/* General Section Styling */
.page-blog-8swin-latest-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-8swin-latest-game-guide__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: var(--8swin-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-8swin-latest-game-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--8swin-primary-color);
  border-radius: 2px;
}

.page-blog-8swin-latest-game-guide__introduction-section,
.page-blog-8swin-latest-game-guide__strategy-section,
.page-blog-8swin-latest-game-guide__faq-section {
  padding: 80px 0;
  background-color: var(--8swin-card-bg);
}

.page-blog-8swin-latest-game-guide__games-overview-section,
.page-blog-8swin-latest-game-guide__registration-guide-section,
.page-blog-8swin-latest-game-guide__conclusion-section {
  padding: 80px 0;
  background-color: var(--8swin-background);
}

.page-blog-8swin-latest-game-guide__dark-bg {
  background-color: var(--8swin-deep-green);
  color: var(--8swin-text-main);
}

.page-blog-8swin-latest-game-guide__dark-bg .page-blog-8swin-latest-game-guide__section-title {
  color: var(--8swin-gold-color);
}

.page-blog-8swin-latest-game-guide__dark-bg .page-blog-8swin-latest-game-guide__section-title::after {
  background-color: var(--8swin-gold-color);
}

/* Text elements */
.page-blog-8swin-latest-game-guide p {
  margin-bottom: 20px;
  color: var(--8swin-text-main);
}

.page-blog-8swin-latest-game-guide ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--8swin-text-main);
}

.page-blog-8swin-latest-game-guide ul li {
  margin-bottom: 10px;
}

/* Buttons */
.page-blog-8swin-latest-game-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-8swin-latest-game-guide__btn-primary {
  background: var(--8swin-button-gradient);
  color: #ffffff;
  border: none;
}

.page-blog-8swin-latest-game-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-8swin-latest-game-guide__btn-secondary {
  background: transparent;
  color: var(--8swin-primary-color);
  border: 2px solid var(--8swin-primary-color);
}

.page-blog-8swin-latest-game-guide__btn-secondary:hover {
  background: var(--8swin-primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.page-blog-8swin-latest-game-guide__read-more-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: var(--8swin-primary-color);
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 20px;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-8swin-latest-game-guide__read-more-button:hover {
  background-color: var(--8swin-secondary-color);
}

.page-blog-8swin-latest-game-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Game Categories Section */
.page-blog-8swin-latest-game-guide__game-category {
  margin-bottom: 60px;
}

.page-blog-8swin-latest-game-guide__game-title {
  font-size: 2em;
  color: var(--8swin-primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-8swin-latest-game-guide__game-card {
  display: flex;
  background-color: var(--8swin-card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--8swin-border-color);
  flex-direction: row;
}

.page-blog-8swin-latest-game-guide__game-card:nth-child(even) {
  flex-direction: row-reverse;
}

.page-blog-8swin-latest-game-guide__game-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-8swin-latest-game-guide__game-info {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-blog-8swin-latest-game-guide__game-subtitle {
  font-size: 1.3em;
  color: var(--8swin-gold-color);
  margin-top: 20px;
  margin-bottom: 15px;
}

/* Strategy Section */
.page-blog-8swin-latest-game-guide__strategy-item {
  background-color: var(--8swin-background);
  border: 1px solid var(--8swin-divider-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-8swin-latest-game-guide__strategy-title {
  font-size: 1.6em;
  color: var(--8swin-primary-color);
  margin-bottom: 15px;
}

/* Registration Guide Section */
.page-blog-8swin-latest-game-guide__step-by-step {
  background-color: var(--8swin-card-bg);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
  border: 1px solid var(--8swin-border-color);
}

.page-blog-8swin-latest-game-guide__step-title {
  font-size: 1.8em;
  color: var(--8swin-gold-color);
  margin-bottom: 25px;
}

.page-blog-8swin-latest-game-guide__step-image {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid var(--8swin-divider-color);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-8swin-latest-game-guide__step-by-step ul {
  text-align: left;
  display: inline-block;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-blog-8swin-latest-game-guide__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-8swin-latest-game-guide__faq-item {
  background-color: var(--8swin-background);
  border: 1px solid var(--8swin-border-color);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.page-blog-8swin-latest-game-guide__faq-item summary {
  list-style: none;
  padding: 20px 30px;
  cursor: pointer;
  background-color: var(--8swin-deep-green);
  color: var(--8swin-text-main);
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-blog-8swin-latest-game-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-8swin-latest-game-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--8swin-gold-color);
  transition: transform 0.3s ease;
}

.page-blog-8swin-latest-game-guide__faq-item[open] .page-blog-8swin-latest-game-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-8swin-latest-game-guide__faq-answer {
  padding: 20px 30px;
  background-color: var(--8swin-background);
  color: var(--8swin-text-secondary);
  border-top: 1px solid var(--8swin-divider-color);
}

.page-blog-8swin-latest-game-guide__faq-answer p {
  margin-bottom: 0;
}

/* Conclusion Section */
.page-blog-8swin-latest-game-guide__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-blog-8swin-latest-game-guide__conclusion-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-8swin-latest-game-guide__game-card {
    flex-direction: column;
  }

  .page-blog-8swin-latest-game-guide__game-card:nth-child(even) {
    flex-direction: column;
  }

  .page-blog-8swin-latest-game-guide__game-image,
  .page-blog-8swin-latest-game-guide__game-info {
    width: 100%;
  }

  .page-blog-8swin-latest-game-guide__game-info {
    padding: 30px;
  }

  .page-blog-8swin-latest-game-guide__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-blog-8swin-latest-game-guide__section-title {
    font-size: clamp(1.6em, 5vw, 2.2em);
  }

  .page-blog-8swin-latest-game-guide__hero-section {
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .page-blog-8swin-latest-game-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-8swin-latest-game-guide__hero-section,
  .page-blog-8swin-latest-game-guide__introduction-section,
  .page-blog-8swin-latest-game-guide__games-overview-section,
  .page-blog-8swin-latest-game-guide__strategy-section,
  .page-blog-8swin-latest-game-guide__registration-guide-section,
  .page-blog-8swin-latest-game-guide__faq-section,
  .page-blog-8swin-latest-game-guide__conclusion-section {
    padding: 40px 0 !important;
  }

  .page-blog-8swin-latest-game-guide__container {
    padding: 0 15px !important;
  }

  .page-blog-8swin-latest-game-guide__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-8swin-latest-game-guide__game-image,
  .page-blog-8swin-latest-game-guide__step-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .page-blog-8swin-latest-game-guide__game-card,
  .page-blog-8swin-latest-game-guide__step-by-step,
  .page-blog-8swin-latest-game-guide__strategy-item,
  .page-blog-8swin-latest-game-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 20px !important;
  }

  .page-blog-8swin-latest-game-guide__cta-button,
  .page-blog-8swin-latest-game-guide__btn-primary,
  .page-blog-8swin-latest-game-guide__btn-secondary,
  .page-blog-8swin-latest-game-guide a[class*="button"],
  .page-blog-8swin-latest-game-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 !important;
    padding-right: 15px !important;
    margin-bottom: 15px; /* Add spacing between stacked buttons */
  }

  .page-blog-8swin-latest-game-guide__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 15px !important;
  }

  .page-blog-8swin-latest-game-guide__read-more-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-8swin-latest-game-guide__game-info,
  .page-blog-8swin-latest-game-guide__strategy-item,
  .page-blog-8swin-latest-game-guide__step-by-step {
    padding: 20px !important;
  }

  .page-blog-8swin-latest-game-guide__faq-item summary {
    padding: 15px 20px !important;
  }

  .page-blog-8swin-latest-game-guide__faq-answer {
    padding: 15px 20px !important;
  }
}