
    /* Base styles for the tai-7clubs page */
.page-tai-7clubs {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  background-color: #1a1a1a;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, expecting shared.css to handle main header offset */
}

.page-tai-7clubs__section-title {
  font-size: 2.5em;
  color: #ffcc00;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-tai-7clubs__section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  color: #cccccc;
}

/* Hero Section */
.page-tai-7clubs__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #2a0a0a, #1a1a1a);
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #ffcc00;
}

.page-tai-7clubs__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
  object-fit: cover;
}

.page-tai-7clubs__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-tai-7clubs__hero-title {
  font-size: 3.5em;
  color: #ffcc00;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-tai-7clubs__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tai-7clubs__download-button {
  display: inline-block;
  background-color: #ffcc00;
  color: #1a1a1a;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.page-tai-7clubs__download-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-tai-7clubs__download-button--bottom {
  margin-top: 60px;
}

/* Benefits Section */
.page-tai-7clubs__benefits-section {
  padding: 80px 20px;
  background-color: #222222;
}

.page-tai-7clubs__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-tai-7clubs__benefit-item {
  background-color: #333333;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-tai-7clubs__benefit-item:hover {
  transform: translateY(-10px);
  background-color: #444444;
}

.page-tai-7clubs__benefit-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-tai-7clubs__benefit-title {
  font-size: 1.6em;
  color: #ffcc00;
  margin-bottom: 15px;
}

.page-tai-7clubs__benefit-text {
  font-size: 1em;
  color: #cccccc;
}

/* Download Guide Section */
.page-tai-7clubs__download-guide-section {
  padding: 80px 20px;
  background-color: #1a1a1a;
}

.page-tai-7clubs__guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-tai-7clubs__guide-item {
  background-color: #2c2c2c;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.page-tai-7clubs__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-tai-7clubs__guide-title {
  font-size: 2em;
  color: #ffcc00;
  margin-bottom: 25px;
  text-align: center;
}

.page-tai-7clubs__guide-item ol {
  list-style-type: decimal;
  padding-left: 25px;
  color: #cccccc;
  font-size: 1.1em;
}

.page-tai-7clubs__guide-item ol li {
  margin-bottom: 15px;
  box-sizing: border-box; /* Required for list items */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Games Section */
.page-tai-7clubs__games-section {
  padding: 80px 20px;
  background-color: #222222;
}

.page-tai-7clubs__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-tai-7clubs__game-item {
  background-color: #333333;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tai-7clubs__game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-tai-7clubs__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #ffcc00;
}

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

.page-tai-7clubs__game-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 20px 20px;
}

/* Promotions Section */
.page-tai-7clubs__promotions-section {
  padding: 80px 20px;
  background-color: #1a1a1a;
}

.page-tai-7clubs__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-tai-7clubs__promo-item {
  background-color: #2c2c2c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tai-7clubs__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-tai-7clubs__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #ffcc00;
}

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

.page-tai-7clubs__promo-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 20px 20px;
}

/* Partners and Payments Section */
.page-tai-7clubs__partners-payments-section {
  padding: 80px 20px;
  background-color: #222222;
}

.page-tai-7clubs__content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-tai-7clubs__subsection {
  background-color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-tai-7clubs__subsection-title {
  font-size: 1.8em;
  color: #ffcc00;
  margin-bottom: 25px;
  text-align: center;
}

.page-tai-7clubs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.page-tai-7clubs__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  color: #cccccc;
  background-color: #444444;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  box-sizing: border-box; /* Required for list items */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-tai-7clubs__partner-logo,
.page-tai-7clubs__payment-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 3px;
}

/* Social Media Section */
.page-tai-7clubs__social-media-section {
  padding: 80px 20px;
  background-color: #1a1a1a;
}

.page-tai-7clubs__social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-tai-7clubs__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #333333;
  color: #ffcc00;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  min-width: 120px;
  text-align: center;
}

.page-tai-7clubs__social-link:hover {
  background-color: #444444;
  transform: translateY(-3px);
}

.page-tai-7clubs__social-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* FAQ Section */
.page-tai-7clubs__faq-section {
  padding: 80px 20px;
  background-color: #2c2c2c;
}

.page-tai-7clubs__faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-tai-7clubs__faq-item {
  background-color: #3a3a3a;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.page-tai-7clubs__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #4a4a4a;
  color: #ffcc00;
  cursor: pointer;
  user-select: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-tai-7clubs__faq-question:hover {
  background-color: #5a5a5a;
}

.page-tai-7clubs__faq-title {
  margin: 0;
  font-size: 1em; /* Adjust to fit parent font size */
  color: #ffcc00;
}

.page-tai-7clubs__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #ffcc00;
}

.page-tai-7clubs__faq-item.active .page-tai-7clubs__faq-toggle {
  transform: rotate(45deg);
}

.page-tai-7clubs__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  color: #cccccc;
  font-size: 1.1em;
}

.page-tai-7clubs__faq-item.active .page-tai-7clubs__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 25px !important;
  opacity: 1;
}

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

.page-tai-7clubs__floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffcc00;
  color: #1a1a1a;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  min-width: 120px;
  text-align: center;
}

.page-tai-7clubs__floating-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-tai-7clubs__floating-button--register {
  background-color: #007bff; /* Example color */
  color: #fff;
}

.page-tai-7clubs__floating-button--register:hover {
  background-color: #0056b3;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-tai-7clubs__guide-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-tai-7clubs__content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-tai-7clubs__hero-section {
    padding: 40px 15px;
  }

  .page-tai-7clubs__hero-title {
    font-size: 2.5em;
  }

  .page-tai-7clubs__hero-description {
    font-size: 1.1em;
  }

  .page-tai-7clubs__download-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }

  .page-tai-7clubs__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-tai-7clubs__section-intro {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-tai-7clubs__benefits-grid,
  .page-tai-7clubs__games-grid,
  .page-tai-7clubs__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-tai-7clubs__benefit-item,
  .page-tai-7clubs__game-item,
  .page-tai-7clubs__promo-item,
  .page-tai-7clubs__guide-item,
  .page-tai-7clubs__subsection {
    padding: 25px;
  }

  .page-tai-7clubs__benefit-title,
  .page-tai-7clubs__game-title,
  .page-tai-7clubs__promo-title,
  .page-tai-7clubs__guide-title,
  .page-tai-7clubs__subsection-title {
    font-size: 1.5em;
  }

  .page-tai-7clubs__guide-item ol,
  .page-tai-7clubs__list {
    padding-left: 0;
    display: block; /* Change to block for list items */
  }

  .page-tai-7clubs__guide-item ol li,
  .page-tai-7clubs__list-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 10px; /* Add some spacing between list items */
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-tai-7clubs__list-item:last-child {
    margin-bottom: 0;
  }

  .page-tai-7clubs__social-links {
    flex-direction: column;
    align-items: center;
  }

  .page-tai-7clubs__social-link {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }

  .page-tai-7clubs__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-tai-7clubs__faq-answer {
    padding: 15px 20px !important;
    font-size: 1em;
  }

  .page-tai-7clubs__floating-buttons {
    flex-direction: row;
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    justify-content: space-around;
  }

  .page-tai-7clubs__floating-button {
    flex: 1;
    padding: 10px 15px;
    font-size: 1em;
    min-width: unset;
  }

  .page-tai-7clubs__partner-logo,
  .page-tai-7clubs__payment-logo {
    width: 30px;
    height: 30px;
  }
}

/* Ensure images are responsive */
.page-tai-7clubs img {
  max-width: 100% !important;
  height: auto !important;
  box-sizing: border-box !important;
}

/* Ensure image containers are responsive */
.page-tai-7clubs__benefits-grid div,
.page-tai-7clubs__guide-grid div,
.page-tai-7clubs__games-grid div,
.page-tai-7clubs__promotions-grid div {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

  