:root {
  --bg-dark: #0d0d1a;
  --bg-card: rgba(255, 255, 255, 0.05);
  --accent-pink: #ff6b9d;
  --accent-purple: #a855f7;
  --accent-cyan: #22d3ee;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f64f59 100%);
  --gradient-cta: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 1.5rem 0.5rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .renegade {
  display: inline-block;
  -webkit-text-fill-color: #ff6b9d;
  text-shadow: 0 0 10px #ff6b9d, 0 0 20px #ff6b9d, 0 0 40px #a855f7;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 10px #ff6b9d, 0 0 20px #ff6b9d, 0 0 40px #a855f7; }
  50% { text-shadow: 0 0 15px #ff6b9d, 0 0 30px #ff6b9d, 0 0 60px #a855f7, 0 0 80px #ff6b9d; }
}

.tagline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Details Cards */
.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.detail-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 0.5rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-purple);
}

.detail-card .icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.3rem;
}

.detail-card h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

.detail-card p {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.3;
}

/* CTA Section */
.cta-section {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.cta-section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.email-link {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--gradient-cta);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.email-link:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(168, 85, 247, 0.5);
}

.note {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  margin-top: 0.75rem;
  font-weight: 600;
}

/* Requirements */
.requirements {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.requirements h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.requirements ul {
  list-style: none;
}

.requirements li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.requirements li:last-child {
  border-bottom: none;
}

.requirements li::before {
  content: '✨';
  position: absolute;
  left: 0;
}

.requirements li strong {
  color: var(--accent-pink);
}

/* Footer */
.footer-note {
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 600px) {
  main {
    padding: 1rem;
  }
  
  .hero {
    padding: 2rem 0.5rem;
  }
  
  .cta-section, .requirements {
    padding: 1.5rem;
  }
  
  .email-link {
    font-size: 1.2rem;
    padding: 0.7rem 1.5rem;
  }
}

/* Pride Banner - Progress Pride + Intersex Inclusive (Blended) */
.pride-banner {
  text-align: center;
  padding: 0.8rem;
  background: linear-gradient(90deg, 
    #000000,
    #613915,
    #73D7EE,
    #FFAFC8,
    #FFFFFF,
    #7902AA,
    #FFDA00,
    #e40303,
    #ff8c00,
    #ffed00,
    #008026,
    #24408e,
    #732982
  );
  font-weight: 600;
  font-size: 0.95rem;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Translate Link */
.translate-link {
  margin-left: 0.5rem;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.translate-link:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* Disclaimer */
.disclaimer {
  text-align: center;
  padding: 1.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer p {
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}
