/* style/blog-top-slot-games-tx68.css */

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

/* Base styles for the page */
.page-blog-top-slot-games-tx68 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--tx68-text-main); /* Default text color for dark sections */
  background-color: var(--tx68-background); /* Default background for dark sections */
}

.page-blog-top-slot-games-tx68__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section styles */
.page-blog-top-slot-games-tx68__hero-section,
.page-blog-top-slot-games-tx68__intro-section,
.page-blog-top-slot-games-tx68__why-choose-section,
.page-blog-top-slot-games-tx68__top-slots-section,
.page-blog-top-slot-games-tx68__how-to-play-section,
.page-blog-top-slot-games-tx68__promotions-section,
.page-blog-top-slot-games-tx68__tips-section,
.page-blog-top-slot-games-tx68__responsible-gaming-section,
.page-blog-top-slot-games-tx68__faq-section,
.page-blog-top-slot-games-tx68__conclusion-section,
.page-blog-top-slot-games-tx68__video-promo-section {
  padding: 60px 0;
  text-align: center;
}

/* Background and text color for dark sections */
.page-blog-top-slot-games-tx68__dark-bg {
  background-color: var(--tx68-background);
  color: var(--tx68-text-main);
}

/* Background and text color for light sections (defaulting to white for contrast) */
.page-blog-top-slot-games-tx68__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Headings */
.page-blog-top-slot-games-tx68__section-title {
  font-size: clamp(2em, 4vw, 3em); /* H1 font size with clamp */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-top-slot-games-tx68__sub-title {
  font-size: clamp(1.5em, 3vw, 2em);
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--tx68-gold-color);
}

.page-blog-top-slot-games-tx68__card-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--tx68-gold-color);
}

.page-blog-top-slot-games-tx68__slot-name {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-blog-top-slot-games-tx68__slot-name a {
  color: var(--tx68-text-main);
  text-decoration: none;
}

.page-blog-top-slot-games-tx68__slot-name a:hover {
  color: var(--tx68-gold-color);
}

.page-blog-top-slot-games-tx68__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: var(--tx68-text-secondary);
}

/* Buttons */
.page-blog-top-slot-games-tx68__btn-primary,
.page-blog-top-slot-games-tx68__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-top-slot-games-tx68__btn-primary {
  background: var(--tx68-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-top-slot-games-tx68__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-top-slot-games-tx68__btn-secondary {
  background: transparent;
  color: var(--tx68-gold-color);
  border: 2px solid var(--tx68-gold-color);
}

.page-blog-top-slot-games-tx68__btn-secondary:hover {
  background: var(--tx68-gold-color);
  color: var(--tx68-background);
  transform: translateY(-2px);
}

.page-blog-top-slot-games-tx68__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-blog-top-slot-games-tx68__cta-center {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

/* Hero section */
.page-blog-top-slot-games-tx68__hero-section {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding */
}

.page-blog-top-slot-games-tx68__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
}

.page-blog-top-slot-games-tx68__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-top-slot-games-tx68__hero-content {
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
}

.page-blog-top-slot-games-tx68__hero-title {
  color: var(--tx68-gold-color);
  font-size: clamp(2.5em, 5vw, 4em); /* Larger H1 for hero */
  margin-bottom: 15px;
  line-height: 1.1;
}

.page-blog-top-slot-games-tx68__hero-description {
  font-size: 1.2em;
  color: var(--tx68-text-main);
  margin-bottom: 30px;
}

/* Video promo section */
.page-blog-top-slot-games-tx68__video-promo-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--tx68-background);
    color: var(--tx68-text-main);
}

.page-blog-top-slot-games-tx68__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.page-blog-top-slot-games-tx68__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    cursor: pointer;
}

.page-blog-top-slot-games-tx68__video-cta {
    margin-top: 20px;
}

/* General content area with image */
.page-blog-top-slot-games-tx68__content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 40px;
}

.page-blog-top-slot-games-tx68__content-wrapper .page-blog-top-slot-games-tx68__text-block {
  flex: 1;
}

.page-blog-top-slot-games-tx68__content-wrapper .page-blog-top-slot-games-tx68__image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Feature cards */
.page-blog-top-slot-games-tx68__features-grid,
.page-blog-top-slot-games-tx68__promo-grid,
.page-blog-top-slot-games-tx68__responsible-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-top-slot-games-tx68__feature-card,
.page-blog-top-slot-games-tx68__promo-card,
.page-blog-top-slot-games-tx68__responsible-card {
  background-color: var(--tx68-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--tx68-text-main);
  border: 1px solid var(--tx68-border-color);
}

.page-blog-top-slot-games-tx68__feature-card p,
.page-blog-top-slot-games-tx68__promo-card p,
.page-blog-top-slot-games-tx68__responsible-card p {
    color: var(--tx68-text-secondary);
}

/* Slot game list */
.page-blog-top-slot-games-tx68__slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-top-slot-games-tx68__slot-card {
  background-color: var(--tx68-card-bg);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--tx68-text-main);
  border: 1px solid var(--tx68-border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-top-slot-games-tx68__slot-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Lists */
.page-blog-top-slot-games-tx68__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-blog-top-slot-games-tx68__list li {
  background-color: var(--tx68-card-bg);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  color: var(--tx68-text-main);
  border: 1px solid var(--tx68-border-color);
}

.page-blog-top-slot-games-tx68__list li strong {
  color: var(--tx68-gold-color);
  margin-right: 10px;
}

/* Full width image */
.page-blog-top-slot-games-tx68__image--full-width {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ section */
.page-blog-top-slot-games-tx68__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-blog-top-slot-games-tx68__faq-item {
  background-color: #f8f8f8; /* Light background for FAQ items */
  color: #333333; /* Dark text for FAQ items */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.page-blog-top-slot-games-tx68__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
  color: #333333;
}

.page-blog-top-slot-games-tx68__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-top-slot-games-tx68__faq-item[open] summary {
  background-color: #f0f0f0;
}

.page-blog-top-slot-games-tx68__faq-qtext {
  flex-grow: 1;
}

.page-blog-top-slot-games-tx68__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-top-slot-games-tx68__faq-item[open] .page-blog-top-slot-games-tx68__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-top-slot-games-tx68__faq-answer {
  padding: 15px 25px 20px;
  border-top: 1px solid #eee;
  font-size: 0.95em;
  line-height: 1.5;
  color: #555555;
}

/* Ensure content area images are at least 200px */
.page-blog-top-slot-games-tx68__content-wrapper .page-blog-top-slot-games-tx68__image,
.page-blog-top-slot-games-tx68__image--full-width,
.page-blog-top-slot-games-tx68__slot-image {
  min-width: 200px;
  min-height: 200px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-top-slot-games-tx68__section-title {
    font-size: 2em !important;
  }

  .page-blog-top-slot-games-tx68__sub-title {
    font-size: 1.5em !important;
  }

  .page-blog-top-slot-games-tx68__hero-title {
    font-size: 2.5em !important;
  }

  .page-blog-top-slot-games-tx68__hero-description {
    font-size: 1em !important;
  }

  .page-blog-top-slot-games-tx68__hero-section,
  .page-blog-top-slot-games-tx68__intro-section,
  .page-blog-top-slot-games-tx68__why-choose-section,
  .page-blog-top-slot-games-tx68__top-slots-section,
  .page-blog-top-slot-games-tx68__how-to-play-section,
  .page-blog-top-slot-games-tx68__promotions-section,
  .page-blog-top-slot-games-tx68__tips-section,
  .page-blog-top-slot-games-tx68__responsible-gaming-section,
  .page-blog-top-slot-games-tx68__faq-section,
  .page-blog-top-slot-games-tx68__conclusion-section,
  .page-blog-top-slot-games-tx68__video-promo-section {
    padding: 30px 0;
  }

  .page-blog-top-slot-games-tx68__video-promo-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-blog-top-slot-games-tx68__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll from content */
  }

  .page-blog-top-slot-games-tx68__content-wrapper {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .page-blog-top-slot-games-tx68__content-wrapper .page-blog-top-slot-games-tx68__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-top-slot-games-tx68__image--full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-top-slot-games-tx68__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-top-slot-games-tx68__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-top-slot-games-tx68__cta-buttons,
  .page-blog-top-slot-games-tx68__cta-center {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-top-slot-games-tx68__btn-primary,
  .page-blog-top-slot-games-tx68__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-top-slot-games-tx68__slot-list,
  .page-blog-top-slot-games-tx68__features-grid,
  .page-blog-top-slot-games-tx68__promo-grid,
  .page-blog-top-slot-games-tx68__responsible-features {
    grid-template-columns: 1fr;
  }

  .page-blog-top-slot-games-tx68__list {
    margin-left: 0;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-top-slot-games-tx68__list li {
    text-align: left;
  }

  .page-blog-top-slot-games-tx68__faq-list {
    padding-left: 15px;
    padding-right: 15px;
  }
}