/* General Styling for pp88i page */
.page-pp88i {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #1a1a2e; /* Dark background */
  line-height: 1.6;
  overflow-x: hidden;
}

/* Floating Buttons */
.page-pp88i__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-pp88i__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-pp88i__btn--register {
  background-color: #ffcc00; /* Gold */
  color: #1a1a2e;
}

.page-pp88i__btn--register:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-pp88i__btn--login {
  background-color: #007bff; /* Blue */
  color: #ffffff;
}

.page-pp88i__btn--login:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-pp88i__btn--primary {
  background-color: #e6b800; /* Gold */
  color: #1a1a2e;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
}

.page-pp88i__btn--primary:hover {
  background-color: #cc9900;
  transform: translateY(-2px);
}

.page-pp88i__btn--secondary {
  background-color: transparent;
  color: #e6b800;
  border: 2px solid #e6b800;
  padding: 13px 28px;
  font-size: 18px;
}

.page-pp88i__btn--secondary:hover {
  background-color: #e6b800;
  color: #1a1a2e;
  transform: translateY(-2px);
}

.page-pp88i__btn--access,
.page-pp88i__btn--game,
.page-pp88i__btn--promo,
.page-pp88i__btn--contact,
.page-pp88i__btn--read-more {
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
}

.page-pp88i__btn--access:hover,
.page-pp88i__btn--game:hover,
.page-pp88i__btn--promo:hover,
.page-pp88i__btn--contact:hover,
.page-pp88i__btn--read-more:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Section Styling */
.page-pp88i__section-title {
  font-size: 3em;
  color: #ffcc00; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-pp88i__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #007bff;
  border-radius: 2px;
}

.page-pp88i__sub-title {
  font-size: 2em;
  color: #ffcc00;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Hero Section */
.page-pp88i__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 20px 80px; /* Small top padding, larger bottom for content */
  min-height: 600px;
  color: #ffffff;
  overflow: hidden;
  background-color: #0d1117; /* Darker background for hero */
}

.page-pp88i__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-pp88i__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
  max-width: 100%; /* Ensure responsiveness */
}

.page-pp88i__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-pp88i__hero-title {
  font-size: 4.5em;
  margin-bottom: 20px;
  color: #ffcc00;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-pp88i__hero-subtitle {
  font-size: 1.8em;
  margin-bottom: 40px;
  color: #e0e0e0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.page-pp88i__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Intro Section */
.page-pp88i__intro-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-pp88i__intro-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #c0c0c0;
}

.page-pp88i__features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.page-pp88i__feature-item {
  background-color: #2a2a4a;
  padding: 30px;
  border-radius: 10px;
  flex: 1 1 300px;
  max-width: 350px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.page-pp88i__feature-item:hover {
  transform: translateY(-10px);
}

.page-pp88i__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
}

.page-pp88i__feature-title {
  font-size: 1.8em;
  color: #ffcc00;
  margin-bottom: 15px;
}

.page-pp88i__feature-description {
  color: #b0b0b0;
}

/* Quick Access Section */
.page-pp88i__quick-access-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background-color: #1a1a2e;
}

.page-pp88i__access-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-pp88i__btn--access {
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 8px;
}

/* Games Section */
.page-pp88i__games-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #0d1117;
}

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

.page-pp88i__game-card {
  background-color: #2a2a4a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.page-pp88i__game-card:hover {
  transform: translateY(-10px);
}

.page-pp88i__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  max-width: 100%;
  height: auto;
}

.page-pp88i__game-title {
  font-size: 1.8em;
  color: #ffcc00;
  margin: 20px 0 10px;
}

.page-pp88i__game-description {
  color: #b0b0b0;
  padding: 0 20px 20px;
  min-height: 70px; /* Ensure consistent height */
}

.page-pp88i__btn--game {
  margin-bottom: 20px;
  border-radius: 8px;
}

/* Promotions Section */
.page-pp88i__promotions-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #1a1a2e;
}

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

.page-pp88i__promotion-card {
  background-color: #2a2a4a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.page-pp88i__promotion-card:hover {
  transform: translateY(-10px);
}

.page-pp88i__promotion-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  max-width: 100%;
  height: auto;
}

.page-pp88i__promotion-title {
  font-size: 1.8em;
  color: #ffcc00;
  margin: 20px 0 10px;
}

.page-pp88i__promotion-description {
  color: #b0b0b0;
  padding: 0 20px 20px;
  min-height: 60px; /* Ensure consistent height */
}

.page-pp88i__btn--promo {
  margin-bottom: 20px;
  border-radius: 8px;
}

/* Security & Support Section */
.page-pp88i__security-support-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #0d1117;
}

.page-pp88i__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}