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

.page-slot-games {
  background-color: var(--vb79-bg-main);
  color: var(--vb79-text-main);
  font-family: 'Arial', sans-serif;
  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 {
  padding: 60px 0;
  border-bottom: 1px solid var(--vb79-divider);
}

.page-slot-games__section:last-of-type {
  border-bottom: none;
}

.page-slot-games__section-title {
  color: var(--vb79-gold);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.3);
}

.page-slot-games__main-title {
  color: var(--vb79-gold);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-slot-games__description {
  font-size: clamp(16px, 2vw, 20px);
  text-align: center;
  margin-bottom: 30px;
  color: var(--vb79-text-secondary);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--vb79-text-main);
}

.page-slot-games__text-block strong {
  color: var(--vb79-gold);
}

.page-slot-games__text-block em {
  color: var(--vb79-green-secondary);
  font-style: normal;
}

.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: var(--vb79-bg-main);
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

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

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

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

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

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

.page-slot-games__btn-primary {
  background: var(--vb79-button-gradient);
  color: var(--vb79-text-main);
  border: none;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-slot-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-slot-games__btn-secondary {
  background: transparent;
  color: var(--vb79-green-secondary);
  border: 2px solid var(--vb79-green-secondary);
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.2);
}

.page-slot-games__btn-secondary:hover {
  background-color: var(--vb79-green-secondary);
  color: var(--vb79-bg-main);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.4);
}

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

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

.page-slot-games__card {
  background-color: var(--vb79-bg-card);
  border: 1px solid var(--vb79-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px; /* Ensure cards have minimum height */
}

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

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

.page-slot-games__card-title {
  color: var(--vb79-gold);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-slot-games__card-text {
  color: var(--vb79-text-secondary);
  font-size: 16px;
  flex-grow: 1;
}

.page-slot-games__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-slot-games__step-item {
  background-color: var(--vb79-bg-card);
  border: 1px solid var(--vb79-border);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 70px;
}

.page-slot-games__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 30px;
  background-color: var(--vb79-green-primary);
  color: var(--vb79-text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

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

.page-slot-games__step-text {
  color: var(--vb79-text-secondary);
  font-size: 16px;
}

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

.page-slot-games__security-item {
  background-color: var(--vb79-bg-card);
  border: 1px solid var(--vb79-border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games__item-title {
  color: var(--vb79-gold);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-slot-games__item-text {
  color: var(--vb79-text-secondary);
  font-size: 16px;
}

.page-slot-games__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-slot-games__mobile-text {
  flex: 1;
  min-width: 300px;
}

.page-slot-games__mobile-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-slot-games__image-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__faq-list {
  margin-top: 40px;
}

.page-slot-games__faq-item {
  background-color: var(--vb79-bg-card);
  border: 1px solid var(--vb79-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 700;
  color: var(--vb79-text-main);
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  list-style: none; /* For details/summary */
}

.page-slot-games__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-slot-games__faq-item details > summary {
  list-style: none;
}

.page-slot-games__faq-question:hover {
  background-color: var(--vb79-deep-green);
}

.page-slot-games__faq-qtext {
  color: var(--vb79-text-main);
}

.page-slot-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: var(--vb79-green-secondary);
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  content: '−';
}

.page-slot-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: var(--vb79-text-secondary);
  line-height: 1.6;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-slot-games__container {
    padding: 0 15px !important;
  }

  .page-slot-games__section {
    padding: 40px 0 !important;
  }

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

  .page-slot-games__main-title {
    font-size: clamp(28px, 8vw, 42px) !important;
    margin-bottom: 15px;
  }

  .page-slot-games__description {
    font-size: 15px !important;
    margin-bottom: 25px;
  }

  .page-slot-games__section-title {
    font-size: clamp(24px, 7vw, 36px) !important;
    margin-bottom: 30px;
  }

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

  .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;
    padding: 12px 20px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games__features-grid,
  .page-slot-games__game-list,
  .page-slot-games__promo-grid,
  .page-slot-games__security-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__card {
    padding: 20px;
    min-height: unset;
  }

  .page-slot-games__card-image {
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games__card-title {
    font-size: 20px;
  }

  .page-slot-games__step-item {
    padding-left: 60px;
  }

  .page-slot-games__step-item::before {
    width: 35px;
    height: 35px;
    font-size: 18px;
    left: 15px;
    top: 25px;
  }

  .page-slot-games__mobile-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-slot-games__mobile-text,
  .page-slot-games__mobile-image {
    min-width: unset;
    width: 100%;
  }

  .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-image-wrapper,
  .page-slot-games__cta-buttons,
  .page-slot-games__button-group,
  .page-slot-games__btn-container,
  .page-slot-games__video-section,
  .page-slot-games__video-container,
  .page-slot-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-slot-games__video-section {
    padding-top: 10px !important; /* body has padding-top, this is decorative */
  }

  /* Ensure content area images are at least 200px if they were smaller */
  .page-slot-games img:not(.page-slot-games__hero-image):not(.page-slot-games__image-fluid) {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}