/* terms-of-use.css - page-specific styles for FoxSocAU Terms of Use */

.terms-hero {
  background: linear-gradient(90deg, #1c1830 0%, #252539 100%); /* casino dark gradient */
  color: var(--color-text);
  padding: var(--space-10) 0 var(--space-7) 0;
  border-bottom: 3px solid var(--color-primary);
  min-height: 180px;
}
.terms-title {
  font-size: var(--font-size-3xl);
  text-align: center;
  margin-bottom: var(--space-2);
  letter-spacing: 0.04em;
}
.terms-lead {
  text-align: center;
  margin-bottom: var(--space-3);
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: var(--color-warning);
}
.terms-lead .chip {
  vertical-align: middle;
  margin-left: var(--space-2);
  font-size: var(--font-size-xs);
  background: var(--color-danger);
}

.terms-content-section {
  background: var(--color-background);
  padding: var(--space-10) 0 var(--space-8) 0;
}
.card.terms-list, .terms-content-section .card {
  max-width: 900px;
  margin: 0 auto var(--space-7) auto;
  padding: var(--space-7) var(--space-6);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--color-primary);
}
.terms-list, .terms-section ul {
  margin-left: var(--space-4);
  margin-bottom: var(--space-4);
}
.terms-section {
  margin-bottom: var(--space-6);
}
.terms-section h2 {
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-1);
}
.terms-section ul {
  list-style-type: disc;
  color: var(--color-text);
  margin-top: var(--space-2);
}
.terms-section ul li {
  margin-bottom: var(--space-1);
  line-height: 1.45;
}
.terms-section a {
  text-decoration: underline;
}
.cta-section {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 2px solid var(--color-surface);
}
.cta-title {
  color: var(--color-success);
  margin-bottom: var(--space-3);
  font-size: var(--font-size-2xl);
}
.cta-section p {
  margin-bottom: var(--space-4);
  color: var(--color-gray-100);
  font-size: var(--font-size-lg);
}
@media (max-width: 900px) {
  .terms-content-section .card {
    padding: var(--space-6) var(--space-3);
  }
}
@media (max-width: 600px) {
  .terms-hero { padding: var(--space-8) 0 var(--space-6) 0; }
  .terms-title { font-size: var(--font-size-2xl); }
  .terms-lead { font-size: var(--font-size-base); }
  .terms-content-section { padding: var(--space-6) 0; }
  .cta-section { margin-top: var(--space-6); padding-top: var(--space-3); }
}
