.terms-page {
  padding-bottom: 60px;
}
.terms-page .terms-hero {
  padding: 60px 30px;
  border-radius: 24px;
  background: var(--tcgem-card-bg, rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}
.terms-page .terms-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.terms-page .terms-hero .lead {
  max-width: 900px;
  margin: auto;
  opacity: .85;
}
.terms-page .terms-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  background: rgba(13, 110, 253, 0.12);
}
.terms-page .terms-card {
  padding: 32px;
  border-radius: 22px;
  background: var(--tcgem-card-bg, rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
}
.terms-page .terms-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.terms-page .terms-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.terms-page .terms-card ul {
  padding-left: 20px;
}
.terms-page .terms-card ul li {
  margin-bottom: 10px;
}
.terms-page .tcg-box {
  height: 100%;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.terms-page .legal-box {
  font-size: .95rem;
  opacity: .92;
}
#main.main-theme-light .terms-page .terms-card,
#main.main-theme-light .terms-page .terms-hero,
#main.main-theme-light .terms-page .tcg-box {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
}
@media (max-width: 768px) {
  .terms-page .terms-hero {
    padding: 40px 20px;
  }
  .terms-page .terms-hero h1 {
    font-size: 1.8rem;
  }
  .terms-page .terms-card {
    padding: 24px;
  }
}
/* Animation cascade + correction thème sommaire */
.terms-page .terms-summary-link {
  color: inherit;
  opacity: .82;
  border: 1px solid transparent;
}
.terms-page .terms-summary-link:hover {
  color: inherit;
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.08);
}
.terms-page .terms-summary-link.is-active {
  color: inherit;
  opacity: 1;
  border-color: rgba(13, 110, 253, 0.2);
}
.terms-page .terms-page-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease,
            transform .45s ease;
}
.terms-page .terms-page-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
#main.main-theme-light .terms-page .terms-summary-link:hover {
  border-color: rgba(0, 0, 0, 0.08);
}
#main.main-theme-light .terms-page .terms-summary-link.is-active {
  border-color: rgba(13, 110, 253, 0.24);
}
@media (prefers-reduced-motion: reduce) {
  .terms-page .terms-page-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/*# sourceMappingURL=terms-of-use.min.css.map */