.page-slots-table-games {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
}

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

.page-slots-table-games__hero {
  background: linear-gradient(135deg, #8B0000, #4a0000); /* Darker gradient with auxiliary color */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-table-games__hero-content {
  z-index: 10;
  max-width: 800px;
  margin-right: 40px;
  text-align: left;
}

.page-slots-table-games__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-slots-table-games__hero-subtitle {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-slots-table-games__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.page-slots-table-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-slots-table-games__button--primary {
  background-color: #FFD700; /* Gold */
  color: #4a0000; /* Dark text for contrast */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-slots-table-games__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-slots-table-games__button--secondary {
  background-color: #8B0000; /* Burgundy Red */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page-slots-table-games__button--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

.page-slots-table-games__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
  background-color: #FFD700;
  color: #4a0000;
}

.page-slots-table-games__button--small:hover {
  background-color: #e6c200;
}

.page-slots-table-games__hero-image-wrapper {
  flex-shrink: 0;
  width: 50%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-slots-table-games__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-slots-table-games__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
  position: relative;
  font-weight: bold;
}

.page-slots-table-games__section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8B0000; /* Burgundy Red */
  border-radius: 2px;
}

.page-slots-table-games__intro,
.page-slots-table-games__game-categories,
.page-slots-table-games__why-k8vn,
.page-slots-table-games__how-to-start,
.page-slots-table-games__responsible-gaming {
  padding: 80px 0;
}

.page-slots-table-games__intro .page-slots-table-games__text-content {
  font-size: 1.15em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #e0e0e0;
}

.page-slots-table-games__game-categories {
  background-color: #222222;
}

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

.page-slots-table-games__category-item {
  background-color: #2c2c2c;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slots-table-games__category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-slots-table-games__category-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 2px solid #FFD700;
}

.page-slots-table-games__category-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-table-games__category-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-slots-table-games__why-k8vn {
  background-color: #1a1a1a;
}

.page-slots-table-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-slots-table-games__feature-item {
  background-color: #2c2c2c;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-top: 4px solid #8B0000;
}

.page-slots-table-games__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #FFD700);
}

.page-slots-table-games__feature-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-table-games__feature-description {
  font-size: 1em;
  color: #cccccc;
}

.page-slots-table-games__how-to-start {
  background-color: #222222;
}

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

.page-slots-table-games__step-item {
  background-color: #2c2c2c;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 4px solid #FFD700;
}

.page-slots-table-games__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #FFD700;
  color: #4a0000; /* Dark text for contrast */
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-slots-table-games__step-title {
  font-size: 1.7em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-table-games__step-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-slots-table-games__cta-bottom {
  text-align: center;
  margin-top: 60px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-slots-table-games__link {
  color: #FFD700; /* Gold */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-slots-table-games__link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-slots-table-games__responsible-gaming {
  padding-bottom: 80px;
}

.page-slots-table-games__responsible-gaming .page-slots-table-games__text-content {
  font-size: 1.05em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-table-games__hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 0;
  }

  .page-slots-table-games__hero-content {
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .page-slots-table-games__hero-title {
    font-size: 2.8em;
  }

  .page-slots-table-games__hero-subtitle {
    font-size: 1.1em;
  }

  .page-slots-table-games__hero-actions {
    justify-content: center;
  }

  .page-slots-table-games__hero-image-wrapper {
    width: 80%;
  }

  .page-slots-table-games__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-slots-table-games__hero {
    padding: 60px 0;
  }

  .page-slots-table-games__hero-title {
    font-size: 2.2em;
  }

  .page-slots-table-games__hero-subtitle {
    font-size: 1em;
  }

  .page-slots-table-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-slots-table-games__button {
    width: 100%;
    max-width: 300px;
  }

  .page-slots-table-games__hero-image-wrapper {
    width: 90%;
  }

  .page-slots-table-games__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
    padding-top: 40px;
  }

  .page-slots-table-games__category-grid,
  .page-slots-table-games__features-grid,
  .page-slots-table-games__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-slots-table-games__category-item,
  .page-slots-table-games__feature-item,
  .page-slots-table-games__step-item {
    padding: 25px;
  }

  .page-slots-table-games__category-image {
    height: 180px;
  }

  .page-slots-table-games__category-title,
  .page-slots-table-games__feature-title,
  .page-slots-table-games__step-title {
    font-size: 1.5em;
  }

  .page-slots-table-games__intro .page-slots-table-games__text-content,
  .page-slots-table-games__responsible-gaming .page-slots-table-games__text-content {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-slots-table-games__hero-title {
    font-size: 1.8em;
  }

  .page-slots-table-games__hero-subtitle {
    font-size: 0.9em;
  }

  .page-slots-table-games__button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-slots-table-games__section-title {
    font-size: 1.6em;
  }

  .page-slots-table-games__category-image {
    height: 150px;
  }

  .page-slots-table-games__category-title,
  .page-slots-table-games__feature-title,
  .page-slots-table-games__step-title {
    font-size: 1.3em;
  }
}