:root {
  --primary-color: #017439;
  --auxiliary-color: #FFFFFF;
  --register-login-btn-color: #C30808;
  --register-login-text-color: #FFFF00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --light-bg-color: #f8f8f8;
  --border-color: #e0e0e0;
}

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

.page-slot-games__hero-section {
  padding-top: var(--header-offset, 120px);
}

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

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

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

.page-slot-games__light-bg {
  background-color: var(--light-bg-color);
  color: var(--text-dark);
}

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

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

.page-slot-games__text-block {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

.page-slot-games__highlight {
  color: var(--register-login-text-color);
  font-weight: bold;
}

.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
}

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

.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;
}

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

.page-slot-games__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-slot-games__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--text-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--register-login-btn-color);
  color: var(--register-login-text-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.page-slot-games__cta-button--secondary {
  background: var(--auxiliary-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-slot-games__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  border-color: var(--text-light);
}

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

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

.page-slot-games__feature-card {
  background: var(--auxiliary-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

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

.page-slot-games__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-slot-games__step-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-slot-games__step-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--register-login-text-color);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__step-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-slot-games__step-card a {
  color: var(--register-login-text-color);
  text-decoration: underline;
}

.page-slot-games__step-card a:hover {
  color: var(--text-light);
}

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

.page-slot-games__game-card {
  background: var(--auxiliary-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

.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 .page-slot-games__card-image {
  height: 200px;
}

.page-slot-games__game-card .page-slot-games__card-title {
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.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 {
  padding: 0 20px 20px;
  font-size: 15px;
  color: var(--text-dark);
}

.page-slot-games__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-slot-games__benefits-list li {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-slot-games__benefit-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--register-login-text-color);
}

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

.page-slot-games__promo-card {
  background: var(--auxiliary-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

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

.page-slot-games__promo-card .page-slot-games__card-image {
  height: 220px;
}

.page-slot-games__promo-card .page-slot-games__card-title {
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

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

.page-slot-games__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-slot-games__btn-primary:hover {
  background: var(--auxiliary-color);
  color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-slot-games__tips-list li {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-slot-games__tip-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--register-login-text-color);
}

.page-slot-games__tips-list li a {
  color: var(--register-login-text-color);
  text-decoration: underline;
}

.page-slot-games__tips-list li a:hover {
  color: var(--text-light);
}

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

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

.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.3s ease;
  padding: 0 15px;
  opacity: 0;
  background: var(--auxiliary-color);
  color: var(--text-dark);
}