/* fees/static/fees/css/fees.css - Fees landing page styles */

.fees-hero {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 64, 128, 0.15) 100%);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  padding: 3rem 0;
  text-align: center;
}

.fees-hero h1 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.fees-hero .subtitle {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  opacity: 0.85;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.promo-badge i {
  font-size: 1.1rem;
}

.fee-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.fee-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.fee-card .icon-header {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.fee-card h2 {
  font-family: 'Orbitron', monospace;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fee-row:last-child {
  border-bottom: none;
}

.fee-row .label {
  opacity: 0.7;
}

.fee-row .value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Orbitron', monospace;
}

.fee-row .value.strikethrough {
  text-decoration: line-through;
  opacity: 0.4;
  font-size: 1.1rem;
}

.fee-row .value.promo {
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.discount-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #21e6a3 0%, #00b377 100%);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.info-card .info-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  opacity: 0.7;
  margin: 0;
  font-size: 0.9rem;
}

.cta-section {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 64, 128, 0.2) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.cta-section h3 {
  font-family: 'Orbitron', monospace;
  margin-bottom: 0.5rem;
}

.cta-section .subtitle {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.promo-end-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 200, 0, 0.1);
  border: 1px solid rgba(255, 200, 0, 0.3);
  color: #ffc800;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
