/* style/slot-games.css */

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

.page-slot-games {
  font-family: 'Arial', sans-serif;
  background-color: var(--page-slot-games-background);
  color: var(--page-slot-games-text-main);
  line-height: 1.6;
}

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

.page-slot-games__section-title {
  font-size: clamp(2em, 5vw, 2.8em);
  color: var(--page-slot-games-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-slot-games__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--page-slot-games-text-secondary);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-slot-games__cta-center {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games__btn-primary {
  background: var(--page-slot-games-button-gradient);
  color: var(--page-slot-games-text-main);
  border: 2px solid var(--page-slot-games-primary-color);
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
  filter: brightness(1.1);
}

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: var(--page-slot-games-gold);
  border: 2px solid var(--page-slot-games-gold);
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.2);
}

.page-slot-games__btn-secondary:hover {
  transform: translateY(-3px);
  background-color: rgba(242, 193, 78, 0.1);
  box-shadow: 0 6px 15px rgba(242, 193, 78, 0.4);
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
  background-color: var(--page-slot-games-deep-green);
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 600px; /* Limit height for aesthetic */
  margin-bottom: 40px;
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-slot-games__main-title {
  font-size: clamp(2.5em, 6vw, 3.8em);
  color: var(--page-slot-games-gold);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-slot-games__hero-description {
  font-size: 1.3em;
  color: var(--page-slot-games-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Zabet Section */
.page-slot-games__why-zabet-section,
.page-slot-games__game-types-section,
.page-slot-games__promotions-section,
.page-slot-games__faq-section {
  padding: 80px 0;
  background-color: var(--page-slot-games-background);
}

.page-slot-games__dark-section {
  background-color: var(--page-slot-games-deep-green);
  padding: 80px 0;
}

.page-slot-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-slot-games__feature-card {
  background-color: var(--page-slot-games-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--page-slot-games-border);
}

.page-slot-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__feature-title {
  font-size: 1.6em;
  color: var(--page-slot-games-gold);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-slot-games__feature-description {
  font-size: 1em;
  color: var(--page-slot-games-text-secondary);
}

/* Game Types Section */
.page-slot-games__game-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-slot-games__game-type-card {
  background-color: var(--page-slot-games-card-bg);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--page-slot-games-border);
  transition: transform 0.3s ease;
}

.page-slot-games__game-type-card:hover {
  transform: translateY(-5px);
}

.page-slot-games__game-type-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--page-slot-games-divider);
}

.page-slot-games__game-type-title {
  font-size: 1.8em;
  color: var(--page-slot-games-gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-slot-games__game-type-description {
  font-size: 1em;
  color: var(--page-slot-games-text-secondary);
  margin-bottom: 20px;
}

/* Guide Section */
.page-slot-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-slot-games__guide-step {
  background-color: var(--page-slot-games-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--page-slot-games-border);
}

.page-slot-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--page-slot-games-button-gradient);
  color: var(--page-slot-games-text-main);
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(17, 168, 78, 0.4);
}

.page-slot-games__step-title {
  font-size: 1.6em;
  color: var(--page-slot-games-gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-slot-games__step-description {
  font-size: 1em;
  color: var(--page-slot-games-text-secondary);
}

/* Promotions Section */
.page-slot-games__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-slot-games__promo-card {
  background-color: var(--page-slot-games-card-bg);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--page-slot-games-border);
  transition: transform 0.3s ease;
}

.page-slot-games__promo-card:hover {
  transform: translateY(-5px);
}

.page-slot-games__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--page-slot-games-divider);
}

.page-slot-games__promo-title {
  font-size: 1.8em;
  color: var(--page-slot-games-gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-slot-games__promo-description {
  font-size: 1em;
  color: var(--page-slot-games-text-secondary);
  margin-bottom: 20px;
}

/* Tips Section */
.page-slot-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slot-games__tip-item {
  background-color: var(--page-slot-games-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-slot-games-border);
  text-align: center;
}

.page-slot-games__tip-title {
  font-size: 1.6em;
  color: var(--page-slot-games-gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-slot-games__tip-description {
  font-size: 1em;
  color: var(--page-slot-games-text-secondary);
}

/* FAQ Section */
.page-slot-games__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__faq-item {
  background-color: var(--page-slot-games-card-bg);
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--page-slot-games-border);
  overflow: hidden;
}

.page-slot-games__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--page-slot-games-text-main);
  transition: background-color 0.3s ease;
}

.page-slot-games__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for Webkit */
}

.page-slot-games__faq-item summary:hover {
  background-color: var(--page-slot-games-deep-green);
}

.page-slot-games__faq-qtext {
  flex-grow: 1;
  color: var(--page-slot-games-text-main);
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  font-weight: 900;
  color: var(--page-slot-games-gold);
  margin-left: 15px;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  content: '−'; /* Change to minus when open (JS fallback) */
}

.page-slot-games__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: var(--page-slot-games-text-secondary);
}

/* Conclusion Section */
.page-slot-games__conclusion-section {
  padding: 80px 0;
  text-align: center;
}

.page-slot-games__conclusion-section .page-slot-games__text-block {
  margin-bottom: 30px;
}

/* General Image styles for responsiveness */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__hero-image {
    max-height: 500px;
  }
  .page-slot-games__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-slot-games__hero-description {
    font-size: 1.1em;
  }
  .page-slot-games__section-title {
    font-size: clamp(1.8em, 4.5vw, 2.5em);
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-bottom: 40px;
  }
  .page-slot-games__hero-image {
    max-height: 400px;
  }
  .page-slot-games__hero-content {
    padding: 0 15px;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em) !important;
  }
  .page-slot-games__hero-description {
    font-size: 1em;
  }
  .page-slot-games__cta-buttons,
  .page-slot-games__cta-center {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-slot-games__why-zabet-section,
  .page-slot-games__game-types-section,
  .page-slot-games__guide-section,
  .page-slot-games__promotions-section,
  .page-slot-games__tips-section,
  .page-slot-games__faq-section,
  .page-slot-games__conclusion-section {
    padding: 50px 0;
  }
  .page-slot-games__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__text-block {
    font-size: 0.95em;
  }
  .page-slot-games__feature-grid,
  .page-slot-games__game-type-grid,
  .page-slot-games__guide-steps,
  .page-slot-games__promo-cards,
  .page-slot-games__tips-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__game-type-image,
  .page-slot-games__promo-image {
    height: 180px;
  }
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__hero-section,
  .page-slot-games__why-zabet-section,
  .page-slot-games__game-types-section,
  .page-slot-games__guide-section,
  .page-slot-games__promotions-section,
  .page-slot-games__tips-section,
  .page-slot-games__faq-section,
  .page-slot-games__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__hero-section {
    padding-top: 10px !important;
  }
  .page-slot-games__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-slot-games__main-title {
    font-size: clamp(1.5em, 8vw, 2em) !important;
  }
  .page-slot-games__section-title {
    font-size: clamp(1.5em, 6vw, 2em) !important;
  }
  .page-slot-games__hero-image {
    max-height: 300px;
  }
  .page-slot-games__feature-title,
  .page-slot-games__game-type-title,
  .page-slot-games__step-title,
  .page-slot-games__promo-title,
  .page-slot-games__tip-title {
    font-size: 1.4em;
  }
  .page-slot-games__faq-item summary {
    font-size: 1.1em;
  }
  .page-slot-games__game-type-image,
  .page-slot-games__promo-image {
    height: 150px;
  }
}