
    :root {
      --p-pink: #ff7eb9;
      --p-purple: #8b5cf6;
      --p-blue: #22d3ee;
      --p-yellow: #fde047;
      --text: #0f172a;
      --glass: rgba(255, 255, 255, 0.85);
    }

    * { box-sizing: border-box; scroll-behavior: smooth; }
    
    body {
      margin: 0;
      font-family: 'Quicksand', sans-serif;
      color: var(--text);
      background: #f8fafc;
      min-height: 100vh;
      overflow-x: hidden;
      padding-top: 80px; /* Space for fixed nav */
    }

    /* Sticky Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 70px;
      background: var(--glass);
      backdrop-filter: blur(10px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 15px rgba(0,0,0,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.3);
    }

    .nav-links {
      display: flex;
      gap: 20px;
      padding: 0 20px;
      max-width: 900px;
      overflow-x: auto;
      scrollbar-width: none; /* Firefox */
    }

    .nav-links::-webkit-scrollbar { display: none; } /* Chrome/Safari */

    .nav-links a {
      text-decoration: none;
      color: #64748b;
      font-weight: 700;
      font-size: 0.9rem;
      white-space: nowrap;
      transition: color 0.3s ease;
    }

    .nav-links a:hover { color: var(--p-pink); }

    .aurora {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      z-index: -1;
      background: 
        radial-gradient(circle at 0% 0%, #ffedf5 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, #e0f2fe 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, #fef9c3 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, #f0fdf4 0%, transparent 50%);
    }

    .container {
      width: 100%;
      max-width: 750px;
      margin: 0 auto;
      padding: 20px;
    }

    .section-anchor {
        padding-top: 40px; /* Offset for sticky nav when jumping */
        margin-top: -20px;
    }

    /* Main Branding Header */
    .main-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .emoji-circle {
      width: 75px; height: 75px;
      background: #fff;
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin: 0 auto 20px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      transform: rotate(-5deg);
    }

    h1 {
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 2.8rem;
      margin: 0;
      background: linear-gradient(90deg, #ec4899, #8b5cf6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .section-title {
        font-family: 'Outfit', sans-serif;
        font-size: 1.8rem;
        margin: 40px 0 20px;
        color: #334155;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Card Styles */
    .card {
      background: linear-gradient(135deg, #ff7eb9, #7afcff, #fe62ff, #fde047);
      background-size: 300% 300%;
      animation: gradientMove 8s ease infinite;
      border-radius: 36px;
      padding: 4px;
      margin-bottom: 30px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.05);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .card:hover { transform: translateY(-8px); }

    .card-inner {
      background: #ffffff;
      border-radius: 32px;
      padding: 25px;
    }

    .content-box {
      background: #f8fafc;
      border-radius: 20px;
      padding: 20px;
      line-height: 1.7;
      color: #475569;
    }

    @keyframes gradientMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .footer {
      text-align: center;
      padding: 60px 40px;
      color: #94a3b8;
      font-weight: 700;
      letter-spacing: 1px;
    }
    /* Enhanced Mobile-Friendly Navbar */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 65px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      z-index: 1000;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    }

    .nav-links {
      display: flex;
      gap: 12px;
      padding: 0 20px;
      width: 100%;
      overflow-x: auto; /* Allows swiping on mobile */
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch; /* Smooth momentum scroll for iOS */
    }

    /* Hide scrollbar for a cleaner look */
    .nav-links::-webkit-scrollbar {
      display: none;
    }
    .nav-links {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .nav-links a {
      text-decoration: none;
      color: #475569;
      background: rgba(255, 255, 255, 0.5);
      padding: 8px 16px;
      border-radius: 50px; /* Pill shape */
      font-weight: 700;
      font-size: 0.85rem;
      white-space: nowrap; /* Prevents text from wrapping to 2 lines */
      border: 1px solid rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }

    .nav-links a:hover, .nav-links a:active {
      background: white;
      color: var(--p-pink);
      transform: scale(1.05);
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    /* Adjust main container for mobile padding */
    @media (max-width: 600px) {
      body { padding-top: 75px; }
      h1 { font-size: 2rem; }
      .container { padding: 15px; }
    }

    /* Styling for the labels above the titles */
.category-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--p-pink);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.card-emoji {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  margin: 0 0 15px 0;
  color: var(--text);
}

.card-footer-link {
  margin-top: 20px;
  text-align: right;
}

.card-footer-link a {
  text-decoration: none;
  font-weight: 700;
  color: #8b5cf6;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.card-footer-link a:hover {
  color: var(--p-pink);
}

  