/* =========================================
   TERMS & CONDITIONS PAGE STYLES
   Premium Dark Theme
   ========================================= */

.legal-wrapper {
  padding: 60px 0;
  min-height: calc(100vh - 200px);
}

.legal-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  max-width: 900px;
  margin: 0 auto;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

/* Header */
.legal-card .text-center {
  margin-bottom: 30px;
}

.legal-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.legal-date {
  font-size: 14px;
  color: var(--text-muted);
}

/* Horizontal Rule */
.legal-card hr {
  border: none;
  height: 1px;
  background: var(--border-subtle);
  margin: 30px 0;
}

/* Content */
.legal-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Section Headings */
.legal-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 35px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 16px;
}

.legal-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: calc(100% - 8px);
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* Lists */
.legal-card ul {
  margin: 16px 0;
  padding-left: 0;
}

.legal-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Strong text */
.legal-card strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Warning highlights */
.legal-card strong:first-child {
  color: var(--gold);
}

/* Email links */
.legal-card a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.legal-card a:hover {
  color: var(--gold-bright);
}

/* Responsive */
@media (max-width: 768px) {
  .legal-wrapper {
    padding: 40px 0;
  }
  
  .legal-card {
    padding: 30px 20px;
    margin: 0 10px;
  }
  
  .legal-title {
    font-size: 26px;
  }
  
  .legal-heading {
    font-size: 18px;
    margin-top: 28px;
  }
}
