/* CSS for page-89be */
.page-89be {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  background-color: #1a1a2e; /* Dark blue-purple background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-89be__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small decorative top padding */
  box-sizing: border-box;
  background-color: #16213e; /* Slightly lighter dark blue-purple for hero */
}

.page-89be__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
  max-width: 100%; /* Ensure responsiveness */
}

.page-89be__hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-89be__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #e94560; /* Accent color */
  line-height: 1.2;
}

.page-89be__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-89be__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-89be__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-89be__button--primary {
  background-color: #e94560; /* Accent color */
  color: #ffffff;
}

.page-89be__button--primary:hover {
  background-color: #d13a52;
  transform: translateY(-2px);
}

.page-89be__button--secondary {
  background-color: #0f3460; /* Darker blue */
  color: #e0e0e0;
  border: 1px solid #e94560;
}

.page-89be__button--secondary:hover {
  background-color: #1a4d80;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-89be__intro-section,
.page-89be__games-section,
.page-89be__promo-section,
.page-89be__payment-providers-section,
.page-89be__faq-section {
  padding: 60px 0;
  text-align: center;
}

.page-89be__section-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #e94560;
}

.page-89be__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #b0b0b0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Grid */
.page-89be__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-89be__feature-item {
  background-color: #16213e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  box-sizing: border-box; /* Required for list items */
}

.page-89be__feature-item:hover {
  transform: translateY(-5px);
}

.page-89be__feature-icon {
  width: 200px; /* Min size */
  height: auto;
  margin-bottom: 20px;
  max-width: 100%; /* Responsive */
}

.page-89be__feature-title {
  font-size: 1.5em;
  color: #e94560;
  margin-bottom: 10px;
}

.page-89be__feature-text {
  color: #c0c0c0;
}

/* Game Categories */
.page-89be__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-89be__game-card {
  background-color: #16213e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  box-sizing: border-box; /* Required for list items */
}

.page-89be__game-card:hover {
  transform: translateY(-5px);
}

.page-89be__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  max-width: 100%; /* Responsive */
}

.page-89be__game-title {
  font-size: 1.4em;
  color: #e94560;
  padding: 15px 10px 5px;
}

.page-89be__game-description {
  color: #c0c0c0;
  padding: 0 10px 20px;
  font-size: 0.95em;
}

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

.page-89be__promo-card {
  background-color: #16213e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  box-sizing: border-box; /* Required for list items */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-89be__promo-card:hover {
  transform: translateY(-5px);
}

.page-89be__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  max-width: 100%; /* Responsive */
}

.page-89be__promo-title {
  font-size: 1.4em;
  color: #e94560;
  padding: 15px 15px 5px;
}

.page-89be__promo-text {
  color: #c0c0c0;
  padding: 0 15px 20px;
  font-size: 0.95em;
  flex-grow: 1;
}

.page-89be__promo-card .page-89be__button {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
  box-sizing: border-box;
}

/* Payment & Providers */
.page-89be__subsection {
  margin-top: 50px;
}

.page-89be__subsection-title {
  font-size: 1.8em;
  color: #e94560;
  margin-bottom: 30px;
}

.page-89be__logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted minmax for logos */
  gap: 20px;
  justify-items: center;
  align-items: center;
  padding: 0 20px;
}

.page-89be__logo-item {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  padding: 10px;
  background-color: #2a3b5c; /* Slightly lighter than main bg */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  min-width: 200px; /* Minimum size for logos as per requirement */
  min-height: 100px; /* Minimum size for logos as per requirement */
  box-sizing: border-box; /* Required for list items */
}

.page-89be__logo-item:hover {
  transform: translateY(-3px);
}