.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #F5F7FA;
  line-height: 1.6;
}

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

.page-slot-games__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #E53935;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-slot-games__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555555;
}

.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: 10px;
  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;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-slot-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

.page-slot-games__hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  color: #E53935;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-slot-games__hero-content p {
  font-size: clamp(18px, 2vw, 24px);
  color: #333333;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
  border: none;
  cursor: pointer;
}

.page-slot-games__cta-button:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
}

.page-slot-games__introduction-section, .page-slot-games__benefits-section, .page-slot-games__strategy-section, .page-slot-games__security-section, .page-slot-games__cta-section {
  padding: 80px 0;
}

.page-slot-games__game-types-section, .page-slot-games__how-to-play-section, .page-slot-games__promotions-section, .page-slot-games__faq-section {
  padding: 80px 0;
}

.page-slot-games__dark-bg {
  background-color: #E53935;
  color: #ffffff;
}

.page-slot-games__dark-bg .page-slot-games__section-title {
  color: #ffffff;
}

.page-slot-games__dark-bg .page-slot-games__section-description {
  color: #f0f0f0;
}

.page-slot-games__light-bg {
  background-color: #F5F7FA;
  color: #333333;
}

.page-slot-games__light-bg .page-slot-games__section-title {
  color: #E53935;
}

.page-slot-games__light-bg .page-slot-games__section-description {
  color: #555555;
}

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

.page-slot-games__game-card, .page-slot-games__promo-card, .page-slot-games__strategy-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-slot-games__game-card img, .page-slot-games__promo-card img, .page-slot-games__feature-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-slot-games__game-card h3, .page-slot-games__promo-card h3, .page-slot-games__strategy-card h3, .page-slot-games__feature-item h3 {
  font-size: 24px;
  color: #E53935;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-slot-games__game-card p, .page-slot-games__promo-card p, .page-slot-games__strategy-card p {
  font-size: 16px;
  color: #555555;
}

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

.page-slot-games__benefits-list li {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-slot-games__benefits-list li h3 {
  font-size: 24px;
  color: #E53935;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-slot-games__benefits-list li p {
  font-size: 16px;
  color: #555555;
}

.page-slot-games__benefits-list li img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-slot-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #ffffff;
}

.page-slot-games__steps-list li {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  position: relative;
  counter-increment: step-counter;
  padding-left: 80px;
}

.page-slot-games__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  background-color: #FF5A4F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
}

.page-slot-games__steps-list li h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-slot-games__steps-list li p {
  font-size: 16px;
  color: #f0f0f0;
}

.page-slot-games__btn-link {
  display: inline-block;
  margin-top: 15px;
  color: #FF5A4F;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-slot-games__btn-link:hover {
  color: #ffffff;
}

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

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

.page-slot-games__promo-card {
  background-color: #FFFFFF;
  color: #333333;
}

.page-slot-games__promo-card h3 {
  color: #E53935;
}

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

.page-slot-games__feature-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  color: #333333;
}

.page-slot-games__feature-item h3 {
  font-size: 24px;
  color: #E53935;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-slot-games__feature-item p {
  font-size: 16px;
  color: #555555;
}

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

details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

details.page-slot-games__faq-item summary.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-slot-games__faq-item summary.page-slot-games__faq-question::-webkit-details-marker {
  display: none;
}

details.page-slot-games__faq-item summary.page-slot-games__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #ffffff;
}

.page-slot-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

details[open] .page-slot-games__faq-toggle {
  transform: rotate(45deg);
}

details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 20px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 5px 5px;
}

details.page-slot-games__faq-item .page-slot-games__faq-answer p {
  color: #f0f0f0;
  font-size: 16px;
}

.page-slot-games__text-center {
  text-align: center;
}

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

.page-slot-games__btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
  border: none;
  cursor: pointer;
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
}

.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background: #ffffff;
  color: #E53935;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #E53935;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.page-slot-games__btn-secondary:hover {
  background: #E53935;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-slot-games__main-cta {
  margin-top: 40px;
  font-size: 22px;
  padding: 18px 50px;
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__hero-image {
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .page-slot-games__hero-content h1 {
    font-size: 32px;
  }

  .page-slot-games__hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-slot-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games__section-title {
    font-size: 28px;
  }

  .page-slot-games__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-slot-games__introduction-section, .page-slot-games__benefits-section, .page-slot-games__strategy-section, .page-slot-games__security-section, .page-slot-games__cta-section, .page-slot-games__game-types-section, .page-slot-games__how-to-play-section, .page-slot-games__promotions-section, .page-slot-games__faq-section {
    padding: 50px 0;
  }

  .page-slot-games__container {
    padding: 0 15px;
  }

  .page-slot-games__game-grid, .page-slot-games__benefits-list, .page-slot-games__strategy-grid, .page-slot-games__promo-grid, .page-slot-games__security-features {
    gap: 20px;
    margin-top: 30px;
  }

  .page-slot-games__game-card, .page-slot-games__promo-card, .page-slot-games__strategy-card, .page-slot-games__benefits-list li, .page-slot-games__feature-item {
    padding: 20px;
  }

  .page-slot-games__game-card h3, .page-slot-games__benefits-list li h3, .page-slot-games__promo-card h3, .page-slot-games__strategy-card h3, .page-slot-games__feature-item h3 {
    font-size: 20px;
  }

  .page-slot-games__steps-list li {
    padding-left: 60px;
  }

  .page-slot-games__steps-list li::before {
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .page-slot-games__faq-qtext {
    font-size: 16px;
  }

  .page-slot-games__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  .page-slot-games__btn-primary, .page-slot-games__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games__button-group {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  
  .page-slot-games__button-group a {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games__main-cta {
    font-size: 18px;
    padding: 15px 30px;
    margin-top: 30px;
  }

  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games__game-card, .page-slot-games__promo-card, .page-slot-games__strategy-card, .page-slot-games__benefits-list li, .page-slot-games__feature-item, .page-slot-games__hero-section, .page-slot-games__introduction-section, .page-slot-games__game-types-section, .page-slot-games__benefits-section, .page-slot-games__how-to-play-section, .page-slot-games__strategy-section, .page-slot-games__promotions-section, .page-slot-games__security-section, .page-slot-games__faq-section, .page-slot-games__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-slot-games__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-slot-games__hero-image {
    padding: 0 15px;
  }
}