/* style/slot-games.css */

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

/* Base styles for the page content */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: var(--vz999-text-main); /* Default text color for dark background */
  background-color: var(--vz999-bg); /* Default background color */
}

.page-slot-games__highlight {
  color: var(--vz999-gold);
  font-weight: bold;
}

/* Sections */
.page-slot-games__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-slot-games__light-bg {
  background-color: #F2FFF6; /* Lighter background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-slot-games__light-bg .page-slot-games__card {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-slot-games__light-bg .page-slot-games__link {
  color: var(--vz999-primary);
}

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

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

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

.page-slot-games__hero-content {
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  margin-top: -100px; /* Adjust to position content below image */
  position: relative;
  z-index: 1;
}

.page-slot-games__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: bold;
  color: var(--vz999-gold);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-slot-games__hero-description {
  font-size: 1.1rem;
  color: var(--vz999-text-main);
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
}

.page-slot-games__btn-primary {
  background: var(--vz999-btn-gradient);
  color: #ffffff;
}

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

.page-slot-games__btn-secondary {
  background: #ffffff;
  color: var(--vz999-primary);
  border: 2px solid var(--vz999-primary);
}

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

/* Section Titles and Descriptions */
.page-slot-games__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--vz999-gold);
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-slot-games__section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--vz999-text-secondary);
}

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

/* Cards */
.page-slot-games__card {
  background-color: var(--vz999-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--vz999-border);
  color: var(--vz999-text-main);
}

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

.page-slot-games__card-title {
  font-size: 1.5rem;
  color: var(--vz999-gold);
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-slot-games__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--vz999-text-secondary);
}

.page-slot-games__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-slot-games__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--vz999-text-secondary);
}

.page-slot-games__list li::before {
  content: '✓';
  color: var(--vz999-secondary);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-slot-games__list-item-title {
  color: var(--vz999-text-main);
}

/* Images in content */
.page-slot-games__image-content {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  border: 2px solid var(--vz999-divider);
}

/* FAQ Section */
.page-slot-games__faq-section {
  text-align: left;
}

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

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

.page-slot-games__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--vz999-gold);
  list-style: none;
  position: relative;
}

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

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

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

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

.page-slot-games__faq-answer p {
  margin: 0;
}

/* Links */
.page-slot-games__link {
  color: var(--vz999-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games__link:hover {
  color: var(--vz999-gold);
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-slot-games__section {
    padding: 40px 15px;
  }

  .page-slot-games__hero-content {
    padding: 30px 15px;
    margin-top: -80px;
  }

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

  .page-slot-games__hero-description {
    font-size: 1rem;
  }

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

  .page-slot-games__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-slot-games__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-slot-games__content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-slot-games__card-title {
    font-size: 1.3rem;
  }

  .page-slot-games__card-text,
  .page-slot-games__list li,
  .page-slot-games__faq-answer {
    font-size: 0.9rem;
  }

  /* Image and Video responsiveness */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games__hero-section,
  .page-slot-games__container,
  .page-slot-games__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-slot-games__hero-section {
    padding-top: 10px !important;
  }
}