<style>
    :root {
      --primary: #ff4dd2;         /* Vibrant magenta-pink accent */
      --primary-dark: #d6009e;
      --text-light: #f0e6ff;
      --muted: #c9b3e6;
    }
	
    body {
      background: linear-gradient(to bottom, #0f0c29 0%, #2a1b4d 25%, #4b0082 45%, #c71585 70%, #ff1493 100%);
      color: var(--text-light);
      min-height: 100vh;
      font-family: system-ui, -apple-system, sans-serif;
    }
	
	.glass {
      background: rgba(40, 30, 80, 0.35);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 1rem;
    }
	
	.page-header {
      padding: 14rem 0 10rem;   /* Extra top padding for fixed navbar */
      background: linear-gradient(135deg, rgba(15,12,41,0.45), rgba(199,21,133,0.3));
      position: relative;
      text-align: center;
    }

    .page-header::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 70%, rgba(255,77,210,0.15), transparent 65%);
      pointer-events: none;
    }

    .header-image {
      position: absolute;
      inset: 0;
      object-fit: cover;
      opacity: 0.18;
      z-index: -1;
    }

    .hero {
      padding: 14rem 0 10rem;   /* Extra top padding for fixed navbar */
      background: linear-gradient(135deg, rgba(15,12,41,0.45), rgba(199,21,133,0.3));
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 70%, rgba(255,77,210,0.15), transparent 65%);
      pointer-events: none;
    }

    h1, h2, h3, h4 { color: white; text-shadow: 0 2px 12px rgba(0,0,0,0.7); }

    .btn-neon {
      background: linear-gradient(45deg, #ff4dd2, #ff00aa, #d6009e);
      border: none;
      color: white;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-neon:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 0 35px rgba(255,77,210,0.65);
    }

    .feature-icon {
      font-size: 3.5rem;
      color: var(--primary);
      filter: drop-shadow(0 0 15px rgba(255,77,210,0.55));
    }
	
	.value-icon {
      font-size: 3rem;
      color: var(--primary);
      filter: drop-shadow(0 0 15px rgba(255,77,210,0.55));
    }

    .text-muted { color: var(--muted) !important; }

    a { color: var(--primary); }
    a:hover { color: #ff80e6; }

    footer {
      background: linear-gradient(to top, #ff1493, #c71585, #4b0082);
    }

    /* Prevent motion issues for accessibility */
    @media (prefers-reduced-motion: reduce) {
      * { transition: none !important; transform: none !important; }
    }
  </style>