/* style/slot-games.css */

/* Custom Colors */
:root {
  --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;
}

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

/* Typography */
.page-slot-games h1, .page-slot-games h2, .page-slot-games h3 {
  color: var(--page-slot-games-text-main);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-slot-games h1 {
  /* font-size: clamp(2.5rem, 5vw, 3.5rem); */
  font-weight: 900;
}

.page-slot-games h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 25px;
  text-align: center;
}

.page-slot-games h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 15px;
}

.page-slot-games p {
  margin-bottom: 15px;
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games a {
  color: var(--page-slot-games-glow);
  text-decoration: none;
}

.page-slot-games a:hover {
  text-decoration: underline;
}

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

.page-slot-games__section-title {
  margin-bottom: 40px;
  padding-top: 20px;
  color: var(--page-slot-games-text-main);
}

.page-slot-games__text-block {
  margin-bottom: 20px;
}

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

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}

.page-slot-games__hero-content {
  max-width: 900px;
  padding: 30px 20px;
  background: rgba(8, 22, 15, 0.8);
  border-radius: 10px;
  margin-top: -100px; /* Pull content up over image slightly for visual flow */
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-slot-games__hero-title {
  color: var(--page-slot-games-gold);
  margin-bottom: 20px;
}

.page-slot-games__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-slot-games__btn-primary {
  background: var(--page-slot-games-button-gradient);
  color: var(--page-slot-games-text-main);
  border: none;
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-slot-games__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(42, 209, 111, 0.6);
}

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: var(--page-slot-games-glow);
  border: 2px solid var(--page-slot-games-glow);
}

.page-slot-games__btn-secondary:hover {
  background-color: var(--page-slot-games-glow);
  color: var(--page-slot-games-background);
  transform: translateY(-2px);
}

.page-slot-games__cta-buttons--centered {
  margin-top: 40px;
  text-align: center;
}

/* Introduction Section */
.page-slot-games__introduction-section {
  padding: 60px 0;
}

.page-slot-games__introduction-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Game Types Section */
.page-slot-games__game-types-section {
  padding: 60px 0;
  background-color: var(--page-slot-games-background);
}

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

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

.page-slot-games__game-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-slot-games__card-title {
  color: var(--page-slot-games-gold);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-slot-games__card-text {
  color: var(--page-slot-games-text-secondary);
  font-size: 0.95em;
}

/* Guide Section */
.page-slot-games__guide-section {
  padding: 60px 0;
}

.page-slot-games__guide-list {
  max-width: 900px;
  margin: 0 auto 30px auto;
  padding-left: 25px;
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__guide-list li {
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-slot-games__guide-list strong {
  color: var(--page-slot-games-text-main);
}

.page-slot-games__guide-list ul {
  padding-left: 20px;
  margin-top: 5px;
}

.page-slot-games__guide-list ul li {
  margin-bottom: 5px;
}

/* Promotions Section */
.page-slot-games__promotions-section {
  padding: 60px 0;
  background-color: var(--page-slot-games-background);
}

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

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

.page-slot-games__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Security Section */
.page-slot-games__security-section {
  padding: 60px 0;
}

.page-slot-games__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-slot-games__feature-item {
  background-color: var(--page-slot-games-card-bg);
  border: 1px solid var(--page-slot-games-border);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__feature-icon {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.page-slot-games__feature-title {
  color: var(--page-slot-games-gold);
  font-size: 1.3em;
  margin-bottom: 10px;
}

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

/* FAQ Section */
.page-slot-games__faq-section {
  padding: 60px 0;
  background-color: var(--page-slot-games-background);
}

.page-slot-games__faq-list {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 40px;
}

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

.page-slot-games__faq-item[open] {
  background-color: var(--page-slot-games-deep-green);
  border-color: var(--page-slot-games-glow);
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--page-slot-games-text-main);
  list-style: none;
}

.page-slot-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games__faq-qtext {
  flex-grow: 1;
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-slot-games-glow);
}

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

.page-slot-games__faq-answer p {
  margin-bottom: 10px;
}

.page-slot-games__faq-answer .page-slot-games__faq-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 15px;
  border-radius: 8px;
}

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

.page-slot-games__conclusion-section p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__container {
    padding: 0 15px;
  }

  .page-slot-games h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-slot-games h2 {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .page-slot-games h3 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
  }

  .page-slot-games__hero-section {
    padding-bottom: 40px;
  }

  .page-slot-games__hero-image {
    max-height: 400px;
  }

  .page-slot-games__hero-content {
    margin-top: -60px;
    padding: 20px;
  }

  .page-slot-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.9em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-slot-games__cta-buttons,
  .page-slot-games__button-group,
  .page-slot-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }

  .page-slot-games__game-type-grid,
  .page-slot-games__promotion-grid,
  .page-slot-games__security-features {
    grid-template-columns: 1fr;
  }

  .page-slot-games__game-type-card,
  .page-slot-games__promotion-card,
  .page-slot-games__feature-item {
    padding: 20px;
  }

  .page-slot-games__card-image,
  .page-slot-games__feature-icon {
    height: 150px;
  }

  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__video-section {
    padding-top: 10px !important;
  }
}

/* Ensure content area images are not too small */
.page-slot-games__game-type-card .page-slot-games__card-image,
.page-slot-games__promotion-card .page-slot-games__card-image,
.page-slot-games__feature-item .page-slot-games__feature-icon,
.page-slot-games__faq-answer .page-slot-games__faq-image {
  min-width: 200px;
  min-height: 200px;
}

/* No CSS filters allowed for images */
.page-slot-games img {
  filter: none;
}