/* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ======================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
:root {
  /* Brand Colors */
  --color-primary: #f97316;
  --color-primary-dark: #ea580c;
  --color-secondary: #000000;
  --color-white: #ffffff;

  /* Neutral Colors */
  --color-text-dark: #0b0b14;
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-gray-light: #f8fafc;
  --color-gray-lighter: #f1f5f9;

  /* Feature Colors */
  --color-blue: #0ea5e9;
  --color-yellow: #f59e0b;
  --color-green: #22c55e;
  --color-pink: #ec4899;

  /* Font Sizes - Consolidated Scale */
  --font-size-xs: 0.75rem;     /* 12px */
  --font-size-sm: 0.875rem;    /* 14px */
  --font-size-base: 1rem;      /* 16px */
  --font-size-lg: 1.125rem;    /* 18px */
  --font-size-xl: 1.25rem;     /* 20px */
  --font-size-2xl: 1.5rem;     /* 24px */
  --font-size-3xl: 1.875rem;   /* 30px */
  --font-size-4xl: 2.25rem;    /* 36px */
  --font-size-5xl: 3rem;       /* 48px */
  --font-size-6xl: 3.75rem;    /* 60px */
  --font-size-7xl: 4.5rem;     /* 72px */

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Bootstrap overrides and site styles (no Vite) */

/* Two-column layout for library prompt cards - Let Bootstrap handle responsive behavior */

/* Optional: general card polish */
.prompt-card { transition: transform .2s ease, box-shadow .2s ease; }
.prompt-card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.15); }

/* Sidebar scrolls as one block; remove sticky for now */

/* =======================
   Header (Figma spec)
   ======================= */
.pd-header {
  background-color: #121719 !important; /* dark background */
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pd-logo {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  font-weight: 600; /* Semi Bold */
  font-size: 34px;
  line-height: 55.04px;
  letter-spacing: -1.72px;
  color: #F94D1E; /* brand orange */
  vertical-align: middle;
  display: inline-block;
}

.pd-nav-link {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  font-weight: 500; /* Medium */
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.02em; /* -2% */
  text-align: center;
  color: #F4F4F4 !important;
}
.pd-nav-link:hover, .pd-nav-link:focus { color: #ffffff !important; text-decoration: none; }
.pd-header .nav-link.active { color: #F94D1E !important; }

.pd-signin {
  height: 40px;
  padding: 8px 24px;
  border-radius: 100px;
  background: #F94D1E;
  color: #FFFFFF;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  font-weight: 600; /* Semi Bold */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
}
.pd-signin:hover { background: #e3461b; color: #fff; text-decoration: none; }

/* ========================================
   LANDING PAGE STYLES
   ======================================== */

/* ========================================
   HERO SECTION - BLACK BACKGROUND
   ======================================== */

/* Hero Section - Solid Black Background */
#hero.hero-section {
  background: var(--color-secondary) !important; /* Pure solid black background */
  background-color: var(--color-secondary) !important; /* Fallback solid black */
  background-image: none !important; /* Remove any gradients or images */
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--color-white); /* Ensure text is white on black background */
}

/* Hero Content Text Colors */
#hero .text-white {
  color: var(--color-white) !important;
}

#hero h1, #hero h2, #hero h3, #hero h4, #hero h5, #hero h6 {
  color: var(--color-white);
}

#hero p {
  color: var(--color-white);
}

#hero .text-orange {
  color: var(--color-primary);
}

#hero .display-4 {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  line-height: 1.2;
  font-size: var(--font-size-5xl);
}

#hero .lead {
  font-size: var(--font-size-xl);
  line-height: 1.6;
}

#hero .btn-orange {
  border-radius: 50px;
  font-size: var(--font-size-lg);
  padding: var(--space-sm) var(--space-xl);
  transition: var(--transition-normal);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

#hero .btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Hero Feature Cards */
.feature-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249,115,22,0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-icon {
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

/* Responsive adjustments for hero */
@media (max-width: 768px) {
  #hero .display-4 {
    font-size: var(--font-size-4xl);
  }

  #hero .lead {
    font-size: var(--font-size-lg);
  }

  #hero .btn-orange {
    font-size: var(--font-size-base);
    padding: 0.625rem 1.5rem;
  }
}


/* Feature Section */
#features .feature-box {
  transition: var(--transition-normal);
}

#features .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

#features .feature-icon-wrapper {
  transition: var(--transition-normal);
}

#features .feature-box:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

/* Individual Feature Box Backgrounds */
#features .feature-box:nth-child(1) {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: var(--shadow-sm);
}

#features .feature-box:nth-child(2) {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid rgba(245, 158, 11, 0.1);
  box-shadow: var(--shadow-sm);
}

#features .feature-box:nth-child(3) {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid rgba(34, 197, 94, 0.1);
  box-shadow: var(--shadow-sm);
}

#features .feature-box:nth-child(4) {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  border: 1px solid rgba(236, 72, 153, 0.1);
  box-shadow: var(--shadow-sm);
}

/* Feature Box Content Styling */
#features .text-primary {
  color: var(--color-blue) !important;
}

#features .text-warning {
  color: var(--color-yellow) !important;
}

#features .text-success {
  color: var(--color-green) !important;
}

#features .text-danger {
  color: var(--color-pink) !important;
}

#features .feature-box h4 {
  color: var(--color-text-primary);
  line-height: 1.3;
}

#features .feature-box p {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--color-text-secondary);
}

/* Section Description */
.section-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
}

/* Feature Logo Images */
.feature-logo {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}

/* ========================================
   TECHNOLOGY STACK SECTION
   ======================================== */

/* Technology Category Cards */
.tech-category-card {
  transition: var(--transition-normal);
}

.tech-category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Technology Badges */
.tech-badge {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text-primary);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: 20px;
  transition: var(--transition-normal);
  display: inline-block;
  white-space: nowrap;
}

.tech-badge:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Technology Section Responsive */
@media (max-width: 768px) {
  .tech-category-card {
    margin-bottom: var(--space-lg);
  }

  .tech-badge {
    font-size: var(--font-size-xs);
    padding: var(--space-xs) var(--space-sm);
    margin-bottom: var(--space-xs);
  }
}

@media (max-width: 576px) {
  .tech-category-card h5 {
    font-size: var(--font-size-lg);
  }

  .tech-badge {
    font-size: var(--font-size-xs);
    padding: 0.35rem 0.55rem;
  }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 992px) {
  #hero .display-4 {
    font-size: var(--font-size-4xl);
  }

  #hero .lead {
    font-size: var(--font-size-lg);
  }

  .section-py {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  /* Hero Section Mobile */
  #hero {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  #hero .display-4 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-lg);
  }

  #hero .lead {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-xl);
  }

  #hero .btn-orange {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    font-size: var(--font-size-base);
    padding: var(--space-sm) var(--space-lg);
  }

  /* Hero Feature Cards Mobile */
  .feature-card {
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
  }

  .feature-card h5 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
  }

  .feature-card p {
    font-size: var(--font-size-sm);
  }

  /* Section Spacing Mobile */
  .section-py {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }

  /* Features Section Mobile */
  #features .feature-box .d-flex {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }

  #features .feature-box .flex-grow-1 {
    margin-bottom: var(--space-md);
    margin-right: 0;
  }

  #features .feature-box .flex-shrink-0 {
    order: -1;
    margin-bottom: var(--space-md);
  }

  #features .display-5 {
    font-size: var(--font-size-2xl);
  }

  #features .feature-box h4 {
    font-size: var(--font-size-xl);
  }

  #features .feature-box p {
    font-size: var(--font-size-sm);
  }


  /* General Mobile Improvements */
  .container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  h1, h2, h3 {
    letter-spacing: -0.02em;
  }

  .navbar {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 576px) {
  /* Extra Small Screens */
  #hero .display-4 {
    font-size: var(--font-size-xl);
    line-height: 1.1;
  }

  #hero .lead {
    font-size: var(--font-size-sm);
  }

  #hero .btn-orange {
    padding: 0.625rem 1.25rem;
    font-size: var(--font-size-sm);
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-card h5 {
    font-size: var(--font-size-base);
  }

  .section-py {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  #features .display-5 {
    font-size: var(--font-size-xl);
  }


  /* Button improvements for touch */
  .btn {
    min-height: 44px; /* iOS touch target */
    padding: var(--space-sm) var(--space-lg);
  }
}

/* ========================================
   TYPOGRAPHY STANDARDIZATION
   ======================================== */

/* Base Typography */
body {
  font-size: var(--font-size-base);
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text-dark);
}

/* Heading Hierarchy - Standardized */
h1, .h1 {
  font-size: var(--font-size-5xl);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}

h2, .h2 {
  font-size: var(--font-size-4xl);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

h3, .h3 {
  font-size: var(--font-size-3xl);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-sm);
}

h4, .h4 {
  font-size: var(--font-size-2xl);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xs);
}

h5, .h5 {
  font-size: var(--font-size-xl);
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

h6, .h6 {
  font-size: var(--font-size-lg);
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

/* Display Classes - Standardized */
.display-1 {
  font-size: var(--font-size-7xl);
  line-height: 1.1;
  font-weight: 700;
}

.display-2 {
  font-size: var(--font-size-6xl);
  line-height: 1.1;
  font-weight: 700;
}

.display-3 {
  font-size: var(--font-size-5xl);
  line-height: 1.1;
  font-weight: 700;
}

.display-4 {
  font-size: var(--font-size-4xl);
  line-height: 1.15;
  font-weight: 700;
}

.display-5 {
  font-size: var(--font-size-3xl);
  line-height: 1.2;
  font-weight: 700;
}

.display-6 {
  font-size: var(--font-size-2xl);
  line-height: 1.2;
  font-weight: 700;
}

/* Lead Text */
.lead {
  font-size: var(--font-size-xl);
  line-height: 1.5;
  font-weight: 400;
}

/* Small Text */
.small, small {
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

/* Button Typography */
.btn {
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: none;
}

.btn-lg {
  font-size: var(--font-size-lg);
  padding: var(--space-sm) var(--space-xl);
}

.btn-sm {
  font-size: var(--font-size-sm);
  padding: var(--space-xs) var(--space-md);
}

/* Link Typography */
a {
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  text-decoration: underline;
}

/* Remove underline from buttons */
.btn:hover,
button:hover,
.btn:focus,
button:focus {
  text-decoration: none !important;
}

/* List Typography */
ul, ol {
  line-height: 1.6;
}

.list-unstyled li {
  margin-bottom: var(--space-xs);
}

/* Blockquote Typography */
/* blockquote {
  font-style: italic;
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
} */

/* Code Typography */
code {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: var(--font-size-sm);
}

/* Form Typography */
.form-control, .form-select {
  font-size: var(--font-size-base);
  line-height: 1.5;
}

.form-label {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

/* Table Typography */
.table {
  font-size: var(--font-size-sm);
}

.table th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--font-size-xs);
  letter-spacing: 0.05em;
}

/* ========================================
   PERFORMANCE & ACCESSIBILITY
   ======================================== */

/* Performance Optimizations */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus management for accessibility */
/* *:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
} */

button:focus,
.btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Skip to main content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xs);
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* Global text color utilities */
.text-primary {
  color: var(--color-primary) !important;
}

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

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

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary, .btn-orange {
    background: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
    color: var(--color-white) !important;
  }

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

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  .btn, .navbar, .footer {
    display: none !important;
  }

  .container {
    max-width: none !important;
    padding: 0 !important;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }
}



#main-content {
  background: #121719;
}

.px-20px {
  padding-left: 20px;
  padding-right: 20px;
}

.py-20px {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Colored pill chips used in library detail header */
.pd-pill {
  display: inline-block;
  padding: .25rem .5rem;
  border-radius: 9999px;
  font-size: .775rem;
  border: 1px solid rgba(0, 0, 0, .08);
}

/* Library detail actions */
.pd-copy-btn {
  display: flex;
  width: 100%;
  height: 59px;
  padding: 4px 12px;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 6px;
  background: #F94D1E;
  color: #F6F8F9;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.12px;
  border: 0;
}

.pd-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}

.pd-secondary-action {
  display: flex;
  height: 51px;
  padding: 4px 12px;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: #F9F9F9;
  color: #000;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.12px;
  border: 1px solid rgba(0, 0, 0, .06);
}

/* Open with dropdown aesthetics */
.pd-openwith .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  padding: .25rem;
}

.pd-openwith .dropdown-item {
  border-radius: 8px;
  padding: .5rem .75rem;
  font-weight: 500;
}

.pd-openwith .dropdown-item:active,
.pd-openwith .dropdown-item:focus,
.pd-openwith .dropdown-item:hover {
  background: #FFE7DF;
  color: #D24616;
}

/* Related list styling */
.pd-related {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-related-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  gap: 12px;
  border-radius: 6px;
  background: #F9F9F9;
  box-shadow: 0 0 1px 0 rgba(26, 32, 36, 0.32);
  text-decoration: none;
}


.pd-related-item span {
  color: #000;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  /* 115% */
  letter-spacing: -0.38px;

}

.pd-related-rating {
  /* display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  color: #6B7280; 
  font-weight: 600;  */

  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.108px;
}

.pd-related-item:hover {
  background: #F1F1F1;
  text-decoration: none;
}

.Compatibility-card {
  display: flex;
  padding: 16px;
  flex-direction: column;
  /* justify-content: center; */
  align-items: flex-start;
  gap: 12px;
  height: 100%;
  border-radius: 6px;
  border: 1px solid #F9F9F9;
  background: #F9F9F9;
  box-shadow: 0 0 1px 0 rgba(26, 32, 36, 0.32);
}

.Compatibility-card img{
  margin-left: 8px ;
  margin-right: 12px;
}
.Compatibility-card h6{
  color: #000;
font-family: Inter;
font-size: 28px;
font-style: normal;
font-weight: 600;
line-height: 23px; 
letter-spacing: -0.532px;
margin-bottom: 0;
}
.Compatibility-card ul{
  margin-bottom: 0;
}
.Compatibility-card li{
  color: #252C32;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 43px; 
}

.pd-breadcrumb .breadcrumb {
  --bs-breadcrumb-divider: '>';
  /* font-size: 28px; */
  line-height: 1.2;
}
.pd-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #B0BABF; /* gray-400 chevron */
}
.pd-breadcrumb .breadcrumb .breadcrumb-item a {
  color: #6E7C87;
  font-family: Inter;
  font-size: 14.16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.88px;
  text-decoration: none;
}
.pd-breadcrumb .breadcrumb .breadcrumb-item.active {
  color: #252C32;
  font-family: Inter;
  font-size: 14.16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.88px;
}

.prompt-card:hover .pd-pill-1 { 
  display: flex;
  padding: 2px 4px;
  align-items: center;
  border-radius: 4px;
  background: #FFD665;
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 133.333% */
}

.prompt-card:hover .pd-pill-2 { 
  display: flex;
  padding: 2px 4px;
  align-items: center;
  border-radius: 4px;
  background: rgba(167, 85, 255, 0.40);
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; 
}

.prompt-card:hover .pd-pill-3 { 
  display: flex;
  padding: 2px 4px;
  align-items: center;
  border-radius: 4px;
  background: rgba(249, 77, 30, 0.40);
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; 
}

.prompt-card:hover .pd-pill-4 { 
  display: flex;
  padding: 2px 4px;
  align-items: center;
  border-radius: 4px;
  background: rgba(1, 106, 58, 0.40);
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; 
}

.prompt-card:hover .pd-pill-5 { 
  background:#DBEAFE; color:#1E3A8A; border-color:#93C5FD; 
}

/* .btn-orange{
  border: 1px solid #F94D1E;
  border-radius: 6px;
  color: #F94D1E;
}

.btn-orange:hover{
  background: #F94D1E;
  color: #fff;
} */

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px; /* space between icon and text if needed */
  
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 600;
  
  border: 1px solid #F94D1E;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff 0%, #ffe9e2 100%);
  color: #F94D1E;
  cursor: pointer;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background: linear-gradient(145deg, #F94D1E, #d93f16);
  color: #fff;
  box-shadow: 0 4px 12px rgba(249, 77, 30, 0.4);
  transform: translateY(-2px);
}

.btn-orange:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(249, 77, 30, 0.3);
}
.left-orange-floating-bg{
  border-radius: 33554428px;
  opacity: 0.4995;
  background: linear-gradient(90deg, rgba(249, 77, 30, 0.32) 0%, rgba(131, 28, 0, 0.32) 50%, rgba(249, 77, 30, 0.32) 100%);
  filter: blur(104.5px);
  width: 288px;
  height: 288px;
  flex-shrink: 0;
  position: absolute;
  bottom: 50%;
  top: 50%;
  left: 0;
}
.right-orange-floating-bg{
  border-radius: 33554428px;
  opacity: 0.4995;
  background: linear-gradient(90deg, rgba(249, 77, 30, 0.32) 0%, rgba(131, 28, 0, 0.32) 50%, rgba(249, 77, 30, 0.32) 100%);
  filter: blur(104.5px);
  width: 288px;
  height: 288px;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  right: 0;
}