/* style/slot-games.css */

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

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

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

.page-slot-games__dark-bg {
  background-color: var(--bwin-background);
  color: var(--bwin-text-main);
}

.page-slot-games__light-bg {
  background-color: var(--bwin-text-main);
  color: #333333; /* Dark text for light background */
}

.page-slot-games__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--bwin-gold);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

/* 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; /* Small top padding, more bottom */
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for desktop */
  overflow: hidden;
}

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

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(8, 22, 15, 0.7); /* Semi-transparent dark background for text */
  border-radius: 10px;
  margin-top: 20px;
  box-sizing: border-box;
}

.page-slot-games__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 800;
  color: var(--bwin-gold);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.page-slot-games__description {
  font-size: 1.2em;
  color: var(--bwin-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-slot-games__btn-primary {
  background: var(--bwin-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 20px var(--bwin-glow);
}

.page-slot-games__btn-secondary {
  background: #ffffff;
  color: var(--bwin-primary-color);
  border: 2px solid var(--bwin-primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games__btn-secondary:hover {
  background: var(--bwin-primary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

.page-slot-games__content-image {
  display: block;
  margin: 40px auto 20px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.page-slot-games__features-section {
  padding: 80px 0;
}

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

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

.page-slot-games__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 25px var(--bwin-glow);
}

.page-slot-games__card-title {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--bwin-gold);
  margin-bottom: 15px;
}

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

.page-slot-games__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* Game Types Section */
.page-slot-games__game-types-section {
  padding: 60px 0;
}

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

.page-slot-games__game-card {
  background-color: var(--bwin-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--bwin-border);
  transition: transform 0.3s ease;
}

.page-slot-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 25px var(--bwin-glow);
}

.page-slot-games__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-slot-games__game-card .page-slot-games__card-title,
.page-slot-games__game-card .page-slot-games__card-text {
  padding: 0 20px;
  text-align: left;
}

.page-slot-games__game-card .page-slot-games__card-title {
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-slot-games__game-card .page-slot-games__card-text {
  margin-bottom: 20px;
}

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

.page-slot-games__numbered-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__numbered-list li {
  background-color: var(--bwin-card-bg);
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  border-left: 5px solid var(--bwin-primary-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  counter-increment: list-counter;
  position: relative;
  text-align: left;
}

.page-slot-games__numbered-list li::before {
  content: counter(list-counter);
  position: absolute;
  left: -15px; /* Adjust as needed */
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--bwin-primary-color);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-slot-games__list-title {
  font-size: 1.3em;
  color: var(--bwin-gold);
  margin-bottom: 10px;
  margin-left: 30px; /* Space for counter */
}

.page-slot-games__list-text {
  color: var(--bwin-text-secondary);
  font-size: 1em;
  margin-left: 30px; /* Space for counter */
}

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

.page-slot-games__bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__bullet-list li {
  background-color: var(--bwin-card-bg);
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  border-left: 5px solid var(--bwin-secondary-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: left;
}

.page-slot-games__bullet-list li::before {
  content: '◆'; /* Custom bullet point */
  position: absolute;
  left: 10px;
  top: 25px;
  color: var(--bwin-secondary-color);
  font-size: 1.2em;
}

.page-slot-games__bullet-list .page-slot-games__list-title,
.page-slot-games__bullet-list .page-slot-games__list-text {
  margin-left: 30px;
}

/* Promotions Section */
.page-slot-games__promotions-section {
  padding: 80px 0;
}

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

.page-slot-games__promo-card {
  background-color: var(--bwin-card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--bwin-border);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 25px var(--bwin-glow);
}

.page-slot-games__promo-card .page-slot-games__card-title {
  margin-bottom: 15px;
}

.page-slot-games__promo-card .page-slot-games__card-text {
  flex-grow: 1;
  margin-bottom: 20px;
}

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

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

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

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--bwin-deep-green);
  color: var(--bwin-gold);
  border-bottom: 1px solid var(--bwin-divider);
  list-style: none; /* For details/summary */
}

.page-slot-games__faq-item[open] .page-slot-games__faq-question {
  border-bottom: 1px solid var(--bwin-border);
}

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

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games__faq-answer {
  padding: 20px 25px;
  font-size: 1.1em;
  color: var(--bwin-text-secondary);
}

.page-slot-games__faq-answer p {
  margin-bottom: 0;
  text-align: left;
}

/* Final CTA Section */
.page-slot-games__cta-final-section {
  padding: 80px 0;
  text-align: center;
}

.page-slot-games__cta-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  background: rgba(8, 22, 15, 0.7); /* Semi-transparent dark background for text */
  border-radius: 10px;
  box-sizing: border-box;
}

.page-slot-games__cta-final-section .page-slot-games__section-title {
  color: var(--bwin-gold);
}

.page-slot-games__cta-final-section .page-slot-games__text-block {
  color: var(--bwin-text-main);
  margin-bottom: 40px;
}

/* Global image styles */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__hero-image-wrapper {
    max-height: 500px;
  }
  .page-slot-games__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-slot-games__section-title {
    font-size: 2em;
  }
  .page-slot-games__feature-grid, .page-slot-games__game-grid, .page-slot-games__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slot-games__container,
  .page-slot-games__hero-content,
  .page-slot-games__numbered-list li,
  .page-slot-games__bullet-list li,
  .page-slot-games__cta-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-slot-games__hero-section,
  .page-slot-games__intro-section,
  .page-slot-games__features-section,
  .page-slot-games__game-types-section,
  .page-slot-games__guide-section,
  .page-slot-games__strategy-section,
  .page-slot-games__promotions-section,
  .page-slot-games__faq-section,
  .page-slot-games__cta-final-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-slot-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }
  
  .page-slot-games__hero-image-wrapper {
    max-height: 300px;
  }

  .page-slot-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-slot-games__description {
    font-size: 1em;
  }

  .page-slot-games__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-slot-games__text-block {
    font-size: 0.95em;
  }

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

  .page-slot-games__game-image {
    height: 200px; /* Adjust height for mobile */
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games a[class*="button"],
  .page-slot-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

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

  .page-slot-games__numbered-list li::before {
    left: 5px;
  }

  .page-slot-games__numbered-list .page-slot-games__list-title,
  .page-slot-games__numbered-list .page-slot-games__list-text,
  .page-slot-games__bullet-list .page-slot-games__list-title,
  .page-slot-games__bullet-list .page-slot-games__list-text {
    margin-left: 20px;
  }

  .page-slot-games__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-slot-games__faq-answer {
    font-size: 0.95em;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__hero-section {
    padding-bottom: 30px !important;
  }
  .page-slot-games__hero-content {
    padding: 25px 15px;
    margin-top: 15px;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.6em, 8vw, 2em);
  }
  .page-slot-games__section-title {
    font-size: 1.6em;
  }
  .page-slot-games__feature-card,
  .page-slot-games__game-card,
  .page-slot-games__promo-card {
    padding: 20px;
  }
}