.main-terms {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 40px 40px 40px;
}

.terms-card {
  width: 100%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 32px;
  padding: 50px 60px;
  backdrop-filter: blur(20px);
  animation: cardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  margin-bottom: 40px;
}

.terms-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.terms-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.terms-icon i {
  font-size: 38px;
  color: #a78bfa;
}

.terms-title {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.terms-subtitle {
  font-size: 14px;
  color: rgba(196, 180, 255, 0.6);
}

.terms-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.terms-section {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 20px;
  padding: 20px 24px;
  transition: all 0.2s ease;
}

.terms-section:hover {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.05);
  transform: translateX(5px);
}

.terms-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.terms-text {
  flex: 1;
}

.terms-text h2 {
  font-size: 18px;
  font-weight: 600;
  color: #e9d5ff;
  margin-bottom: 8px;
}

.terms-text p {
  font-size: 14px;
  color: rgba(196, 180, 255, 0.7);
  line-height: 1.5;
}

.terms-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.back-home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .main-terms {
    padding: 90px 20px 40px 20px;
  }
  
  .terms-card {
    padding: 35px 30px;
  }
  
  .terms-title {
    font-size: 28px;
  }
  
  .terms-section {
    padding: 16px 20px;
  }
  
  .terms-text h2 {
    font-size: 16px;
  }
  
  .terms-text p {
    font-size: 13px;
  }
}

@media (max-width: 550px) {
  .main-terms {
    padding: 80px 15px 30px 15px;
  }
  
  .terms-card {
    padding: 25px 20px;
  }
  
  .terms-title {
    font-size: 24px;
  }
  
  .terms-icon {
    width: 55px;
    height: 55px;
  }
  
  .terms-icon i {
    font-size: 28px;
  }
  
  .terms-section {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }
  
  .terms-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

.prohibited-section {
  margin-top: 30px;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 24px;
  padding: 24px;
}

.prohibited-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.prohibited-header i {
  font-size: 28px;
  color: #f87171;
}

.prohibited-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fca5a5;
  margin: 0;
}

.prohibited-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prohibited-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  transition: all 0.2s ease;
}

.prohibited-item:hover {
  background: rgba(239, 68, 68, 0.1);
  transform: translateX(5px);
}

.prohibited-item i {
  font-size: 24px;
  color: #f87171;
  flex-shrink: 0;
}

.prohibited-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fca5a5;
  margin-bottom: 4px;
}

.prohibited-item p {
  font-size: 13px;
  color: rgba(196, 180, 255, 0.7);
  line-height: 1.4;
  margin: 0;
}

.contact-section {
  margin-top: 30px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
}

.contact-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.contact-header i {
  font-size: 28px;
  color: #a78bfa;
}

.contact-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #e9d5ff;
  margin: 0;
}

.contact-section p {
  font-size: 14px;
  color: rgba(196, 180, 255, 0.7);
  margin-bottom: 20px;
}

.contact-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-box:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
}

.contact-box i {
  font-size: 20px;
  color: #a78bfa;
}

.contact-box span {
  font-size: 15px;
  color: #e9d5ff;
  font-weight: 500;
}

.contact-box i:last-child {
  font-size: 14px;
  opacity: 0.7;
}

@media (max-width: 550px) {
  .prohibited-section, .contact-section {
    padding: 16px;
  }
  
  .prohibited-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .prohibited-header {
    justify-content: center;
  }
}