/* style/slots-games-classic-slots.css */

/* Base styles for the page content */
.page-slots-games-classic-slots {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #121212; /* Very dark background */
}

.page-slots-games-classic-slots__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slots-games-classic-slots__section {
  padding: 60px 0;
}

.page-slots-games-classic-slots__section:nth-of-type(even) {
  background-color: #1A237E; /* Main brand color for alternating sections */
}

.page-slots-games-classic-slots__section h2 {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color for main headings */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-slots-games-classic-slots__section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-slots-games-classic-slots__section h3 {
  font-size: 1.8em;
  color: #FFD700; /* Auxiliary color for sub-headings */
  margin-bottom: 20px;
}

.page-slots-games-classic-slots__section p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #D0D0D0; /* Slightly darker light grey for paragraphs */
}

.page-slots-games-classic-slots__section ul {
  list-style: none;
  padding-left: 0;
}

.page-slots-games-classic-slots__section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #D0D0D0;
}

.page-slots-games-classic-slots__section ul li::before {
  content: '✔'; /* Checkmark icon */
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* Hero Section */
.page-slots-games-classic-slots__hero {
  background: linear-gradient(135deg, #1A237E 0%, #0D103F 100%); /* Dark blue gradient */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-games-classic-slots__hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
}

.page-slots-games-classic-slots__hero-content h1 {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slots-games-classic-slots__hero-content p {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-slots-games-classic-slots__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
  overflow: hidden;
}

.page-slots-games-classic-slots__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
  transform: scale(1.1);
}

/* Buttons */
.page-slots-games-classic-slots__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-slots-games-classic-slots__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A237E; /* Main color for text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-slots-games-classic-slots__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-slots-games-classic-slots__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-2px);
}

.page-slots-games-classic-slots__btn--tertiary {
  background-color: #1A237E;
  color: #E0E0E0;
  border: 2px solid #5f65a5; /* Lighter shade of main color */
  margin-left: 20px;
}

.page-slots-games-classic-slots__btn--tertiary:hover {
  background-color: #5f65a5;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* History Section */
.page-slots-games-classic-slots__section--history {
  background-color: #1A237E;
}

.page-slots-games-classic-slots__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-slots-games-classic-slots__text-block h3 {
  color: #FFD700;
}

.page-slots-games-classic-slots__image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Types Section */
.page-slots-games-classic-slots__section--types {
  background-color: #121212;
}

.page-slots-games-classic-slots__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slots-games-classic-slots__feature-card {
  background-color: #1A237E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-slots-games-classic-slots__feature-card:hover {
  transform: translateY(-5px);
}

.page-slots-games-classic-slots__feature-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slots-games-classic-slots__feature-card h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-slots-games-classic-slots__feature-card p {
  color: #D0D0D0;
}

/* Why kuwin789 Section */
.page-slots-games-classic-slots__section--why-kuwin789 {
  background-color: #0D103F;
}

.page-slots-games-classic-slots__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slots-games-classic-slots__advantage-item {
  background-color: #1A237E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-classic-slots__advantage-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-slots-games-classic-slots__advantage-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-slots-games-classic-slots__advantage-item p {
  color: #D0D0D0;
  font-size: 1em;
}

/* Tips Section */
.page-slots-games-classic-slots__section--tips {
  background-color: #121212;
}

/* CTA Section */
.page-slots-games-classic-slots__section--cta {
  background: linear-gradient(45deg, #1A237E, #0D103F);
  text-align: center;
  padding: 80px 0;
}

.page-slots-games-classic-slots__cta-content h2 {
  color: #FFD700;
}

.page-slots-games-classic-slots__cta-content p {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-games-classic-slots__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-slots-games-classic-slots__content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-slots-games-classic-slots__hero-content h1 {
    font-size: 4.5em;
  }

  .page-slots-games-classic-slots__hero-content p {
    font-size: 1.4em;
  }

  .page-slots-games-classic-slots__section h2 {
    font-size: 3em;
  }
}

@media (max-width: 767px) {
  .page-slots-games-classic-slots__hero {
    padding: 80px 20px;
  }

  .page-slots-games-classic-slots__hero-content h1 {
    font-size: 2.5em;
  }

  .page-slots-games-classic-slots__hero-content p {
    font-size: 1em;
  }

  .page-slots-games-classic-slots__section h2 {
    font-size: 2em;
  }

  .page-slots-games-classic-slots__section h3 {
    font-size: 1.5em;
  }

  .page-slots-games-classic-slots__btn {
    width: 100%;
    margin-left: 0 !important;
    margin-bottom: 15px;
  }

  .page-slots-games-classic-slots__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}