:root {
  --primary: #D3FF5F;
  --secondary: #7AFFB0;
  --accent: #00B894;
  --background-dark: #121212;
  --card-bg: rgba(18, 18, 18, 0.9);
  --card-border: rgba(211, 255, 95, 0.2);
  --text-white: #FFFFFF;
  --text-muted: #A0A0A0;
  --transition-speed: 0.3s;
  --border-radius: 12px;
  --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Terms Content */
.terms-content {
  padding: 100px 0 60px;
  position: relative;
  z-index: 2;
  color: var(--text-white);
  line-height: 1.7;
  font-size: 1.05rem;
}

.terms-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.terms-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  border: 1px solid var(--card-border);
  padding: 50px;
  backdrop-filter: blur(10px);
  box-shadow: var(--box-shadow);
}

.terms-title {
  color: var(--primary);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}

.terms-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

.terms-intro {
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-white);
  opacity: 0.9;
}

.terms-section {
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-section h2 {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.terms-section h2::before {
  content: '§';
  margin-right: 10px;
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 0;
}

.terms-section p {
  margin-bottom: 15px;
  color: var(--text-white);
  opacity: 0.9;
  line-height: 1.8;
}

.prohibited-list {
  list-style-type: none;
  padding-left: 20px;
  margin: 15px 0;
}

.prohibited-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--text-white);
  opacity: 0.9;
}

.prohibited-list li::before {
  content: '•';
  color: var(--primary);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
  line-height: 1;
}

.terms-updated {
  margin-top: 50px;
  text-align: right;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .terms-card {
    padding: 40px 30px;
  }
  
  .terms-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .terms-content {
    padding: 80px 0 40px;
  }
  
  .terms-card {
    padding: 30px 20px;
  }
  
  .terms-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .terms-section h2 {
    font-size: 1.3rem;
  }
  
  .terms-intro,
  .terms-section p,
  .prohibited-list li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .terms-content {
    padding: 70px 0 30px;
  }
  
  .terms-title {
    font-size: 1.6rem;
  }
  
  .terms-section h2 {
    font-size: 1.2rem;
  }
  
  .terms-updated {
    text-align: center;
  }
}