/* style/blog-how-to-win-at-gwin-game.css */

/* General styles for the page */
.page-blog-how-to-win-at-gwin-game {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-blog-how-to-win-at-gwin-game__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-win-at-gwin-game__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #08160F; /* Background */
  overflow: hidden;
}

.page-blog-how-to-win-at-gwin-game__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-blog-how-to-win-at-gwin-game__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-how-to-win-at-gwin-game__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-win-at-gwin-game__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
}

.page-blog-how-to-win-at-gwin-game__description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-how-to-win-at-gwin-game__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main for contrast */
  border: none;
  cursor: pointer;
}

.page-blog-how-to-win-at-gwin-game__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Sections */
.page-blog-how-to-win-at-gwin-game__section {
  padding: 60px 0;
}

.page-blog-how-to-win-at-gwin-game__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-win-at-gwin-game__light-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-win-at-gwin-game__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-how-to-win-at-gwin-game__sub-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: #22C768; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-how-to-win-at-gwin-game__heading-four {
  font-size: 1.3rem;
  font-weight: 600;
  color: #57E38D; /* Glow */
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-blog-how-to-win-at-gwin-game__content-block p {
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-win-at-gwin-game__content-block a {
  color: #2AD16F; /* A vibrant green for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-how-to-win-at-gwin-game__content-block a:hover {
  color: #F2C14E; /* Gold on hover */
  text-decoration: underline;
}

.page-blog-how-to-win-at-gwin-game__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-win-at-gwin-game__list li {
  margin-bottom: 8px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-win-at-gwin-game__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-win-at-gwin-game__image--center {
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-win-at-gwin-game__image--left {
  float: left;
  margin-right: 25px;
  margin-bottom: 15px;
  max-width: 45%;
}

.page-blog-how-to-win-at-gwin-game__image--right {
  float: right;
  margin-left: 25px;
  margin-bottom: 15px;
  max-width: 45%;
}

/* Clearfix for floated images */
.page-blog-how-to-win-at-gwin-game__content-block::after {
  content: "";
  display: table;
  clear: both;
}

/* FAQ Section */
.page-blog-how-to-win-at-gwin-game__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-win-at-gwin-game__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-how-to-win-at-gwin-game__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-win-at-gwin-game__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-win-at-gwin-game__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-how-to-win-at-gwin-game__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #2AD16F; /* Button color for toggle */
  margin-left: 15px;
}

.page-blog-how-to-win-at-gwin-game__faq-item[open] .page-blog-how-to-win-at-gwin-game__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-how-to-win-at-gwin-game__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-win-at-gwin-game__faq-answer p {
  margin-bottom: 0;
}

/* Call to Action Group */
.page-blog-how-to-win-at-gwin-game__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-blog-how-to-win-at-gwin-game__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-win-at-gwin-game__cta-button--secondary {
  background: none;
  border: 2px solid #2AD16F; /* Button color */
  color: #2AD16F; /* Button color */
}

.page-blog-how-to-win-at-gwin-game__cta-button--secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #F2FFF6; /* Text Main */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-how-to-win-at-gwin-game__main-title {
    font-size: 2.8rem;
  }
  .page-blog-how-to-win-at-gwin-game__section-title {
    font-size: 2rem;
  }
  .page-blog-how-to-win-at-gwin-game__sub-title {
    font-size: 1.5rem;
  }
  .page-blog-how-to-win-at-gwin-game__image--left,
  .page-blog-how-to-win-at-gwin-game__image--right {
    max-width: 100%;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-win-at-gwin-game {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-how-to-win-at-gwin-game__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-how-to-win-at-gwin-game__hero-content {
    padding: 0 15px;
  }
  .page-blog-how-to-win-at-gwin-game__main-title {
    font-size: 2.2rem;
  }
  .page-blog-how-to-win-at-gwin-game__description {
    font-size: 1rem;
  }
  .page-blog-how-to-win-at-gwin-game__cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-how-to-win-at-gwin-game__cta-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-blog-how-to-win-at-gwin-game__section {
    padding: 40px 0;
  }
  .page-blog-how-to-win-at-gwin-game__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-blog-how-to-win-at-gwin-game__sub-title {
    font-size: 1.3rem;
  }
  .page-blog-how-to-win-at-gwin-game__heading-four {
    font-size: 1.1rem;
  }
  .page-blog-how-to-win-at-gwin-game__container,
  .page-blog-how-to-win-at-gwin-game__content-block {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-how-to-win-at-gwin-game img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-how-to-win-at-gwin-game__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog-how-to-win-at-gwin-game__faq-toggle {
    font-size: 1.2rem;
  }
  .page-blog-how-to-win-at-gwin-game__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-blog-how-to-win-at-gwin-game__image--left,
  .page-blog-how-to-win-at-gwin-game__image--right {
    float: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 100%;
  }
}