/* style/game-lobby-slot-games.css */

/* Variables */
:root {
  --v9bet-primary: #007bff;
  --v9bet-secondary: #ffc107;
  --v9bet-dark: #212529;
  --v9bet-light: #f8f9fa;
  --v9bet-gray: #6c757d;
  --v9bet-white: #ffffff;
}

/* General Page Styles */
.page-game-lobby-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--v9bet-dark);
  background-color: var(--v9bet-light);
}

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

.page-game-lobby-slot-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-lobby-slot-games__section:nth-of-type(odd) {
  background-color: var(--v9bet-white);
}

.page-game-lobby-slot-games__section-title {
  font-size: 2.5em;
  color: var(--v9bet-primary);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-lobby-slot-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--v9bet-secondary);
  border-radius: 2px;
}

.page-game-lobby-slot-games__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--v9bet-dark);
}

/* Buttons */
.page-game-lobby-slot-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-game-lobby-slot-games__btn--primary {
  background-color: var(--v9bet-primary);
  color: var(--v9bet-white);
  font-size: 1.1em;
}

.page-game-lobby-slot-games__btn--primary:hover {
  background-color: #0056b3; /* Darker primary */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-slot-games__btn--secondary {
  background-color: var(--v9bet-secondary);
  color: var(--v9bet-dark);
  font-size: 1em;
  padding: 10px 20px;
}

.page-game-lobby-slot-games__btn--secondary:hover {
  background-color: #e0a800; /* Darker secondary */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-game-lobby-slot-games__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  background-color: var(--v9bet-primary);
  color: var(--v9bet-white);
}

.page-game-lobby-slot-games__btn--small:hover {
  background-color: #0056b3;
}

/* Hero Section */
.page-game-lobby-slot-games__hero {
  background: linear-gradient(135deg, var(--v9bet-primary) 0%, #0056b3 100%); /* Darker primary for gradient */
  color: var(--v9bet-white);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-game-lobby-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--v9bet-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-slot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  opacity: 0.9;
}

.page-game-lobby-slot-games__hero-image-wrapper {
  position: absolute;
  bottom: -20px;
  right: -50px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.page-game-lobby-slot-games__hero-image {
  width: 600px;
  height: auto;
  transform: rotate(10deg);
}

/* Ensure hero content is above image */
.page-game-lobby-slot-games__hero > .page-game-lobby-slot-games__container {
  position: relative;
  z-index: 1;
}

/* Game Categories Grid */
.page-game-lobby-slot-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-lobby-slot-games__game-card {
  background-color: var(--v9bet-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-game-lobby-slot-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-game-lobby-slot-games__game-card-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-lobby-slot-games__game-card-title {
  font-size: 1.8em;
  color: var(--v9bet-primary);
  margin-bottom: 15px;
}

.page-game-lobby-slot-games__game-card-description {
  font-size: 1em;
  color: var(--v9bet-gray);
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Why v9bet Features */
.page-game-lobby-slot-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-lobby-slot-games__feature-item {
  background-color: var(--v9bet-primary);
  color: var(--v9bet-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-game-lobby-slot-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(100%) brightness(1.5);
}

.page-game-lobby-slot-games__feature-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--v9bet-secondary);
}

.page-game-lobby-slot-games__feature-item p {
  font-size: 1em;
  opacity: 0.9;
  color: var(--v9bet-light);
}

.page-game-lobby-slot-games__cta-bottom {
  margin-top: 60px;
  padding: 40px;
  background-color: var(--v9bet-secondary);
  border-radius: 10px;
  color: var(--v9bet-dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-lobby-slot-games__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 25px;
  font-weight: 500;
}

/* How to Start Steps */
.page-game-lobby-slot-games__steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-lobby-slot-games__steps li {
  background-color: var(--v9bet-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-lobby-slot-games__steps li h3 {
  font-size: 1.5em;
  color: var(--v9bet-primary);
  margin-bottom: 15px;
}

.page-game-lobby-slot-games__steps li p {
  color: var(--v9bet-gray);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Promotions */
.page-game-lobby-slot-games__promo-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 30px auto 40px auto;
  text-align: left;
}

.page-game-lobby-slot-games__promo-list li {
  background-color: var(--v9bet-light);
  border-left: 5px solid var(--v9bet-secondary);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: var(--v9bet-dark);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Responsible Gaming */
.page-game-lobby-slot-games__responsible-gaming {
  background-color: var(--v9bet-dark);
  color: var(--v9bet-white);
  padding: 80px 0;
}

.page-game-lobby-slot-games__responsible-gaming .page-game-lobby-slot-games__section-title {
  color: var(--v9bet-secondary);
}

.page-game-lobby-slot-games__responsible-gaming .page-game-lobby-slot-games__text-content {
  color: var(--v9bet-light);
  max-width: 900px;
}

.page-game-lobby-slot-games__illustration-image {
  max-width: 500px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-game-lobby-slot-games__faq-item {
  background-color: var(--v9bet-white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-lobby-slot-games__faq-item h3 {
  font-size: 1.4em;
  color: var(--v9bet-primary);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-lobby-slot-games__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: var(--v9bet-secondary);
  transition: transform 0.3s ease;
}

.page-game-lobby-slot-games__faq-item.active h3::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-lobby-slot-games__faq-answer {
  font-size: 1em;
  color: var(--v9bet-dark);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-game-lobby-slot-games__faq-item.active .page-game-lobby-slot-games__faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-lobby-slot-games__hero-title {
    font-size: 3em;
  }
  .page-game-lobby-slot-games__hero-description {
    font-size: 1.1em;
  }
  .page-game-lobby-slot-games__section-title {
    font-size: 2em;
  }
  .page-game-lobby-slot-games__hero-image-wrapper {
    right: -100px;
    bottom: -50px;
    width: 500px;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-slot-games__hero {
    padding: 60px 0;
  }
  .page-game-lobby-slot-games__hero-title {
    font-size: 2.5em;
  }
  .page-game-lobby-slot-games__hero-description {
    font-size: 1em;
  }
  .page-game-lobby-slot-games__section {
    padding: 40px 0;
  }
  .page-game-lobby-slot-games__hero-image-wrapper {
    display: none;
  }
  .page-game-lobby-slot-games__features-grid,
  .page-game-lobby-slot-games__grid,
  .page-game-lobby-slot-games__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-game-lobby-slot-games__hero-title {
    font-size: 2em;
  }
  .page-game-lobby-slot-games__btn--primary {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-game-lobby-slot-games__section-title {
    font-size: 1.8em;
  }
  .page-game-lobby-slot-games__text-content,
  .page-game-lobby-slot-games__promo-list li {
    font-size: 0.95em;
  }
  .page-game-lobby-slot-games__game-card-title {
    font-size: 1.5em;
  }
  .page-game-lobby-slot-games__feature-title {
    font-size: 1.3em;
  }
  .page-game-lobby-slot-games__cta-bottom p {
    font-size: 1em;
  }
  .page-game-lobby-slot-games__faq-item h3 {
    font-size: 1.2em;
  }
}