.page-index-platform-overview {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
  background-color: #0A1931; /* Main background color */
}

.page-index-platform-overview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-platform-overview__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-platform-overview__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 30px;
  font-weight: bold;
}

.page-index-platform-overview__section-title .highlight {
  color: #FFFFFF; /* White for highlights within gold titles */
}

.page-index-platform-overview__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-index-platform-overview__text-content .keyword {
  color: #FFD700;
  font-weight: bold;
}

.page-index-platform-overview__text-center {
  text-align: center;
}

/* Hero Section */
.page-index-platform-overview__hero-section {
  background: linear-gradient(135deg, #0A1931, #2A3B5C);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-index-platform-overview__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[IMAGE:hero_main]'); /* Use hero image as background for subtle effect */
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-index-platform-overview__hero-content {
  max-width: 600px;
  z-index: 1;
}

.page-index-platform-overview__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-platform-overview__hero-title .highlight {
  color: #FFFFFF;
}

.page-index-platform-overview__hero-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-index-platform-overview__hero-image-wrapper {
  z-index: 1;
  flex-shrink: 0;
}

.page-index-platform-overview__hero-image {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-platform-overview__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

/* Buttons */
.page-index-platform-overview__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.page-index-platform-overview__btn--primary {
  background-color: #FFD700;
  color: #0A1931; /* Dark text on gold background for high contrast */
  border: 2px solid #FFD700;
}

.page-index-platform-overview__btn--primary:hover {
  background-color: #E6C200;
  color: #000000;
  transform: translateY(-3px);
}

.page-index-platform-overview__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-platform-overview__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-3px);
}

.page-index-platform-overview__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-index-platform-overview__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* About Platform Section */
.page-index-platform-overview__about-platform {
  background-color: #0A1931;
  position: relative;
  z-index: 2;
}

.page-index-platform-overview__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-index-platform-overview__feature-item {
  background-color: #1a2a47; /* Slightly lighter dark blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-index-platform-overview__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-platform-overview__feature-description {
  color: #C0C0C0;
  font-size: 1em;
}

.page-index-platform-overview__full-width-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Game Categories Section */
.page-index-platform-overview__game-categories {
  background-color: #10203D; /* A bit lighter than main background */
}

.page-index-platform-overview__game-category-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  text-align: left;
}

.page-index-platform-overview__game-category-item:last-child {
  margin-bottom: 0;
}

.page-index-platform-overview__game-category-item--reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.page-index-platform-overview__game-category-text {
  flex: 1;
}

.page-index-platform-overview__game-category-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-platform-overview__game-category-text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-index-platform-overview__game-category-text ul li {
  margin-bottom: 10px;
}

.page-index-platform-overview__game-category-text ul li strong {
  color: #FFD700;
}

.page-index-platform-overview__game-category-image-wrapper {
  flex-shrink: 0;
  width: 50%;
}

.page-index-platform-overview__game-category-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Promotions & VIP Section */
.page-index-platform-overview__promotions-vip {
  background-color: #0A1931;
}

.page-index-platform-overview__promo-list {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-index-platform-overview__promo-list li {
  background-color: #1a2a47;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: left;
  width: calc(50% - 20px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-index-platform-overview__promo-list li strong {
  color: #FFD700;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

/* Security & Support Section */
.page-index-platform-overview__security-support {
  background-color: #10203D;
}

.page-index-platform-overview__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-platform-overview__inline-link:hover {
  text-decoration: underline;
}

/* Final CTA Section */
.page-index-platform-overview__final-cta {
  background: linear-gradient(45deg, #0A1931, #2A3B5C);
  padding: 100px 0;
}

.page-index-platform-overview__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-platform-overview__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .page-index-platform-overview__hero-content {
    max-width: 100%;
  }

  .page-index-platform-overview__hero-actions {
    justify-content: center;
  }

  .page-index-platform-overview__hero-image {
    max-width: 80%;
    margin-top: 40px;
  }

  .page-index-platform-overview__game-category-item,
  .page-index-platform-overview__game-category-item--reverse {
    flex-direction: column;
    text-align: center;
  }

  .page-index-platform-overview__game-category-image-wrapper {
    width: 80%;
    margin-top: 30px;
  }

  .page-index-platform-overview__game-category-text ul {
    text-align: left;
    padding-left: 40px;
  }

  .page-index-platform-overview__promo-list li {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-platform-overview__section-title {
    font-size: 2.2em;
  }

  .page-index-platform-overview__hero-title {
    font-size: 2.8em;
  }

  .page-index-platform-overview__hero-description {
    font-size: 1.1em;
  }

  .page-index-platform-overview__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-platform-overview__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-index-platform-overview__features-grid {
    grid-template-columns: 1fr;
  }

  .page-index-platform-overview__promo-list li {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-platform-overview__section {
    padding: 50px 0;
  }

  .page-index-platform-overview__hero-section {
    padding: 60px 15px;
  }

  .page-index-platform-overview__hero-title {
    font-size: 2em;
  }

  .page-index-platform-overview__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-platform-overview__hero-image {
    max-width: 100%;
  }

  .page-index-platform-overview__btn {
    width: 100%;
  }

  .page-index-platform-overview__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-platform-overview__game-category-image-wrapper {
    width: 100%;
  }

  .page-index-platform-overview__game-category-text ul {
    padding-left: 20px;
  }
}