/* style/slot-games-new-releases.css */

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

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

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

.page-slot-games-new-releases__section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games-new-releases__section-title {
  font-size: 2.8em;
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-slot-games-new-releases__section-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-slot-games-new-releases__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
}

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

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

.page-slot-games-new-releases__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  margin-top: -80px; /* Overlap with image slightly for visual effect */
  border: 1px solid var(--border-color);
}

.page-slot-games-new-releases__hero-title {
  font-size: clamp(2.5em, 4vw, 3.5em); /* Responsive font size */
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-slot-games-new-releases__hero-description {
  font-size: 1.2em;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

.page-slot-games-new-releases__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-slot-games-new-releases__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

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

/* Why Choose Section */
.page-slot-games-new-releases__why-choose .page-slot-games-new-releases__section-title {
  color: var(--text-main);
}

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

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

.page-slot-games-new-releases__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px var(--primary-color);
}

.page-slot-games-new-releases__card-title {
  font-size: 1.6em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games-new-releases__card-text {
  color: var(--text-secondary);
  font-size: 1em;
  line-height: 1.6;
}

/* Featured Games Section */
.page-slot-games-new-releases__featured-games .page-slot-games-new-releases__section-title {
  color: var(--text-main);
}

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

.page-slot-games-new-releases__game-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-slot-games-new-releases__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px var(--gold-color);
}

.page-slot-games-new-releases__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-slot-games-new-releases__game-info {
  padding: 25px;
}

.page-slot-games-new-releases__game-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games-new-releases__game-description {
  color: var(--text-secondary);
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-slot-games-new-releases__game-button {
  display: inline-block;
  background: var(--button-gradient);
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-slot-games-new-releases__game-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Providers Section */
.page-slot-games-new-releases__providers .page-slot-games-new-releases__section-title {
  color: var(--text-main);
}

.page-slot-games-new-releases__provider-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-slot-games-new-releases__provider-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: grayscale(80%) brightness(120%);
  opacity: 0.7;
  transition: all 0.3s ease;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-slot-games-new-releases__provider-logo:hover {
  filter: grayscale(0%) brightness(100%);
  opacity: 1;
}

/* Guide Section */
.page-slot-games-new-releases__guide .page-slot-games-new-releases__section-title {
  color: var(--text-main);
}

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

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

.page-slot-games-new-releases__step-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-slot-games-new-releases__step-text {
  color: var(--text-secondary);
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-slot-games-new-releases__step-button {
  display: inline-block;
  background: var(--button-gradient);
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-slot-games-new-releases__step-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Promotions Section */
.page-slot-games-new-releases__promotions .page-slot-games-new-releases__section-title {
  color: var(--text-main);
}

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

.page-slot-games-new-releases__promo-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-slot-games-new-releases__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px var(--secondary-color);
}

.page-slot-games-new-releases__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-slot-games-new-releases__promo-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin: 20px 20px 10px;
  font-weight: 600;
}

.page-slot-games-new-releases__promo-text {
  color: var(--text-secondary);
  font-size: 0.95em;
  line-height: 1.5;
  margin: 0 20px 20px;
}

.page-slot-games-new-releases__promo-button {
  display: inline-block;
  background: var(--button-gradient);
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  margin-bottom: 20px;
}

.page-slot-games-new-releases__promo-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* FAQ Section */
.page-slot-games-new-releases__faq-section .page-slot-games-new-releases__section-title {
  color: var(--text-main);
}

.page-slot-games-new-releases__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-slot-games-new-releases__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-new-releases__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider-color);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-slot-games-new-releases__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games-new-releases__faq-question:hover {
  background-color: var(--primary-color);
}

.page-slot-games-new-releases__faq-qtext {
  flex-grow: 1;
}

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

.page-slot-games-new-releases__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  color: var(--text-secondary);
  line-height: 1.6;
  background-color: var(--card-bg);
}

/* Call to Action Section */
.page-slot-games-new-releases__call-to-action {
  background-color: var(--deep-green);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.page-slot-games-new-releases__call-to-action .page-slot-games-new-releases__section-title {
  color: var(--gold-color);
  margin-bottom: 25px;
}

.page-slot-games-new-releases__call-to-action .page-slot-games-new-releases__section-description {
  color: var(--text-secondary);
  font-size: 1.15em;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-new-releases__hero-content {
    margin-top: -60px;
  }
}

@media (max-width: 768px) {
  .page-slot-games-new-releases__section {
    padding: 40px 0;
  }

  .page-slot-games-new-releases__section-title {
    font-size: 2em;
  }

  .page-slot-games-new-releases__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-slot-games-new-releases__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
  }

  .page-slot-games-new-releases__hero-title {
    font-size: 2em;
  }

  .page-slot-games-new-releases__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-slot-games-new-releases__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-slot-games-new-releases__grid,
  .page-slot-games-new-releases__game-list,
  .page-slot-games-new-releases__promo-cards,
  .page-slot-games-new-releases__steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games-new-releases__card,
  .page-slot-games-new-releases__game-card,
  .page-slot-games-new-releases__promo-card,
  .page-slot-games-new-releases__step-item {
    padding: 20px;
  }

  .page-slot-games-new-releases__card-title,
  .page-slot-games-new-releases__game-title,
  .page-slot-games-new-releases__promo-title,
  .page-slot-games-new-releases__step-title {
    font-size: 1.4em;
  }

  .page-slot-games-new-releases__provider-logos {
    gap: 20px;
  }

  .page-slot-games-new-releases__provider-logo {
    width: 120px;
    min-width: 120px; /* Enforce min size */
    min-height: 120px; /* Enforce min size */
  }

  .page-slot-games-new-releases__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-slot-games-new-releases__faq-answer {
    padding: 10px 20px;
  }

  /* Mobile specific overrides for images, videos, and buttons */
  .page-slot-games-new-releases img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games-new-releases video,
  .page-slot-games-new-releases__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-new-releases__hero-image-wrapper,
  .page-slot-games-new-releases__game-card,
  .page-slot-games-new-releases__promo-card,
  .page-slot-games-new-releases__card,
  .page-slot-games-new-releases__step-item,
  .page-slot-games-new-releases__container,
  .page-slot-games-new-releases__section,
  .page-slot-games-new-releases__call-to-action,
  .page-slot-games-new-releases__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-slot-games-new-releases__cta-button,
  .page-slot-games-new-releases__btn-primary,
  .page-slot-games-new-releases__btn-secondary,
  .page-slot-games-new-releases a[class*="button"],
  .page-slot-games-new-releases 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-left: 15px;
    padding-right: 15px;
  }
  
  .page-slot-games-new-releases__cta-buttons,
  .page-slot-games-new-releases__button-group,
  .page-slot-games-new-releases__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;
  }

  .page-slot-games-new-releases__video-section {
    padding-top: 10px !important;
  }
}