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

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

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

.page-slot-games__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333333;
}

.page-slot-games__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

/* 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);
  background: linear-gradient(135deg, #E44D26, #333333);
  color: #ffffff;
}

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

.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-title {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #E44D26;
  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(0, 0, 0, 0.2);
  border: none;
}

.page-slot-games__cta-button:hover {
  background: #ff6f42;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Colors */
.page-slot-games__dark-bg {
  background: #333333;
  color: #ffffff;
}

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

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

/* Grid Layouts */
.page-slot-games__grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

/* Cards */
.page-slot-games__card {
  background: #ffffff;
  color: #333333;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-slot-games__card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-slot-games__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #E44D26;
}

.page-slot-games__card-description {
  font-size: 16px;
  color: #555555;
  text-align: center;
}

/* Advantages Section */
.page-slot-games__advantages-content,
.page-slot-games__advantages-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.page-slot-games__advantages-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games__advantage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-slot-games__advantage-item {
  font-size: 18px;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #333333;
}

.page-slot-games__advantage-item::before {
  content: '✔';
  color: #E44D26;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Guide Section */
.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-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-slot-games__step-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
}

.page-slot-games__step-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #E44D26;
}

.page-slot-games__step-item p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

.page-slot-games__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #E44D26;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
}

.page-slot-games__btn-primary:hover {
  background: #ff6f42;
}

/* Strategy Section */
.page-slot-games__strategy-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games__strategy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-slot-games__strategy-item {
  font-size: 18px;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #333333;
}

.page-slot-games__strategy-item::before {
  content: '◆';
  color: #333333;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-slot-games__promotion-item {
  background: #444444;
  color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games__promotion-item img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-slot-games__promotion-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #E44D26;
}

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

.page-slot-games__button-group {
  margin-top: 40px;
}

/* FAQ Section */
.page-slot-games__faq-list {
  margin-top: 40px;
  max-width: 800px;
  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.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-slot-games__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-slot-games__faq-question:active {
  background: #eeeeee;
}

.page-slot-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.page-slot-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-slot-games__faq-item.active .page-slot-games__faq-toggle {
  color: #E44D26;
  transform: rotate(180deg);
}

.page-slot-games__faq-answer p {
  font-size: 16px;
  color: #555555;
  text-align: justify;
}

.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: #ffffff;
  color: #E44D26;
  text-decoration: none;
  border: 2px solid #E44D26;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.page-slot-games__btn-secondary:hover {
  background: #E44D26;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Final CTA Section */
.page-slot-games__cta-final {
  background: #E44D26;
  color: #ffffff;
  padding: 80px 20px;
}

.page-slot-games__cta-final .page-slot-games__section-title,
.page-slot-games__cta-final .page-slot-games__text-block {
  color: #ffffff;
}

.page-slot-games__cta-final .page-slot-games__cta-button {
  background: #ffffff;
  color: #E44D26;
}

.page-slot-games__cta-final .page-slot-games__cta-button:hover {
  background: #f0f0f0;
  color: #cc3d1f;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__hero-title {
    font-size: 40px;
  }
  .page-slot-games__hero-description {
    font-size: 18px;
  }
  .page-slot-games__section-title {
    font-size: 30px;
  }
  .page-slot-games__text-block {
    font-size: 16px;
  }
  .page-slot-games__advantage-item,
  .page-slot-games__strategy-item {
    font-size: 17px;
  }
  .page-slot-games__card-title,
  .page-slot-games__step-title,
  .page-slot-games__promotion-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__hero-title {
    font-size: 32px;
  }
  .page-slot-games__hero-description {
    font-size: 16px;
  }
  .page-slot-games__cta-button {
    padding: 15px 30px;
    font-size: 18px;
    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 {
    padding: 40px 0;
  }
  .page-slot-games__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-slot-games__text-block {
    font-size: 15px;
    text-align: left;
  }
  .page-slot-games__grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-slot-games__advantages-image,
  .page-slot-games__strategy-image {
    order: -1; /* Image on top for mobile */
    margin-bottom: 30px;
  }
  .page-slot-games__advantage-list,
  .page-slot-games__strategy-list {
    text-align: left;
  }
  .page-slot-games__step-item img {
    
    
  }
  .page-slot-games__card img,
  .page-slot-games__promotion-item img,
  .page-slot-games__advantages-image img,
  .page-slot-games__strategy-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__promotion-item,
  .page-slot-games__step-item,
  .page-slot-games__faq-list,
  .page-slot-games__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-slot-games__faq-question h3 {
    font-size: 16px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-slot-games__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
  .page-slot-games__faq-answer {
    padding: 0 15px;
  }
  .page-slot-games__faq-item.active .page-slot-games__faq-answer {
    padding: 15px !important;
  }
  .page-slot-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__hero-title {
    font-size: 28px;
  }
  .page-slot-games__hero-description {
    font-size: 15px;
  }
  .page-slot-games__section-title {
    font-size: 24px;
  }
  .page-slot-games__cta-button {
    font-size: 16px;
    padding: 12px 25px;
  }
  .page-slot-games__text-block {
    font-size: 14px;
  }
  .page-slot-games__advantage-item,
  .page-slot-games__strategy-item {
    font-size: 15px;
  }
  .page-slot-games__card-title,
  .page-slot-games__step-title,
  .page-slot-games__promotion-title {
    font-size: 20px;
  }
  .page-slot-games__faq-question h3 {
    font-size: 14px;
  }
  .page-slot-games__faq-toggle {
    font-size: 22px;
    width: 24px;
    height: 24px;
  }
  .page-slot-games__faq-answer p {
    font-size: 14px;
  }
}