/* 
  Fall in Love - Premium Landing Page Stylesheet
  Theme: Neon Space (Pure Dark Mode 🌌)
  Design Principles: Aesthetic, Premium, Glassmorphism, Neon Glows, Rich Micro-animations
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

/* --- Design Tokens / CSS Variables --- */
:root {
  --bg-gradient: linear-gradient(135deg, #07070A 0%, #0F0F16 40%, #171726 100%);
  --primary: #FF2A7A; /* Hồng Neon */
  --primary-rgb: 255, 42, 122;
  --secondary: #B366FF; /* Tím Neon */
  --secondary-rgb: 179, 102, 255;
  --accent-peach: #FF7E67; /* Cam hoàng hôn (Sunset Peach) */
  --accent-peach-rgb: 255, 126, 103;
  
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0B0;
  --text-muted: #62627A;
  
  --surface-bg: rgba(255, 255, 255, 0.05);
  --surface-border: rgba(255, 255, 255, 0.08);
  --surface-border-glow: rgba(255, 42, 122, 0.25);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  --glow-shadow: 0 0 20px rgba(255, 42, 122, 0.25), 0 0 40px rgba(179, 102, 255, 0.15);
}

/* --- Base & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #07070A;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-gradient);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Selection */
::selection {
  background: rgba(255, 42, 122, 0.3);
  color: #FFFFFF;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #07070A;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 42, 122, 0.2);
  border-radius: 5px;
  border: 2px solid #07070A;
  transition: var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 42, 122, 0.4);
}

/* --- Layout Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.serif-font {
  font-family: var(--font-serif);
  font-style: italic;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent-peach) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-pink-purple {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Glassmorphism Card --- */
.glass-card {
  background: var(--surface-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: border var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--surface-border-glow);
  box-shadow: 0 10px 40px rgba(255, 42, 122, 0.1);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: var(--glow-shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 42, 122, 0.4), 0 0 50px rgba(179, 102, 255, 0.25);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* --- App Store / Play Store Buttons --- */
.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-btn {
  display: flex;
  align-items: center;
  background: #050508;
  border: 1px solid var(--surface-border);
  padding: 10px 22px;
  border-radius: 14px;
  color: #FFFFFF;
  text-decoration: none;
  transition: var(--transition-normal);
  gap: 12px;
  text-align: left;
}

.store-btn:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 42, 122, 0.15);
}

.store-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.store-btn-text span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.store-btn-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

/* --- Navigation Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 7, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-b: 1px solid var(--surface-border);
}

.header-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 0 15px rgba(255, 42, 122, 0.4);
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  font-style: italic;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(255, 42, 122, 0.5);
}

.header-cta {
  display: flex;
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* We will handle mobile styling if needed or keep it simple */
  }
  .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
}

/* Background glowing meshes */
.hero-glow-1 {
  position: absolute;
  top: -100px;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 42, 122, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.hero-glow-2 {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(179, 102, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 42, 122, 0.08);
  border: 1px solid rgba(255, 42, 122, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.hero-tag svg {
  animation: pulse-heart 1.5s infinite;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-visual {
  margin-top: 60px;
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 480px;
  margin-left: auto;
  margin-right: auto;
  perspective: 1200px;
}

.mockup-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.mockup-img {
  position: absolute;
  width: 280px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255, 255, 255, 0.05);
  border: 4px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition-slow), box-shadow var(--transition-normal);
  background: #0F0F16;
}

.mockup-light {
  left: 20%;
  top: 10px;
  transform: rotateY(15deg) rotateX(5deg) scale(0.9);
  z-index: 1;
  animation: float-left 8s ease-in-out infinite;
}

.mockup-dark {
  right: 20%;
  top: 40px;
  transform: rotateY(-15deg) rotateX(5deg) scale(1);
  z-index: 2;
  border-color: rgba(255, 42, 122, 0.15);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 30px rgba(255, 42, 122, 0.2);
  animation: float-right 8s ease-in-out infinite;
}

.mockup-img:hover {
  transform: rotateY(0) rotateX(0) scale(1.05) translateY(-10px);
  z-index: 10;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 40px var(--primary-glow);
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-visual {
    height: 380px;
  }
  .mockup-img {
    width: 180px;
  }
  .mockup-light {
    left: 10%;
  }
  .mockup-dark {
    right: 10%;
    top: 60px;
  }
}

/* --- Features Section --- */
.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-tag {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(255, 42, 122, 0.3);
  transform: scale(1.1) rotate(5deg);
}

.feature-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* --- Interactive Live Demo Section --- */
.demo-section {
  position: relative;
  overflow: hidden;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.demo-info-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.demo-info-desc {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* Demo Form Input Card */
.demo-form-card {
  padding: 30px;
  border-radius: 24px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--surface-border);
  padding: 12px 18px;
  border-radius: 12px;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 42, 122, 0.2);
}

/* Interactive Widget Simulator */
.widget-simulator {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.simulator-canvas-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.simulated-widget {
  width: 320px;
  height: 320px;
  border-radius: 36px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 42, 122, 0.1);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

/* Aurora background mesh for simulated widget */
.simulated-widget::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 42, 122, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(25px);
  z-index: -1;
}

.simulated-widget::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(179, 102, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(25px);
  z-index: -1;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.widget-avatar-group {
  display: flex;
  align-items: center;
  position: relative;
}

.widget-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  background-size: cover;
  background-position: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.widget-avatar-1 {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="40" r="25" fill="%23FF2A7A"/><path d="M10 90 Q50 60 90 90" stroke="%23FF2A7A" stroke-width="8" fill="none"/></svg>');
  z-index: 2;
}

.widget-avatar-2 {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="40" r="25" fill="%23B366FF"/><path d="M10 90 Q50 60 90 90" stroke="%23B366FF" stroke-width="8" fill="none"/></svg>');
  margin-left: -15px;
  z-index: 1;
}

.widget-heart {
  color: var(--primary);
  animation: heartbeat 1.2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-heart svg {
  width: 24px;
  height: 24px;
}

.widget-body {
  text-align: center;
  margin: auto 0;
}

.widget-counter {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 2px;
  font-style: italic;
  letter-spacing: -0.02em;
  text-shadow: 0 0 15px rgba(255, 42, 122, 0.4);
}

.widget-days-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  font-weight: 600;
}

.widget-footer {
  text-align: center;
}

.widget-names {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.widget-anniversary-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- FAQ Accordion Section --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 18px;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--surface-border-glow);
}

.faq-trigger {
  width: 100%;
  background: var(--surface-bg);
  border: none;
  padding: 24px 30px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.faq-trigger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: #FFFFFF;
  transition: transform var(--transition-normal);
}

/* Horizontal line */
.faq-icon::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 18px;
}

.faq-item.active .faq-trigger {
  background: rgba(255, 255, 255, 0.08);
}

.faq-item.active .faq-icon {
  transform: rotate(135deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
  transition: max-height var(--transition-normal) ease-out;
}

.faq-content {
  padding: 30px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  border-t: 1px solid var(--surface-border);
}

/* --- App Store CTA Section --- */
.cta-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 42, 122, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-card {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 40px auto;
}

/* --- Footer --- */
footer {
  border-top: 1px solid var(--surface-border);
  padding: 60px 0 40px 0;
  background: #050508;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .logo-text {
  font-size: 1.6rem;
}

.footer-desc {
  max-width: 320px;
  line-height: 1.5;
}

.footer-links-title {
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* --- Legal / Content Pages (Privacy & Terms) --- */
.legal-header {
  border-bottom: 1px solid var(--surface-border);
  background: rgba(7, 7, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.legal-header-container {
  max-width: 800px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.legal-back-btn {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.legal-back-btn:hover {
  color: var(--primary);
  transform: translateX(-4px);
}

.legal-app-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--text-secondary);
}

.legal-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-title {
  font-family: var(--font-sans);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.legal-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 50px;
}

.legal-content h3 {
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 16px;
  border-left: 3px solid var(--primary);
  padding-left: 14px;
}

.legal-content p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.legal-content ul {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dashed var(--primary);
  transition: var(--transition-fast);
}

.legal-content a:hover {
  color: #FFFFFF;
  border-bottom-style: solid;
}

/* --- Animations Keyframes --- */
@keyframes float-left {
  0% {
    transform: rotateY(15deg) rotateX(5deg) scale(0.9) translateY(0);
  }
  50% {
    transform: rotateY(18deg) rotateX(3deg) scale(0.92) translateY(-15px);
  }
  100% {
    transform: rotateY(15deg) rotateX(5deg) scale(0.9) translateY(0);
  }
}

@keyframes float-right {
  0% {
    transform: rotateY(-15deg) rotateX(5deg) scale(1) translateY(0);
  }
  50% {
    transform: rotateY(-18deg) rotateX(3deg) scale(0.98) translateY(-20px);
  }
  100% {
    transform: rotateY(-15deg) rotateX(5deg) scale(1) translateY(0);
  }
}

@keyframes pulse-heart {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  20%, 40% {
    transform: scale(1.15);
  }
  30% {
    transform: scale(1.05);
  }
}
