/* Terms and Conditions Page Styles */

.terms-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.terms-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(208, 255, 113, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(-45deg);
}

.terms-hero .container {
  position: relative;
  z-index: 1;
}

.terms-hero img {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  opacity: 0.8;
}

.terms-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.terms-hero p {
  font-size: 18px;
  color: #999999;
  max-width: 600px;
  margin: 0 auto;
}

.terms-content {
  padding: 80px 0;
  background: #0a0a0a;
}

.terms-content .container {
  max-width: 800px;
}

.content-wrapper {
  background: #141414;
  border-radius: 16px;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.last-updated {
  display: inline-block;
  background: rgba(208, 255, 113, 0.1);
  color: #d0ff71;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 40px;
}

.intro-text {
  font-size: 18px;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section {
  margin-bottom: 48px;
}

.terms-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #d0ff71;
  color: #000000;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.terms-section p {
  font-size: 16px;
  color: #999999;
  line-height: 1.8;
  margin-bottom: 16px;
}

.terms-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.terms-section ul li {
  color: #999999;
  margin-bottom: 12px;
  line-height: 1.6;
  position: relative;
}

.terms-section ul li::marker {
  color: #d0ff71;
}

.highlight-box {
  background: rgba(208, 255, 113, 0.05);
  border: 1px solid rgba(208, 255, 113, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.highlight-box h4 {
  color: #d0ff71;
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.highlight-box p {
  color: #cccccc;
  margin: 0;
  line-height: 1.8;
}

.contact-section {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}

.contact-section h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-section p {
  color: #999999;
  margin-bottom: 24px;
}

.contact-button {
  display: inline-block;
  background: #d0ff71;
  color: #000000;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background: #b8e65f;
  transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .terms-hero {
    padding: 80px 0 60px;
  }

  .terms-hero h1 {
    font-size: 36px;
  }

  .terms-hero p {
    font-size: 16px;
  }

  .terms-content {
    padding: 40px 0;
  }

  .content-wrapper {
    padding: 32px 24px;
  }

  .intro-text {
    font-size: 16px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .terms-section {
    margin-bottom: 32px;
  }

  .terms-section h3 {
    font-size: 20px;
  }

  .terms-section p {
    font-size: 15px;
  }

  .highlight-box {
    padding: 20px;
    margin: 24px 0;
  }

  .highlight-box h4 {
    font-size: 16px;
  }
}
