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

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

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

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

.page-slot-games-new-releases__dark-section {
  background-color: var(--bl555vip-background);
  color: var(--bl555vip-text-main);
}

.page-slot-games-new-releases__light-bg {
  background-color: #0d1e16; /* Slightly lighter dark background for contrast */
  color: var(--bl555vip-text-main);
}

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

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

.page-slot-games-new-releases__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.page-slot-games-new-releases__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Enforce min size */
}

.page-slot-games-new-releases__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  padding: 0 15px;
}

.page-slot-games-new-releases__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--bl555vip-gold);
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-slot-games-new-releases__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--bl555vip-text-secondary);
}

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

.page-slot-games-new-releases__btn-primary,
.page-slot-games-new-releases__btn-secondary,
.page-slot-games-new-releases__btn-play {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-slot-games-new-releases__btn-primary {
  background: var(--bl555vip-btn-gradient);
  color: var(--bl555vip-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games-new-releases__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-slot-games-new-releases__btn-secondary {
  background-color: transparent;
  color: var(--bl555vip-secondary);
  border: 2px solid var(--bl555vip-secondary);
}

.page-slot-games-new-releases__btn-secondary:hover {
  background-color: var(--bl555vip-secondary);
  color: var(--bl555vip-background);
}

.page-slot-games-new-releases__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  color: var(--bl555vip-gold);
  font-weight: bold;
}

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

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

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

.page-slot-games-new-releases__feature-item:hover {
  transform: translateY(-5px);
}

.page-slot-games-new-releases__feature-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
  border-radius: 8px;
}

.page-slot-games-new-releases__feature-title {
  font-size: 1.5rem;
  color: var(--bl555vip-text-main);
  margin-bottom: 15px;
}

.page-slot-games-new-releases__feature-text {
  font-size: 1rem;
  color: var(--bl555vip-text-secondary);
}

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

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

.page-slot-games-new-releases__game-card:hover {
  transform: translateY(-5px);
}

.page-slot-games-new-releases__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-slot-games-new-releases__game-info {
  padding: 20px;
  text-align: left;
}

.page-slot-games-new-releases__game-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-slot-games-new-releases__game-title a {
  color: var(--bl555vip-text-main);
  text-decoration: none;
}

.page-slot-games-new-releases__game-title a:hover {
  color: var(--bl555vip-gold);
}

.page-slot-games-new-releases__game-provider,
.page-slot-games-new-releases__game-date {
  font-size: 0.95rem;
  color: var(--bl555vip-text-secondary);
  margin-bottom: 8px;
}

.page-slot-games-new-releases__btn-play {
  margin-top: 15px;
  padding: 10px 20px;
  background: var(--bl555vip-btn-gradient);
  color: var(--bl555vip-text-main);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

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

.page-slot-games-new-releases__view-all-button-wrapper {
    margin-top: 40px;
}

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

.page-slot-games-new-releases__bonus-card {
  background-color: var(--bl555vip-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--bl555vip-border);
}

.page-slot-games-new-releases__bonus-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
  border-radius: 8px;
}

.page-slot-games-new-releases__bonus-title {
  font-size: 1.5rem;
  color: var(--bl555vip-text-main);
  margin-bottom: 15px;
}

.page-slot-games-new-releases__bonus-text {
  font-size: 1rem;
  color: var(--bl555vip-text-secondary);
  margin-bottom: 25px;
}

.page-slot-games-new-releases__steps-grid {
  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(--bl555vip-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--bl555vip-border);
}

.page-slot-games-new-releases__step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--bl555vip-gold);
  margin-bottom: 15px;
}

.page-slot-games-new-releases__step-title {
  font-size: 1.4rem;
  color: var(--bl555vip-text-main);
  margin-bottom: 10px;
}

.page-slot-games-new-releases__step-text {
  font-size: 1rem;
  color: var(--bl555vip-text-secondary);
}

.page-slot-games-new-releases__step-text a {
  color: var(--bl555vip-secondary);
  text-decoration: none;
}

.page-slot-games-new-releases__step-text a:hover {
  text-decoration: underline;
}

.page-slot-games-new-releases__cta-wrapper {
  margin-top: 40px;
}

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

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

.page-slot-games-new-releases__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--bl555vip-text-main);
  cursor: pointer;
  background-color: var(--bl555vip-deep-green);
  border-bottom: 1px solid var(--bl555vip-divider);
}

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

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

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

.page-slot-games-new-releases__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: var(--bl555vip-text-secondary);
  border-top: 1px solid var(--bl555vip-divider);
}

.page-slot-games-new-releases__faq-item[open] .page-slot-games-new-releases__faq-question {
  border-bottom: none;
}

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

/* General image styling to prevent small icons */
.page-slot-games-new-releases img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-slot-games-new-releases {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-slot-games-new-releases__section {
    padding: 40px 15px;
  }

  .page-slot-games-new-releases__container,
  .page-slot-games-new-releases__hero-content {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games-new-releases__hero-section {
    padding-top: 10px !important; /* Small decorative top padding */
    padding-bottom: 40px;
  }

  .page-slot-games-new-releases__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-slot-games-new-releases__intro-text {
    font-size: 1rem;
  }

  .page-slot-games-new-releases__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games-new-releases__btn-primary,
  .page-slot-games-new-releases__btn-secondary,
  .page-slot-games-new-releases__btn-play {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-slot-games-new-releases__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-slot-games-new-releases__section-description {
    font-size: 1rem;
  }

  .page-slot-games-new-releases__features-grid,
  .page-slot-games-new-releases__game-grid,
  .page-slot-games-new-releases__bonus-grid,
  .page-slot-games-new-releases__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games-new-releases__feature-icon,
  .page-slot-games-new-releases__game-image,
  .page-slot-games-new-releases__bonus-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-slot-games-new-releases__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-slot-games-new-releases__faq-answer {
    padding: 15px;
    font-size: 0.95rem;
  }

  .page-slot-games-new-releases img {
    max-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__bonus-card,
  .page-slot-games-new-releases__feature-item,
  .page-slot-games-new-releases__step-item,
  .page-slot-games-new-releases__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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