/* style/slot-games.css */\n\n/* Base Styles for the Slot Games Page */\n.page-slot-games {\n  font-family: 'Arial', sans-serif;\n  color: #ffffff; /* Light text for dark body background */\n  background-color: transparent; /* Body background is handled by shared.css */\n  line-height: 1.6;\n}\n\n/* Section Styling */\n.page-slot-games__section-title {\n  font-size: 36px;\n  font-weight: 700;\n  text-align: center;\n  margin-bottom: 40px;\n  color: #FFD700; /* Accent color for titles */\n}\n\n.page-slot-games__section-description {\n  font-size: 18px;\n  text-align: center;\n  margin-bottom: 50px;\n  color: #f0f0f0;\n  max-width: 800px;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.page-slot-games__container {\n  max-width: 1200px;\n  margin: 0 auto;\n  padding: 0 20px;\n  box-sizing: border-box;\n}\n\n/* Dark Background Section */\n.page-slot-games__dark-section {\n  background-color: #1A202C; /* Brand main color */\n  color: #ffffff;\n  padding: 80px 0;\n}\n\n/* Light Background Section */\n.page-slot-games__light-section {\n  background-color: #0d0d0d; /* Slightly lighter dark for contrast */\n  color: #ffffff;\n  padding: 80px 0;\n}\n\n/* Buttons */\n.page-slot-games__btn-primary,\n.page-slot-games__btn-secondary {\n  display: inline-block;\n  padding: 14px 30px;\n  border-radius: 8px;\n  font-weight: 700;\n  text-decoration: none;\n  transition: all 0.3s ease;\n  cursor: pointer;\n  text-align: center;\n  white-space: normal; /* Allow text to wrap */\n  word-wrap: break-word; /* Allow text to break words */\n  box-sizing: border-box; /* Include padding and border in the element's total width and height */\n}\n\n.page-slot-games__btn-primary {\n  background-color: #FFD700; /* Accent color */\n  color: #1A202C; /* Dark text for accent background */\n  border: 2px solid #FFD700;\n}\n\n.page-slot-games__btn-primary:hover {\n  background-color: #e6c200;\n  border-color: #e6c200;\n  transform: translateY(-2px);\n  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);\n}\n\n.page-slot-games__btn-secondary {\n  background-color: transparent;\n  color: #FFD700; /* Accent color for text */\n  border: 2px solid #FFD700;\n}\n\n.page-slot-games__btn-secondary:hover {\n  background-color: #FFD700;\n  color: #1A202C;\n  transform: translateY(-2px);\n  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);\n}\n\n.page-slot-games__cta-center {\n  text-align: center;\n  margin-top: 50px;\n}\n\n.page-slot-games__hero-cta-buttons {\n  display: flex;\n  justify-content: center;\n  gap: 20px;\n  margin-top: 40px;\n}\n\n/* Hero Section */\n.page-slot-games__hero-section {\n  position: relative;\n  padding-top: 0; /* shared.css will handle body padding-top */\n  padding-bottom: 80px; /* Add some padding to the bottom of the hero */\n  background: linear-gradient(135deg, #1A202C, #0d0d0d); /* Dark gradient background */\n}\n\n.page-slot-games__hero-container {\n  max-width: 1200px;\n  margin: 0 auto;\n  padding: 0 20px;\n  display: flex;\n  align-items: center;\n  gap: 40px;\n  box-sizing: border-box;\n}\n\n.page-slot-games__hero-content {\n  flex: 1;\n  text-align: left;\n  padding-right: 20px;\n}\n\n.page-slot-games__hero-title {\n  font-size: 52px;\n  font-weight: 900;\n  color: #FFD700; /* Accent color */\n  margin-bottom: 20px;\n  line-height: 1.2;\n}\n\n.page-slot-games__hero-description {\n  font-size: 20px;\n  color: #f0f0f0;\n  margin-bottom: 30px;\n}\n\n.page-slot-games__hero-image {\n  flex: 1;\n  min-width: 400px; /* Ensure image has a minimum width */\n}\n\n.page-slot-games__hero-image img {\n  width: 100%;\n  height: auto;\n  display: block;\n  border-radius: 12px;\n  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);\n}\n\n/* Intro Section */\n.page-slot-games__intro-section {\n  padding: 80px 0;\n}\n\n.page-slot-games__content-wrapper {\n  display: flex;\n  gap: 40px;\n  align-items: center;\n}\n\n.page-slot-games__text-block {\n  flex: 1;\n}\n\n.page-slot-games__text-block p {\n  margin-bottom: 20px;\n  font-size: 17px;\n  color: #f0f0f0;\n}\n\n.page-slot-games__image-block {\n  flex: 1;\n  min-width: 400px;\n}\n\n.page-slot-games__image-block img {\n  width: 100%;\n  height: auto;\n  display: block;\n  border-radius: 12px;\n  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);\n}\n\n/* Types Section */\n.page-slot-games__types-section {\n  padding: 80px 0;\n  background-color: #0d0d0d;\n}\n\n.page-slot-games__grid-cards {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n  gap: 30px;\n  margin-top: 50px;\n}\n\n.page-slot-games__card {\n  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */\n  border-radius: 12px;\n  overflow: hidden;\n  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\n  display: flex;\n  flex-direction: column;\n  color: #ffffff; /* White text for card */\n}\n\n.page-slot-games__card:hover {\n  transform: translateY(-8px);\n  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);\n}\n\n.page-slot-games__card-image {\n  width: 100%;\n  height: 220px; /* Fixed height for card images */\n  overflow: hidden;\n}\n\n.page-slot-games__card-image img {\n  width: 100%;\n  height: 100%;\n  object-fit: cover;\n  display: block;\n  /* No filter property */\n}\n\n.page-slot-games__card-title {\n  font-size: 22px;\n  font-weight: 700;\n  margin: 20px 20px 10px 20px;\n  color: #FFD700; /* Accent color for card titles */\n}\n\n.page-slot-games__card-text {\n  font-size: 16px;\n  margin: 0 20px 20px 20px;\n  flex-grow: 1;\n  color: #e0e0e0;\n}\n\n/* Guide Section */\n.page-slot-games__guide-section {\n  padding: 80px 0;\n}\n\n.page-slot-games__steps-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n  gap: 30px;\n  margin-top: 50px;\n}\n\n.page-slot-games__step-card {\n  background-color: rgba(255, 255, 255, 0.08);\n  border-radius: 12px;\n  padding: 30px;\n  text-align: center;\n  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);\n  color: #ffffff;\n}\n\n.page-slot-games__step-title {\n  font-size: 24px;\n  font-weight: 700;\n  color: #FFD700;\n  margin-bottom: 15px;\n}\n\n.page-slot-games__step-text {\n  font-size: 16px;\n  color: #e0e0e0;\n}\n\n.page-slot-games__guide-footer-text {\n  text-align: center;\n  margin-top: 40px;\n  font-size: 18px;\n  color: #f0f0f0;\n}\n\n/* Benefits Section */\n.page-slot-games__benefits-section {\n  padding: 80px 0;\n  background-color: #0d0d0d;\n}\n\n.page-slot-games__benefits-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n  gap: 30px;\n  margin-top: 50px;\n}\n\n.page-slot-games__benefit-item {\n  background-color: rgba(255, 255, 255, 0.08);\n  border-radius: 12px;\n  padding: 30px;\n  text-align: center;\n  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);\n  color: #ffffff;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n}\n\n.page-slot-games__benefit-item img {\n  \n  \n  object-fit: contain;\n  margin-bottom: 20px;\n  /* No filter property */\n}\n\n.page-slot-games__benefit-item h3 {\n  font-size: 22px;\n  font-weight: 700;\n  color: #FFD700;\n  margin-bottom: 15px;\n}\n\n.page-slot-games__benefit-item p {\n  font-size: 16px;\n  color: #e0e0e0;\n}\n\n/* Promotions Section */\n.page-slot-games__promotions-section {\n  padding: 80px 0;\n}\n\n.page-slot-games__promo-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n  gap: 30px;\n  margin-top: 50px;\n}\n\n.page-slot-games__promo-card {\n  background-color: rgba(255, 255, 255, 0.08);\n  border-radius: 12px;\n  overflow: hidden;\n  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\n  display: flex;\n  flex-direction: column;\n  color: #ffffff;\n}\n\n.page-slot-games__promo-card:hover {\n  transform: translateY(-8px);\n  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);\n}\n\n.page-slot-games__promo-card img {\n  width: 100%;\n  height: 200px; /* Fixed height for promo images */\n  object-fit: cover;\n  display: block;\n  /* No filter property */\n}\n\n.page-slot-games__promo-card h3 {\n  font-size: 22px;\n  font-weight: 700;\n  margin: 20px 20px 10px 20px;\n  color: #FFD700;\n}\n\n.page-slot-games__promo-card p {\n  font-size: 16px;\n  margin: 0 20px 20px 20px;\n  flex-grow: 1;\n  color: #e0e0e0;\n}\n\n.page-slot-games__promo-card .page-slot-games__btn-secondary {\n  margin: 0 20px 20px 20px;\n  align-self: flex-start;\n}\n\n/* Security and Support Section */\n.page-slot-games__security-support-section {\n  padding: 80px 0;\n  background-color: #0d0d0d;\n}\n\n.page-slot-games__security-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n  gap: 30px;\n  margin-top: 50px;\n}\n\n.page-slot-games__security-item {\n  background-color: rgba(255, 255, 255, 0.08);\n  border-radius: 12px;\n  padding: 30px;\n  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);\n  color: #ffffff;\n}\n\n.page-slot-games__security-item h3 {\n  font-size: 22px;\n  font-weight: 700;\n  color: #FFD700;\n  margin-bottom: 15px;\n}\n\n.page-slot-games__security-item p {\n  font-size: 16px;\n  color: #e0e0e0;\n}\n\n/* FAQ Section */\n.page-slot-games__faq-section {\n  padding: 80px 0;\n}\n\n.page-slot-games__faq-list {\n  margin-top: 50px;\n  max-width: 900px;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.page-slot-games__faq-item {\n  margin-bottom: 15px;\n  border-radius: 5px;\n  overflow: hidden;\n}\n\n.page-slot-games__faq-answer {\n  max-height: 0;\n  overflow: hidden;\n  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;\n  padding: 0 15px;\n  opacity: 0;\n}\n\n.page-slot-games__faq-item.active .page-slot-games__faq-answer {\n  max-height: 2000px !important; /* Ensure enough height for content */\n  padding: 20px 15px !important;\n  opacity: 1;\n  background: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background for answer */\n  border-radius: 0 0 5px 5px;\n  color: #e0e0e0; /* Light text for answer */\n}\n\n.page-slot-games__faq-answer p {\n  margin: 0;\n  font-size: 16px;\n  line-height: 1.6;\n}\n\n.page-slot-games__faq-question {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  padding: 18px 20px;\n  background: #1A202C; /* Main brand color for question background */\n  border: 1px solid rgba(255, 255, 255, 0.1);\n  border-radius: 5px;\n  cursor: pointer;\n  user-select: none;\n  transition: background-color 0.3s ease, border-color 0.3s ease;\n  position: relative;\n}\n\n.page-slot-games__faq-question:hover {\n  background: #2a3447; /* Slightly lighter on hover */\n  border-color: rgba(255, 215, 0, 0.5); /* Accent border on hover */\n}\n\n.page-slot-games__faq-question:active {\n  background: #3a4860;\n}\n\n.page-slot-games__faq-question h3 {\n  margin: 0;\n  padding: 0;\n  flex: 1;\n  font-size: 18px;\n  font-weight: 600;\n  line-height: 1.5;\n  pointer-events: none; /* Prevent h3 from blocking click events */\n  color: #ffffff; /* White text for question */\n}