/* style/vip-club.css */
.page-vip-club {
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: transparent; /* inherited from body */
}

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

.page-vip-club__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Gold accent for titles */
}

.page-vip-club__section-title--cta {
  color: #1A2B42;
}

.page-vip-club__text-block {
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__text-block--note {
  font-style: italic;
  font-size: 15px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.8);
}

.page-vip-club__text-block--cta {
  color: #333333;
  margin-bottom: 40px;
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-vip-club__btn-primary {
  background-color: #FFD700; /* Gold accent */
  color: #1A2B42; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-vip-club__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-vip-club__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold accent text */
  border: 2px solid #FFD700;
}

.page-vip-club__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B42; /* Dark blue text */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-vip-club__btn-primary--large,
.page-vip-club__btn-secondary--large {
  padding: 16px 35px;
  font-size: 18px;
}

.page-vip-club__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Sections */
.page-vip-club__hero-banner {
  position: relative;
  padding-top: var(--header-offset, 120px);
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.page-vip-club__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-vip-club__hero-title {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent */
  line-height: 1.2;
}

.page-vip-club__hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

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

.page-vip-club__hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image to ensure text contrast */
}

.page-vip-club__intro-section,
.page-vip-club__bonuses-section,
.page-vip-club__events-section,
.page-vip-club__responsible-gaming-section,
.page-vip-club__cta-section {
  padding: 80px 0;
  background-color: #121212; /* Inherit body dark background */
}

.page-vip-club__tiers-section,
.page-vip-club__services-section,
.page-vip-club__join-section,
.page-vip-club__faq-section {
  padding: 80px 0;
  background-color: #1A2B42; /* Dark blue background */
}

/* Light bg for sections with dark background */
.page-vip-club__light-bg {
  color: #333333;
  background-color: #f8f9fa;
}

.page-vip-club__light-bg .page-vip-club__section-title {
  color: #1A2B42;
}

.page-vip-club__light-bg .page-vip-club__text-block {
  color: #333333;
}

.page-vip-club__light-bg .page-vip-club__btn-primary {
  background-color: #1A2B42;
  color: #ffffff;
  border-color: #1A2B42;
}

.page-vip-club__light-bg .page-vip-club__btn-primary:hover {
  background-color: #0d1a2b;
  border-color: #0d1a2b;
}

.page-vip-club__light-bg .page-vip-club__btn-secondary {
  background-color: transparent;
  color: #1A2B42;
  border-color: #1A2B42;
}

.page-vip-club__light-bg .page-vip-club__btn-secondary:hover {
  background-color: #1A2B42;
  color: #ffffff;
}

/* Dark bg for sections with light background */
.page-vip-club__dark-section {
  color: #ffffff;
  background-color: #1A2B42;
}

.page-vip-club__dark-section .page-vip-club__section-title {
  color: #FFD700;
}

.page-vip-club__dark-section .page-vip-club__text-block {
  color: rgba(255, 255, 255, 0.9);
}

/* Tiers Section */
.page-vip-club__tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club__tier-card {
  background-color: #f8f9fa; /* Light background for cards */
  color: #333333; /* Dark text for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-vip-club__tier-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-club__tier-title {
  font-size: 24px;
  font-weight: bold;
  color: #1A2B42;
  margin-bottom: 15px;
}

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-vip-club__tier-benefits li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  padding-left: 25px;
  color: #555555;
}

.page-vip-club__tier-benefits li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

/* Bonuses Section */
.page-vip-club__bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club__bonus-card {
  background-color: #1A2B42; /* Dark blue background for cards */
  color: #ffffff; /* Light text for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-vip-club__bonus-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-club__bonus-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club__bonus-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Services Section */
.page-vip-club__services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club__service-item {
  background-color: #f8f9fa; /* Light background for cards */
  color: #333333; /* Dark text for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-vip-club__service-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-club__service-title {
  font-size: 22px;
  font-weight: bold;
  color: #1A2B42;
  margin-bottom: 15px;
}

.page-vip-club__service-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

/* Events Section */
.page-vip-club__event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club__event-card {
  background-color: #1A2B42; /* Dark blue background for cards */
  color: #ffffff; /* Light text for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-vip-club__event-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-club__event-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club__event-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Join Section */
.page-vip-club__join-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club__step-item {
  background-color: #f8f9fa; /* Light background for cards */
  color: #333333; /* Dark text for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-vip-club__step-item img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  
  
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #FFD700;
}

.page-vip-club__step-item h3 {
  font-size: 20px;
  font-weight: bold;
  color: #1A2B42;
  margin-bottom: 10px;
}

.page-vip-club__step-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

.page-vip-club__step-item a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club__step-item a:hover {
  text-decoration: underline;
}

/* Responsible Gaming Section */
.page-vip-club__responsible-gaming-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.page-vip-club__responsible-gaming-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-vip-club__responsible-gaming-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-vip-club__responsible-gaming-list {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-vip-club__responsible-gaming-list li {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.6;
  position: relative;
  padding-left: 35px;
  color: #333333;
}

.page-vip-club__responsible-gaming-list li strong {
  color: #1A2B42;
}

.page-vip-club__responsible-gaming-list li::before {
  content: '💡';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
}

/* FAQ Section */
.page-vip-club__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-vip-club__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05); /* Light transparent background for dark theme */
  border-radius: 0 0 5px 5px;
  color: rgba(255, 255, 255, 0.8);
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #1A2B42; /* Dark blue background for questions */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-vip-club__faq-question:hover {
  background: #2a3e59;
  border-color: rgba(255, 255, 255, 0.2);
}

.page-vip-club__faq-question:active {
  background: #3c5270;
}

.page-vip-club__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff; /* Light text for questions */
}

.page-vip-club__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Gold accent for toggle */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg);
}

/* CTA Section */
.page-vip-club__cta-container {
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.page-vip-club__floating-btn {
  display: block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-vip-club__floating-btn--register {
  background-color: #FFD700;
  color: #1A2B42;
}

.page-vip-club__floating-btn--register:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-vip-club__floating-btn--login {
  background-color: #1A2B42;
  color: #ffffff;
  border: 1px solid #FFD700;
}

.page-vip-club__floating-btn--login:hover {
  background-color: #0d1a2b;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 44px;
  }
  .page-vip-club__section-title {
    font-size: 30px;
  }
  .page-vip-club__text-block {
    font-size: 16px;
  }
  .page-vip-club__tiers-grid,
  .page-vip-club__bonus-grid,
  .page-vip-club__services-grid,
  .page-vip-club__event-grid,
  .page-vip-club__join-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-club {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-vip-club__hero-banner {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 60px;
  }
  .page-vip-club__hero-title {
    font-size: 36px;
  }
  .page-vip-club__hero-description {
    font-size: 18px;
  }
  .page-vip-club__intro-section,
  .page-vip-club__bonuses-section,
  .page-vip-club__events-section,
  .page-vip-club__responsible-gaming-section,
  .page-vip-club__cta-section,
  .page-vip-club__tiers-section,
  .page-vip-club__services-section,
  .page-vip-club__join-section,
  .page-vip-club__faq-section {
    padding: 60px 0;
  }
  .page-vip-club__container {
    padding: 0 15px;
  }
  .page-vip-club__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-vip-club__text-block {
    font-size: 15px;
  }
  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary,
  .page-vip-club a[class*="button"],
  .page-vip-club a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-club__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club__tier-card,
  .page-vip-club__bonus-card,
  .page-vip-club__service-item,
  .page-vip-club__event-card,
  .page-vip-club__step-item {
    padding: 25px;
  }
  .page-vip-club__tier-title,
  .page-vip-club__bonus-title,
  .page-vip-club__service-title,
  .page-vip-club__event-title,
  .page-vip-club__step-item h3 {
    font-size: 20px;
  }
  .page-vip-club__tier-benefits li,
  .page-vip-club__bonus-description,
  .page-vip-club__service-description,
  .page-vip-club__event-description,
  .page-vip-club__step-item p {
    font-size: 15px;
  }
  .page-vip-club__responsible-gaming-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-vip-club__responsible-gaming-list li {
    font-size: 15px;
  }
  .page-vip-club__faq-question {
    padding: 15px;
  }
  .page-vip-club__faq-question h3 {
    font-size: 16px;
  }
  .page-vip-club__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 15px !important;
  }
  .page-vip-club__floating-buttons {
    bottom: 15px;
    right: 15px;
  }
  .page-vip-club__floating-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}

/* Ensure images are responsive */
.page-vip-club img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container,
  .page-vip-club__hero-container,
  .page-vip-club__tiers-grid,
  .page-vip-club__bonus-grid,
  .page-vip-club__services-grid,
  .page-vip-club__event-grid,
  .page-vip-club__join-steps,
  .page-vip-club__responsible-gaming-content,
  .page-vip-club__faq-list,
  .page-vip-club__cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-club__floating-buttons {
    flex-direction: row;
    width: calc(100% - 30px);
    justify-content: space-around;
  }
  .page-vip-club__floating-btn {
    flex: 1;
  }
}