/* style/blog-0033win-game-strategy-tips.css */

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

.page-blog-0033win-game-strategy-tips {
  background-color: var(--background-dark);
  color: var(--text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-0033win-game-strategy-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-0033win-game-strategy-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--background-dark);
  text-align: center;
}

.page-blog-0033win-game-strategy-tips__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-0033win-game-strategy-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-0033win-game-strategy-tips__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-0033win-game-strategy-tips__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--gold-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-blog-0033win-game-strategy-tips__description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-0033win-game-strategy-tips__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-0033win-game-strategy-tips__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-blog-0033win-game-strategy-tips__cta-button--small {
    padding: 12px 25px;
    font-size: 1rem;
    margin-top: 20px;
}

.page-blog-0033win-game-strategy-tips__cta-button--primary {
  background: var(--button-gradient);
  color: var(--text-main);
}

.page-blog-0033win-game-strategy-tips__cta-button--secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.page-blog-0033win-game-strategy-tips__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--text-main);
}

/* General Section Styling */
.page-blog-0033win-game-strategy-tips__intro-section,
.page-blog-0033win-game-strategy-tips__content-area,
.page-blog-0033win-game-strategy-tips__faq-section,
.page-blog-0033win-game-strategy-tips__conclusion-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-0033win-game-strategy-tips__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-blog-0033win-game-strategy-tips__text-block {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: justify;
  margin-bottom: 30px;
}

/* Video Section */
.page-blog-0033win-game-strategy-tips__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: var(--card-background);
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  width: 100%; /* Desktop default for flex-item */
}

.page-blog-0033win-game-strategy-tips__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block; /* Ensure it behaves like a block element */
}

/* Grid Layout for Cards */
.page-blog-0033win-game-strategy-tips__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-0033win-game-strategy-tips__card {
  background-color: var(--card-background);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-blog-0033win-game-strategy-tips__card:hover {
  transform: translateY(-5px);
}

.page-blog-0033win-game-strategy-tips__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-0033win-game-strategy-tips__card-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-0033win-game-strategy-tips__card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Dark Section */
.page-blog-0033win-game-strategy-tips__dark-section {
  background-color: var(--deep-green);
}

.page-blog-0033win-game-strategy-tips__dark-section .page-blog-0033win-game-strategy-tips__section-title {
  color: var(--gold-color);
}

.page-blog-0033win-game-strategy-tips__dark-section .page-blog-0033win-game-strategy-tips__text-block,
.page-blog-0033win-game-strategy-tips__dark-section .page-blog-0033win-game-strategy-tips__promotions-list li {
  color: var(--text-main);
}

/* Game Strategies */
.page-blog-0033win-game-strategy-tips__game-strategies {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.page-blog-0033win-game-strategy-tips__strategy-item {
  background-color: var(--card-background);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-blog-0033win-game-strategy-tips__strategy-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-0033win-game-strategy-tips__strategy-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-blog-0033win-game-strategy-tips__strategy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-0033win-game-strategy-tips__strategy-list li {
  background-color: rgba(var(--primary-color-rgb), 0.05);
  border-left: 4px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: var(--text-main);
  font-size: 1rem;
}

.page-blog-0033win-game-strategy-tips__strategy-list li strong {
  color: var(--gold-color);
}

/* Advanced Tips & Promotions List */
.page-blog-0033win-game-strategy-tips__advanced-tips,
.page-blog-0033win-game-strategy-tips__promotions-list,
.page-blog-0033win-game-strategy-tips__responsible-list {
  list-style: disc;
  padding-left: 25px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-0033win-game-strategy-tips__advanced-tips li,
.page-blog-0033win-game-strategy-tips__promotions-list li,
.page-blog-0033win-game-strategy-tips__responsible-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-blog-0033win-game-strategy-tips__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-blog-0033win-game-strategy-tips__faq-list {
  margin-top: 30px;
}

.page-blog-0033win-game-strategy-tips__faq-item {
  background-color: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-0033win-game-strategy-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-blog-0033win-game-strategy-tips__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-0033win-game-strategy-tips__faq-question:hover {
  background-color: rgba(var(--primary-color-rgb), 0.2);
}

.page-blog-0033win-game-strategy-tips__faq-qtext {
  flex-grow: 1;
}

.page-blog-0033win-game-strategy-tips__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-0033win-game-strategy-tips__faq-item[open] .page-blog-0033win-game-strategy-tips__faq-toggle {
  content: '−';
}

.page-blog-0033win-game-strategy-tips__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  background-color: var(--card-background);
  border-top: 1px solid var(--divider-color);
}

.page-blog-0033win-game-strategy-tips__faq-answer p {
  margin: 0;
}

/* Conclusion Section */
.page-blog-0033win-game-strategy-tips__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-blog-0033win-game-strategy-tips__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}


/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-0033win-game-strategy-tips__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-0033win-game-strategy-tips__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
  .page-blog-0033win-game-strategy-tips__hero-section,
  .page-blog-0033win-game-strategy-tips__intro-section,
  .page-blog-0033win-game-strategy-tips__content-area,
  .page-blog-0033win-game-strategy-tips__faq-section,
  .page-blog-0033win-game-strategy-tips__conclusion-section {
    padding: 40px 0;
  }
  .page-blog-0033win-game-strategy-tips__container {
    padding: 0 15px;
  }
  .page-blog-0033win-game-strategy-tips__card-image {
    height: 180px;
  }
  .page-blog-0033win-game-strategy-tips__strategy-image {
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  .page-blog-0033win-game-strategy-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-0033win-game-strategy-tips__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-blog-0033win-game-strategy-tips__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-blog-0033win-game-strategy-tips__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-0033win-game-strategy-tips__description {
    font-size: 1rem;
  }

  .page-blog-0033win-game-strategy-tips__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 15px;
  }
  
  .page-blog-0033win-game-strategy-tips__cta-button--small {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-blog-0033win-game-strategy-tips__intro-section,
  .page-blog-0033win-game-strategy-tips__content-area,
  .page-blog-0033win-game-strategy-tips__faq-section,
  .page-blog-0033win-game-strategy-tips__conclusion-section {
    padding: 30px 0;
  }

  .page-blog-0033win-game-strategy-tips__container,
  .page-blog-0033win-game-strategy-tips__video-wrapper,
  .page-blog-0033win-game-strategy-tips__card,
  .page-blog-0033win-game-strategy-tips__strategy-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-0033win-game-strategy-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-0033win-game-strategy-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-0033win-game-strategy-tips__card-image {
    height: auto; /* Allow height to adjust */
  }

  .page-blog-0033win-game-strategy-tips__strategy-title {
    font-size: 1.5rem;
  }

  .page-blog-0033win-game-strategy-tips__strategy-image {
    max-height: 250px;
  }

  .page-blog-0033win-game-strategy-tips__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-0033win-game-strategy-tips__faq-toggle {
    font-size: 1.2rem;
  }

  .page-blog-0033win-game-strategy-tips__button-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-0033win-game-strategy-tips__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .page-blog-0033win-game-strategy-tips__section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .page-blog-0033win-game-strategy-tips__cta-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  .page-blog-0033win-game-strategy-tips__card-title {
    font-size: 1.1rem;
  }
  .page-blog-0033win-game-strategy-tips__card-text {
    font-size: 0.85rem;
  }
  .page-blog-0033win-game-strategy-tips__strategy-title {
    font-size: 1.3rem;
  }
  .page-blog-0033win-game-strategy-tips__strategy-list li {
    font-size: 0.9rem;
  }
  .page-blog-0033win-game-strategy-tips__faq-question {
    font-size: 0.9rem;
  }
  .page-blog-0033win-game-strategy-tips__faq-answer {
    font-size: 0.85rem;
  }
}