.page-resources-deep-dive-into-777vin-platform {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000 (dark), so use light text */
  background-color: #000; /* Ensured consistent with shared.css body background */
}

.page-resources-deep-dive-into-777vin-platform__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-resources-deep-dive-into-777vin-platform__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-resources-deep-dive-into-777vin-platform__section-title {
  font-size: 38px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-deep-dive-into-777vin-platform__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-deep-dive-into-777vin-platform__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

/* HERO Section */
.page-resources-deep-dive-into-777vin-platform__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #1A1A1A; /* Dark background for hero */
}

.page-resources-deep-dive-into-777vin-platform__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-deep-dive-into-777vin-platform__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-deep-dive-into-777vin-platform__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-deep-dive-into-777vin-platform__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-deep-dive-into-777vin-platform__main-title {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-deep-dive-into-777vin-platform__intro-text {
  font-size: 20px;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources-deep-dive-into-777vin-platform__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-deep-dive-into-777vin-platform__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-deep-dive-into-777vin-platform__btn-primary {
  background: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

.page-resources-deep-dive-into-777vin-platform__btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-deep-dive-into-777vin-platform__btn-secondary {
  background: #1A1A1A;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-deep-dive-into-777vin-platform__btn-secondary:hover {
  background: #000;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-deep-dive-into-777vin-platform__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Image content */
.page-resources-deep-dive-into-777vin-platform__image-content {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* Dark background section */
.page-resources-deep-dive-into-777vin-platform__dark-bg {
  background-color: #1A1A1A;
  color: #ffffff;
}

/* Features Grid */
.page-resources-deep-dive-into-777vin-platform__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-deep-dive-into-777vin-platform__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-deep-dive-into-777vin-platform__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-deep-dive-into-777vin-platform__feature-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-deep-dive-into-777vin-platform__feature-description {
  font-size: 16px;
  color: #e0e0e0;
}

/* Game Categories */
.page-resources-deep-dive-into-777vin-platform__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-deep-dive-into-777vin-platform__game-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-deep-dive-into-777vin-platform__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-deep-dive-into-777vin-platform__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-deep-dive-into-777vin-platform__game-title {
  font-size: 22px;
  color: #FFD700;
  padding: 15px 20px 5px;
}

.page-resources-deep-dive-into-777vin-platform__game-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-deep-dive-into-777vin-platform__game-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-resources-deep-dive-into-777vin-platform__game-description {
  font-size: 15px;
  color: #e0e0e0;
  padding: 0 20px 20px;
}

/* Promotions List */
.page-resources-deep-dive-into-777vin-platform__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-deep-dive-into-777vin-platform__promo-item {
  padding: 25px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-deep-dive-into-777vin-platform__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-deep-dive-into-777vin-platform__promo-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-deep-dive-into-777vin-platform__promo-item p {
  font-size: 16px;
  color: #e0e0e0;
}

/* Info Grid (Security, Payment, Support) */
.page-resources-deep-dive-into-777vin-platform__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-deep-dive-into-777vin-platform__info-item {
  padding: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-deep-dive-into-777vin-platform__info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-deep-dive-into-777vin-platform__info-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}