/* style/slot-games.css */

/* Custom Colors */
:root {
  --page-slot-games-bg: #08160F;
  --page-slot-games-card-bg: #11271B;
  --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-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

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

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

.page-slot-games__section {
  padding: 60px 0;
}

.page-slot-games__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--page-slot-games-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-slot-games__text-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: var(--page-slot-games-text-secondary);
  font-size: 17px;
}

.page-slot-games__card {
  background-color: var(--page-slot-games-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-slot-games-border);
  color: var(--page-slot-games-text-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px var(--page-slot-games-glow);
}

.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles header offset, this is decorative */
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-slot-games__hero-content {
  max-width: 900px;
  margin: 30px auto 0 auto;
  text-align: center;
  padding: 0 20px;
}

.page-slot-games__hero-title {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--page-slot-games-gold);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.page-slot-games__hero-description {
  font-size: 18px;
  color: var(--page-slot-games-text-main);
  margin-bottom: 40px;
}

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

.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: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games__btn-primary {
  background: var(--page-slot-games-btn-gradient);
  color: #ffffff;
  border: 2px solid var(--page-slot-games-deep-green);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5), 0 0 10px var(--page-slot-games-glow);
}

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

.page-slot-games__btn-secondary:hover {
  background-color: var(--page-slot-games-glow);
  color: var(--page-slot-games-card-bg);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: var(--page-slot-games-card-bg);
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-slot-games-border);
}

.page-slot-games__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-slot-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  min-height: 200px; /* Ensure minimum size */
}

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

.page-slot-games__feature-item {
  text-align: center;
  padding: 30px;
}

.page-slot-games__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
  object-fit: cover;
}

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

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

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

.page-slot-games__step-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games__step-title {
  font-size: 22px;
  color: var(--page-slot-games-gold);
  margin-bottom: 15px;
}

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

.page-slot-games__step-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

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

.page-slot-games__game-card {
  text-align: center;
  padding: 20px;
}

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

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

.page-slot-games__game-description {
  color: var(--page-slot-games-text-secondary);
}

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

.page-slot-games__strategy-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games__strategy-heading {
  font-size: 22px;
  color: var(--page-slot-games-gold);
  margin-bottom: 15px;
}

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

.page-slot-games__strategy-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-slot-games__dark-section {
  background-color: var(--page-slot-games-deep-green);
  color: var(--page-slot-games-text-main);
}

.page-slot-games__dark-section .page-slot-games__section-title {
  color: var(--page-slot-games-gold);
}

.page-slot-games__dark-section .page-slot-games__text-block {
  color: var(--page-slot-games-text-main);
}

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

.page-slot-games__security-item {
  background-color: var(--page-slot-games-card-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--page-slot-games-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__security-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

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

.page-slot-games__security-item p {
  color: var(--page-slot-games-text-secondary);
}

.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 {
  text-align: center;
  padding: 20px;
}

.page-slot-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-slot-games__promo-description {
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__btn-text {
  display: inline-block;
  color: var(--page-slot-games-glow);
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.page-slot-games__btn-text:hover {
  color: var(--page-slot-games-gold);
}

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

.page-slot-games__support-item, .page-slot-games__payment-item {
  text-align: center;
}

.page-slot-games__support-icon, .page-slot-games__payment-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-slot-games__support-title, .page-slot-games__payment-title {
  font-size: 22px;
  color: var(--page-slot-games-gold);
  margin-bottom: 10px;
}

.page-slot-games__support-item p, .page-slot-games__payment-item p {
  color: var(--page-slot-games-text-secondary);
}

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

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

.page-slot-games__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 30px;
  font-size: 20px;
  font-weight: bold;
  color: var(--page-slot-games-gold);
  background-color: var(--page-slot-games-deep-green);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.page-slot-games__faq-item summary:hover {
  background-color: #1a5a3c; /* Slightly darker green on hover */
}

.page-slot-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
}

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

.page-slot-games__cta-final-content {
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__hero-image-wrapper {
    max-height: 500px;
  }
  .page-slot-games__hero-title {
    font-size: clamp(30px, 4.5vw, 50px);
  }
  .page-slot-games__hero-description {
    font-size: 17px;
  }
  .page-slot-games__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
  .page-slot-games__text-block {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__container {
    padding: 0 15px;
  }
  .page-slot-games__section {
    padding: 40px 0;
  }
  .page-slot-games__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-slot-games__hero-image-wrapper {
    max-height: 400px;
  }
  .page-slot-games__hero-title {
    font-size: clamp(28px, 6vw, 40px);
  }
  .page-slot-games__hero-description {
    font-size: 16px;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-slot-games__video-wrapper {
    margin: 30px auto;
  }
  .page-slot-games__grid-features,
  .page-slot-games__step-by-step,
  .page-slot-games__game-grid,
  .page-slot-games__strategy-list,
  .page-slot-games__security-grid,
  .page-slot-games__promo-grid,
  .page-slot-games__support-payment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__feature-icon,
  .page-slot-games__step-image,
  .page-slot-games__game-image,
  .page-slot-games__strategy-image,
  .page-slot-games__security-icon,
  .page-slot-games__promo-image,
  .page-slot-games__support-icon,
  .page-slot-games__payment-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-slot-games__card {
    padding: 20px;
  }
  .page-slot-games__section-title {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 30px;
  }
  .page-slot-games__text-block {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .page-slot-games__faq-item summary {
    padding: 15px 20px;
    font-size: 18px;
  }
  .page-slot-games__faq-answer {
    padding: 15px 20px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__hero-image-wrapper {
    max-height: 300px;
  }
  .page-slot-games__hero-title {
    font-size: clamp(26px, 7vw, 36px);
  }
  .page-slot-games__hero-description {
    font-size: 15px;
  }
  .page-slot-games__section-title {
    font-size: clamp(22px, 6vw, 28px);
  }
  .page-slot-games__faq-item summary {
    font-size: 16px;
  }
  .page-slot-games__faq-answer {
    font-size: 15px;
  }
}