/* style/slot-games.css */

/* General page styling */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  background-color: var(--auxiliary-color);
  line-height: 1.6;
}

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

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

.page-slot-games__section-title {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slot-games__text-block {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dark);
}

.page-slot-games__text-block a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  background: linear-gradient(135deg, var(--primary-color), var(--auxiliary-color));
  overflow: hidden;
}

.page-slot-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-slot-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-slot-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-slot-games__hero-title {
  font-size: 48px;
  color: var(--text-light);
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slot-games__hero-description {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons */
.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid transparent;
}

.page-slot-games__btn-primary:hover {
  background: #1e88b9; /* Darker shade of #26A9E0 */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-slot-games__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Introduction Section */
.page-slot-games__introduction-section {
  background-color: var(--auxiliary-color);
  color: var(--text-dark);
}

.page-slot-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-slot-games__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games__feature-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

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

/* Quick Access Section */
.page-slot-games__quick-access-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding-bottom: 80px;
}

.page-slot-games__quick-access-section .page-slot-games__section-title {
  color: var(--text-light);
}

.page-slot-games__quick-access-section .page-slot-games__text-block {
  color: var(--text-light);
}

.page-slot-games__quick-access-section .page-slot-games__text-block a {
  color: var(--auxiliary-color);
  text-decoration: underline;
}

.page-slot-games__button-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-slot-games__button-grid .page-slot-games__cta-button {
  margin-top: 0;
  min-width: 220px;
}

/* Top Games Section */
.page-slot-games__top-games-section {
  background-color: #f8f8f8;
}

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

.page-slot-games__game-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-slot-games__game-card .page-slot-games__card-title {
  font-size: 20px;
  font-weight: bold;
  padding: 15px 20px 0;
  margin-bottom: 10px;
}

.page-slot-games__game-card .page-slot-games__card-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-slot-games__game-card .page-slot-games__card-title a:hover {
  text-decoration: underline;
}

.page-slot-games__game-card p {
  font-size: 16px;
  color: var(--text-dark);
  padding: 0 20px 20px;
}

.page-slot-games__button-container {
  margin-top: 50px;
  text-align: center;
}

/* Promotions Section */
.page-slot-games__promotions-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-slot-games__promotions-section .page-slot-games__section-title {
  color: var(--text-light);
}

.page-slot-games__promotions-section .page-slot-games__text-block {
  color: var(--text-light);
}

.page-slot-games__promotions-section .page-slot-games__text-block a {
  color: var(--auxiliary-color);
  text-decoration: underline;
}

.page-slot-games__promotion-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-slot-games__promotion-list li {
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games__promotion-list li strong {
  color: var(--auxiliary-color);
}

.page-slot-games__promotion-list li a {
  color: var(--auxiliary-color);
  text-decoration: underline;
}

/* Safety & Support Section */
.page-slot-games__safety-support-section {
  background-color: var(--auxiliary-color);
  color: var(--text-dark);
}

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

.page-slot-games__safety-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games__safety-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

/* FAQ Section */
.page-slot-games__faq-section {
  background-color: #f8f8f8;
}

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

.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* FAQ default state - answer hidden */
.page-slot-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  background: #f9f9f9;
}