
/* ελληνία.com/legal-style.css */
/* Custom gradients used across legal pages */
.text-gradient-1 {
  background: linear-gradient(to right, #FFA500, #FF69B2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-legal {
  background: linear-gradient(to bottom, #1A1A1A, #2D2D2D);
}

.card-gradient {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px -81px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 2rem;
}

.card-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to bottom right, #FFA500, #FF69b2);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 1.5rem;
}

/* Legal specific styles */
.legal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}

.legal-section {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-list {
  list-style: none;
  padding-left: 0;
}

.legal-list li::before {
  content: "•";
  color: #FFA500;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Legal link styling */
.legal-link {
  color: #FFA500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #FF69b2;
}

/* Legal footer styles */
.legal-footer {
  background: linear-gradient(to right, #1A1A1A, #2D2D2D);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Legal terms section */
.terms-list {
  list-style: decimal;
  padding-left: 1.5rem;
  color: #cfcfcf;
}

.terms-title {
  color: #FFA500;
  margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
  }
}
