.page-blog-how-to-experience-77ball {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-blog-how-to-experience-77ball__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-experience-77ball__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-how-to-experience-77ball__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
}

.page-blog-how-to-experience-77ball__subsection-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #22C768; /* Auxiliary color for subheadings */
}

.page-blog-how-to-experience-77ball__section-description {
  font-size: clamp(16px, 2vw, 18px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-experience-77ball p {
  margin-bottom: 15px;
  font-size: clamp(15px, 1.8vw, 17px);
}

.page-blog-how-to-experience-77ball strong {
  color: #2AD16F;
}

/* Hero Section */
.page-blog-how-to-experience-77ball__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: 10px; /* Small top padding for visual separation */
  overflow: hidden;
}

.page-blog-how-to-experience-77ball__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-blog-how-to-experience-77ball__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-experience-77ball__main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
  line-height: 1.1;
}

.page-blog-how-to-experience-77ball__hero-description {
  font-size: clamp(18px, 2.2vw, 22px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
}

.page-blog-how-to-experience-77ball__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-blog-how-to-experience-77ball__btn-primary,
.page-blog-how-to-experience-77ball__btn-secondary,
.page-blog-how-to-experience-77ball__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  max-width: 100%;
}

.page-blog-how-to-experience-77ball__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-how-to-experience-77ball__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  transform: translateY(-2px);
}

.page-blog-how-to-experience-77ball__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-blog-how-to-experience-77ball__btn-secondary:hover {
  background: #2AD16F;
  color: #ffffff;
  border-color: #2AD16F;
  transform: translateY(-2px);
}

.page-blog-how-to-experience-77ball__btn-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  border: none;
  padding: 5px 0;
  font-weight: 600;
}

.page-blog-how-to-experience-77ball__btn-link:hover {
  text-decoration: underline;
  color: #2AD16F;
}

.page-blog-how-to-experience-77ball__btn-full-width {
  width: 100%;
  max-width: 350px;
  margin-top: 20px;
}

/* Content Wrapper with Image */
.page-blog-how-to-experience-77ball__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-blog-how-to-experience-77ball__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-blog-how-to-experience-77ball__text-block {
  flex: 1;
}

.page-blog-how-to-experience-77ball__image-content {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-experience-77ball__ordered-list,
.page-blog-how-to-experience-77ball__bullet-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-how-to-experience-77ball__ordered-list li,
.page-blog-how-to-experience-77ball__bullet-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-experience-77ball__ordered-list li:before {
  content: counter(list-item) ".";
  counter-increment: list-item;
  position: absolute;
  left: 0;
  color: #2AD16F;
  font-weight: 700;
}

.page-blog-how-to-experience-77ball__bullet-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2AD16F;
  font-weight: 700;
  font-size: 1.2em;
  top: -2px;
}

/* Game Grid */
.page-blog-how-to-experience-77ball__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-experience-77ball__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-how-to-experience-77ball__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-blog-how-to-experience-77ball__game-card-title {
  font-size: clamp(20px, 2.5vw, 24px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: 700;
}

.page-blog-how-to-experience-77ball__game-card-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog-how-to-experience-77ball__game-card-title a:hover {
  color: #2AD16F;
}

.page-blog-how-to-experience-77ball__game-card-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: clamp(14px, 1.6vw, 16px);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Promotions */
.page-blog-how-to-experience-77ball__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-experience-77ball__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-how-to-experience-77ball__promo-title {
  font-size: clamp(20px, 2.5vw, 24px);
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 700;
}

.page-blog-how-to-experience-77ball__promo-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: clamp(14px, 1.6vw, 16px);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Feature Grid */
.page-blog-how-to-experience-77ball__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-experience-77ball__feature-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-blog-how-to-experience-77ball__feature-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-blog-how-to-experience-77ball__feature-title {
  font-size: clamp(22px, 2.8vw, 28px);
  color: #2AD16F;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-blog-how-to-experience-77ball__feature-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: clamp(15px, 1.8vw, 17px);
  margin-bottom: 20px;
}

/* FAQ Section */
.page-blog-how-to-experience-77ball__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-blog-how-to-experience-77ball__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-blog-how-to-experience-77ball__faq-item summary {
  list-style: none; /* Hide default marker */
}

.page-blog-how-to-experience-77ball__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-blog-how-to-experience-77ball__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 20px);
  color: #F2FFF6; /* Text Main */
  background-color: #1E3A2A; /* Divider for question background */
  transition: background-color 0.3s ease;
}

.page-blog-how-to-experience-77ball__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-how-to-experience-77ball__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-experience-77ball__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-blog-how-to-experience-77ball__faq-answer {
  padding: 15px 25px 20px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #2E7A4E; /* Border */
}

/* Final CTA Section */
.page-blog-how-to-experience-77ball__final-cta {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
  text-align: center;
}

.page-blog-how-to-experience-77ball__final-cta .page-blog-how-to-experience-77ball__section-title {
  color: #F2C14E; /* Gold */
}

.page-blog-how-to-experience-77ball__final-cta .page-blog-how-to-experience-77ball__section-description {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 50px;
}

.page-blog-how-to-experience-77ball__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-blog-how-to-experience-77ball__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-how-to-experience-77ball__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-blog-how-to-experience-77ball__image-content {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .page-blog-how-to-experience-77ball__hero-content {
    padding: 30px 15px;
  }

  .page-blog-how-to-experience-77ball__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-experience-77ball__section {
    padding: 40px 0;
  }

  .page-blog-how-to-experience-77ball__container {
    padding: 0 15px;
  }

  /* Images */
  .page-blog-how-to-experience-77ball img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-experience-77ball__section,
  .page-blog-how-to-experience-77ball__card,
  .page-blog-how-to-experience-77ball__container,
  .page-blog-how-to-experience-77ball__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-experience-77ball__hero-section {
    padding-top: 10px !important;
  }

  .page-blog-how-to-experience-77ball__hero-image {
    object-position: center top; /* Adjust hero image for mobile */
  }

  /* Buttons */
  .page-blog-how-to-experience-77ball__btn-primary,
  .page-blog-how-to-experience-77ball__btn-secondary,
  .page-blog-how-to-experience-77ball a[class*="button"],
  .page-blog-how-to-experience-77ball 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-blog-how-to-experience-77ball__cta-buttons,
  .page-blog-how-to-experience-77ball__button-group,
  .page-blog-how-to-experience-77ball__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-how-to-experience-77ball__cta-buttons {
    flex-direction: column;
  }

  .page-blog-how-to-experience-77ball__game-card-image,
  .page-blog-how-to-experience-77ball__feature-icon {
    height: auto; /* Allow height to adjust */
  }

  .page-blog-how-to-experience-77ball__game-grid,
  .page-blog-how-to-experience-77ball__promo-grid,
  .page-blog-how-to-experience-77ball__feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Ensure contrast for text on dark backgrounds */
.page-blog-how-to-experience-77ball__dark-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

/* Specific contrast for final CTA section with Deep Green */
.page-blog-how-to-experience-77ball__final-cta {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-experience-77ball__final-cta .page-blog-how-to-experience-77ball__section-description {
  color: #A7D9B8; /* Text Secondary */
}

/* Links within content */
.page-blog-how-to-experience-77ball a {
  color: #2AD16F; /* A bright green for links */
  text-decoration: none;
}

.page-blog-how-to-experience-77ball a:hover {
  text-decoration: underline;
  color: #57E38D; /* Glow on hover */
}

/* No CSS filters on images */
.page-blog-how-to-experience-77ball img {
  filter: none;
}