/* style/vip-zone-exclusive-games.css */
.page-vip-zone-exclusive-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for main text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

.page-vip-zone-exclusive-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-vip-zone-exclusive-games__hero-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #0A192F 0%, #1a3055 100%); /* Dark blue gradient */
  overflow: hidden;
}

.page-vip-zone-exclusive-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-vip-zone-exclusive-games__hero-section > .page-vip-zone-exclusive-games__container {
  position: relative;
  z-index: 1;
}

.page-vip-zone-exclusive-games__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-vip-zone-exclusive-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF; /* White for hero description */
}

.page-vip-zone-exclusive-games__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-vip-zone-exclusive-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-vip-zone-exclusive-games__btn--primary {
  background-color: #FFD700; /* Gold for primary button */
  color: #0A192F; /* Dark blue text on gold */
}

.page-vip-zone-exclusive-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-vip-zone-exclusive-games__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-vip-zone-exclusive-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-vip-zone-exclusive-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-vip-zone-exclusive-games__btn--center {
  display: block;
  margin: 40px auto 20px auto;
}

.page-vip-zone-exclusive-games__section {
  padding: 80px 0;
  background-color: #0A192F; /* Consistent dark blue background */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-vip-zone-exclusive-games__section:nth-of-type(even) {
  background-color: #1a2b47; /* Slightly lighter dark blue for alternating sections */
}

.page-vip-zone-exclusive-games__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-vip-zone-exclusive-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-vip-zone-exclusive-games__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #E0E0E0;
}

.page-vip-zone-exclusive-games__feature-list,
.page-vip-zone-exclusive-games__steps-list,
.page-vip-zone-exclusive-games__service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-vip-zone-exclusive-games__feature-list li,
.page-vip-zone-exclusive-games__steps-list li,
.page-vip-zone-exclusive-games__service-list li {
  background-color: #1a2b47; /* Lighter dark blue for list items */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700; /* Gold accent */
  color: #E0E0E0;
}

.page-vip-zone-exclusive-games__feature-list li strong {
  color: #FFD700;
  font-size: 1.1em;
  display: block;
  margin-bottom: 10px;
}

.page-vip-zone-exclusive-games__image-right {
  width: 100%;
  max-width: 500px;
  float: right;
  margin: 0 0 20px 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-zone-exclusive-games__image-left {
  width: 100%;
  max-width: 500px;
  float: left;
  margin: 0 40px 20px 0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-zone-exclusive-games__image-center {
  display: block;
  margin: 40px auto;
  max-width: 700px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-zone-exclusive-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-zone-exclusive-games__game-card {
  background-color: #1a2b47;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding-bottom: 20px;
}

.page-vip-zone-exclusive-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-vip-zone-exclusive-games__game-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-vip-zone-exclusive-games__game-description {
  font-size: 0.95em;
  color: #E0E0E0;
  padding: 0 15px;
  margin-bottom: 25px;
}

.page-vip-zone-exclusive-games__how-to-vip .page-vip-zone-exclusive-games__container,
.page-vip-zone-exclusive-games__support-security .page-vip-zone-exclusive-games__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-vip-zone-exclusive-games__how-to-vip .page-vip-zone-exclusive-games__image-left,
.page-vip-zone-exclusive-games__support-security .page-vip-zone-exclusive-games__image-right {
  float: none;
  margin: 40px auto 0 auto;
  order: -1; /* Place image above text on small screens */
}

.page-vip-zone-exclusive-games__tip-item {
  background-color: #1a2b47;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-right: 5px solid #FFD700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-zone-exclusive-games__tip-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-vip-zone-exclusive-games__tip-item p {
  color: #E0E0E0;
}

.page-vip-zone-exclusive-games__testimonials {
  background-color: #1a2b47;
}

.page-vip-zone-exclusive-games__testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-zone-exclusive-games__testimonial-card {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  border-bottom: 4px solid #FFD700;
}

.page-vip-zone-exclusive-games__testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  color: #FFFFFF;
  font-size: 1.05em;
}

.page-vip-zone-exclusive-games__testimonial-author {
  font-weight: bold;
  color: #FFD700;
  text-align: right;
}

.page-vip-zone-exclusive-games__faq-item {
  background-color: #1a2b47;
  padding: 20px 30px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-vip-zone-exclusive-games__faq-question {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-vip-zone-exclusive-games__faq-answer {
  color: #E0E0E0;
}

.page-vip-zone-exclusive-games__text-link {
  color: #FFD700;
  text-decoration: underline;
}

.page-vip-zone-exclusive-games__text-link:hover {
  color: #e6c200;
}

.page-vip-zone-exclusive-games__cta-final {
  background: linear-gradient(45deg, #0A192F, #1a3055);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-vip-zone-exclusive-games__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-vip-zone-exclusive-games__cta-final > .page-vip-zone-exclusive-games__container {
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-zone-exclusive-games__main-title {
    font-size: 2.8em;
  }
  .page-vip-zone-exclusive-games__section-title {
    font-size: 2em;
  }
  .page-vip-zone-exclusive-games__hero-description,
  .page-vip-zone-exclusive-games__section-intro {
    font-size: 1.1em;
  }
  .page-vip-zone-exclusive-games__image-right,
  .page-vip-zone-exclusive-games__image-left {
    float: none;
    margin: 40px auto;
  }
}

@media (max-width: 768px) {
  .page-vip-zone-exclusive-games__hero-section,
  .page-vip-zone-exclusive-games__section,
  .page-vip-zone-exclusive-games__cta-final {
    padding: 60px 0;
  }
  .page-vip-zone-exclusive-games__main-title {
    font-size: 2.2em;
  }
  .page-vip-zone-exclusive-games__section-title {
    font-size: 1.8em;
  }
  .page-vip-zone-exclusive-games__hero-description,
  .page-vip-zone-exclusive-games__section-intro {
    font-size: 1em;
  }
  .page-vip-zone-exclusive-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-zone-exclusive-games__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-vip-zone-exclusive-games__feature-list,
  .page-vip-zone-exclusive-games__steps-list,
  .page-vip-zone-exclusive-games__service-list,
  .page-vip-zone-exclusive-games__game-grid,
  .page-vip-zone-exclusive-games__testimonial-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-zone-exclusive-games__image-right,
  .page-vip-zone-exclusive-games__image-left,
  .page-vip-zone-exclusive-games__image-center {
    max-width: 90%;
  }
  .page-vip-zone-exclusive-games__tip-item,
  .page-vip-zone-exclusive-games__faq-item {
    padding: 20px;
  }
  .page-vip-zone-exclusive-games__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-vip-zone-exclusive-games__main-title {
    font-size: 1.8em;
  }
  .page-vip-zone-exclusive-games__section-title {
    font-size: 1.5em;
  }
  .page-vip-zone-exclusive-games__hero-description,
  .page-vip-zone-exclusive-games__section-intro {
    font-size: 0.9em;
  }
  .page-vip-zone-exclusive-games__btn {
    width: 95%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-vip-zone-exclusive-games__game-title {
    font-size: 1.4em;
  }
  .page-vip-zone-exclusive-games__game-description {
    font-size: 0.85em;
  }
}