/* style/slot-games.css */

:root {
  --primary-color: #1A2B4C;
  --secondary-color: #FFD700;
  --text-light: #FFFFFF;
  --text-dark: #333333;
  --background-light: #F8F8F8;
  --background-dark: #121E30;
  --accent-color: #E0A800;
  --border-color: #e0e0e0;
}

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

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

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

.page-slot-games section:nth-of-type(even) {
  background-color: #e6eef5; /* Lighter shade of primary for contrast */
}

.page-slot-games h1,
.page-slot-games h2 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 2.5em;
  font-weight: bold;
}

.page-slot-games h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.8em;
}

.page-slot-games p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-slot-games a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games a:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.page-slot-games .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: var(--background-dark);
  color: var(--text-light);
}

.page-slot-games .hero-container {
  position: relative;
  width: 100%;
  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;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-slot-games .hero-content h1 {
  color: var(--secondary-color);
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.page-slot-games .cta-button:hover {
  background: var(--accent-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games .cta-button.secondary:hover {
  background: var(--background-dark);
  border-color: var(--background-dark);
}

/* Introduction Section */
.page-slot-games .introduction-section {
  background-color: var(--background-light);
}

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

.page-slot-games .intro-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.page-slot-games .intro-card .card-icon {
  width: 150px; /* Adjusted from small icon to content image */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-slot-games .game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games .game-card .game-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-slot-games .game-card h3 {
  padding: 15px 20px 0;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1.5em;
}

.page-slot-games .game-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-slot-games .game-card h3 a:hover {
  color: var(--secondary-color);
}

.page-slot-games .game-card p {
  padding: 0 20px 20px;
  font-size: 1em;
  color: var(--text-dark);
}

.page-slot-games .call-to-action-text {
  margin-top: 40px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
}

/* Benefits Section */
.page-slot-games .benefits-section {
  background-color: var(--background-light);
  text-align: left;
}

.page-slot-games .benefits-section h2 {
  text-align: center;
}

.page-slot-games .benefits-section ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-slot-games .benefits-section li {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  line-height: 1.8;
  border-left: 5px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.page-slot-games .benefits-section li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games .benefits-section li strong {
  color: var(--primary-color);
}

/* Guide Section */
.page-slot-games .guide-section ol {
  list-style: none;
  counter-reset: guide-counter;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-slot-games .guide-section li {
  counter-increment: guide-counter;
  background: #ffffff;
  padding: 25px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  line-height: 1.8;
  position: relative;
  padding-left: 60px;
}

.page-slot-games .guide-section li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-slot-games .guide-section li strong {
  color: var(--primary-color);
}

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

.page-slot-games .strategy-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games .strategy-item h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-slot-games .strategy-item p {
  font-size: 1em;
}

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

.page-slot-games .promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games .promo-card .promo-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-slot-games .promo-card h3 {
  padding: 15px 20px 0;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1.5em;
}

.page-slot-games .promo-card p {
  padding: 0 20px 20px;
  font-size: 1em;
  color: var(--text-dark);
}

/* FAQ Section */
.page-slot-games .faq-section {
  background-color: var(--background-light);
}

.page-slot-games .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games .faq-item {
  margin-bottom: 15px;
}

.page-slot-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-slot-games .faq-question:hover {
  background: #f5f5f5;
  border-color: var(--secondary-color);
}

.page-slot-games .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
  text-align: left;
}

.page-slot-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-slot-games .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-slot-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 8px 8px;
  text-align: left;
}

.page-slot-games .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 25px;
  border-top: 1px solid var(--border-color);
}

.page-slot-games .faq-answer p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1em;
}

/* Conclusion Section */
.page-slot-games .conclusion-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 80px 0;
}

.page-slot-games .conclusion-section h2 {
  color: var(--secondary-color);
  font-size: 2.8em;
}

.page-slot-games .conclusion-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 40px;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games .hero-content h1 {
    font-size: 3em;
  }
  .page-slot-games h2 {
    font-size: 2.2em;
  }
  .page-slot-games h3 {
    font-size: 1.6em;
  }
  .page-slot-games .intro-grid, .page-slot-games .game-grid, .page-slot-games .strategy-grid, .page-slot-games .promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-slot-games .benefits-section ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-slot-games .hero-section {
    padding: 60px 15px;
  }
  .page-slot-games .hero-content h1 {
    font-size: 2.5em;
  }
  .page-slot-games .hero-content p {
    font-size: 1em;
  }
  .page-slot-games .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-slot-games section {
    padding: 40px 0;
  }
  .page-slot-games h2 {
    font-size: 2em;
  }
  .page-slot-games h3 {
    font-size: 1.4em;
  }
  .page-slot-games p {
    font-size: 0.95em;
  }
  .page-slot-games .intro-card .card-icon {
    width: 120px;
    height: 120px;
  }
  .page-slot-games .faq-question {
    padding: 15px 20px;
  }
  .page-slot-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-slot-games .faq-toggle {
    font-size: 20px;
  }
  .page-slot-games .faq-answer {
    padding: 10px 20px;
  }
  .page-slot-games .guide-section li {
    padding-left: 50px;
  }
  .page-slot-games .guide-section li::before {
    left: 15px;
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-slot-games .hero-content h1 {
    font-size: 2em;
  }
  .page-slot-games h2 {
    font-size: 1.8em;
  }
  .page-slot-games h3 {
    font-size: 1.3em;
  }
  .page-slot-games .container {
    padding: 0 15px;
  }
  .page-slot-games .game-card .game-img {
    height: 180px;
  }
  .page-slot-games .conclusion-section h2 {
    font-size: 2em;
  }
}