:root {
  --bg: #0f0f0f;
  --bg-alt: #131313;
  --text: #f5f5f5;
  --muted: #b3b3b3;
  --accent: #7c5cff;
  --accent-2: #00e5ff;
  --chip: #1f1f1f;
  --border: #262626;
  --radius: 14px;
  --fontsize:15px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  /*font-family: "Plus Jakarta Sans", system-ui, sans-serif;*/
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: var(--fontsize);
}

h1, h2, h3, h4 {
  font-family: "Manrope", sans-serif;
}

h1 {
  font-size: clamp(24px, 5vw, 36px);
}


h2 {
  font-size: clamp(20px, 3.5vw, 28px);
}

h3 {
  font-size: clamp(16px, 2.5vw, 20px);
}


/* Layout */
.container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

.container img {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 1.5rem auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero .brandmark {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
}

.hero .brandmark img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}

.hero__content {
  position: absolute;
  bottom: 25%;
  left: 10%;
  z-index: 2;
  max-width: 90%;
}

.hero__content h1 {
  font-size: clamp(28px, 5vw, 56px);
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.hero__content .tagline {
  font-size: clamp(14px, 2.5vw, 22px);
  margin-top: 6px;
  color: #ddd;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Cards */
.card {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3 {
  font-size: clamp(16px, 2.5vw, 18px);
  margin: 16px 16px 8px;
  color: #fff;
}

.card p {
  font-size: var(--fontsize);
  line-height: 1.5;
  color: #ccc;
  margin: 0 16px 16px;
}

/* Sections */
.section { 
  padding: 25px 0; 
}

.section--dark { 
  background: var(--bg-alt); 
}

.lead { 
  max-width: 60ch; 
}

/* Grid Layouts */
.cards {
  display: grid;
  gap: 24px;
  margin: 20px 0;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===== NAVIGATION PREMIUM (Clean with subtle accent) ===== */
.mainnav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(10, 10, 12, 0.95); /* Slightly lighter than pure black */
  backdrop-filter: blur(15px); /* More blur for frosted glass effect */
  border-top: 1px solid rgba(255, 255, 255, 0.08); /* Very subtle border */
  padding: 14px 0;
}

.mainnav__list {
  display: flex;
  justify-content: center;
  gap: 40px; /* More spacing for premium feel */
  margin: 0;
  padding: 0;
  list-style: none;
}

.mainnav__list a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6); /* Sophisticated gray */
  padding: 6px 8px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  letter-spacing: 1.5px; /* More letter spacing = more premium */
}

/* Hover effect: subtle color change + underline */
.mainnav__list a:hover {
  color: #ffffff;
}

.mainnav__list a:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* Active state: GOLD ACCENT (premium color) */
.mainnav__list a.active {
  /*color: #D4AF37;*/ /* Gold color for luxury */
  color: #1B9CFF; /* neon blue clean, profesional */
  font-weight: 600;
  text-shadow: 0 0 3px rgba(27, 156, 255, 0.45); /* #1B9CFF */
}

.mainnav__list a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  /*background: #D4AF37;*/
  background: #1B9CFF;
  /*box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);*/ /* Subtle gold glow */
  box-shadow: 0 0 3px rgba(27, 156, 255, 0.45); /* #1B9CFF */
}

/* About Section */
.about {
  padding: 25px 5% 60px;
}

.about__content {
  max-width: 720px;
  margin: 0 auto;
}

.about__content h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 16px;
}

.about__content .lead {
  margin-bottom: 16px;
  color: #ccc;
}

.about__content p {
  font-size: var(--fontsize);
  line-height: 1.6;
  margin-bottom: 12px;
}

.about__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Footer */
.footer {
  margin-top: 30px;
  border-top: 1px solid var(--border);
  padding: 24px 0 76px;
  background: var(--bg-alt);
}

.footer__grid {
  display: grid;
  gap: 10px;
}

.footer__logo {
  margin-bottom: 12px;
}

.footer__logo img {
  width: 100px;
  height: auto;
}

.footer__contact {
  margin-top: 0 !important;
}

.footer__contact .contact__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
}

.contact__item a,
.footer__legal a {
  text-decoration: none;
  color: var(--text);
}

.footer__title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: calc(var(--fontsize) + 1px);
}

/* Community Links */
#community a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  color: var(--text);
  font-size: calc(var(--fontsize) + 2px); 
}

#community a:hover {
  color: #0095f6;
}

#community a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Visual Gallery - FIXED untuk Click Zoom */
/* Visual Gallery - Mobile Optimized (No Animation) */
#visual-gallery.custom-gallery {
  padding: 2rem 0;
  background-color: #1a1a1a;
}

#visual-gallery .custom-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

#visual-gallery .custom-gallery-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 600;
}

#visual-gallery .custom-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

#visual-gallery .custom-filter {
  padding: 0.6rem 1.2rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s ease;
}

#visual-gallery .custom-filter-active {
  background-color: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

#visual-gallery .custom-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

#visual-gallery .custom-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

#visual-gallery .custom-grid-item.custom-hidden {
  display: none;
}

#visual-gallery .custom-grid-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

#visual-gallery .custom-caption {
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
  #visual-gallery .custom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  #visual-gallery .custom-grid-item img {
    height: 240px;
  }
}

/* Desktop: 2 columns (no 3 columns) */
@media (min-width: 1024px) {
  #visual-gallery .custom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  #visual-gallery .custom-grid-item img {
    height: 260px;
  }
}

/* Remove all hover effects for mobile focus */
#visual-gallery .custom-grid-item:hover {
  transform: none;
  box-shadow: none;
}

#visual-gallery .custom-grid-item:hover img {
  transform: none;
}

#visual-gallery .custom-grid-item:hover .custom-caption {
  transform: none;
  opacity: 1;
}

/* MOBILE: Click untuk show caption dan zoom */
@media (max-width: 768px) {
  #visual-gallery .custom-grid-item.active img {
    transform: scale(1.03);
  }
  
  #visual-gallery .custom-grid-item.active .custom-caption {
    transform: translateY(0);
    opacity: 1;
  }
  
  .mainnav__list {
    gap: 2px;
  }
  
  .mainnav__list a {
    font-size: 0.85rem;
    letter-spacing: 0;
  }

  .footer__logo img {
    margin-left: 20px !important;
    margin-right: auto !important;
  }

  .footer__legal {
    text-align: left !important;
  }
}

/* Tablet & Desktop Styles */
@media (min-width: 768px) {
  .cards { 
    grid-template-columns: repeat(3, 1fr); 
  }
  
  .footer__grid { 
    grid-template-columns: 2fr 1fr; 
  }
  
  #visual-gallery .custom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  #visual-gallery .custom-grid-item img {
    height: 280px;
  }
}

/* Desktop Hover Effects */
@media (min-width: 769px) {
  #visual-gallery .custom-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  
  #visual-gallery .custom-grid-item:hover img {
    transform: scale(1.05);
  }
  
  #visual-gallery .custom-grid-item:hover .custom-caption {
    transform: translateY(0);
    opacity: 1;
  }
  
  #visual-gallery .custom-filter:hover {
    border-color: rgba(255, 255, 255, 0.6);
  }
}

/* Large Desktop Adjustments */
@media (min-width: 1024px) {
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    max-width: 720px;
    margin: 0 auto;
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .hero__overlay {
    border-radius: 12px;
  }
  
  .hero .brandmark {
    top: 20px;
    left: 20px;
  }
  
  .hero__content {
    bottom: 25%;
    left: 10%;
  }
}

/* Animations */
@keyframes custom-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Utilities */
.small { 
  font-size: 13px; 
}

/* Desktop Optimization Message */
.desktop-optimization-message {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 1px solid rgba(124, 92, 255, 0.3);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  max-width: 500px;
  width: 90%;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.desktop-message-content {
  position: relative;
  padding: 20px;
  padding-right: 50px;
}

.desktop-message-content p {
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.desktop-message-content p:first-child {
  font-weight: 500;
  color: var(--accent-2);
}

.desktop-message-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.desktop-message-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Hide on mobile */
@media (max-width: 1023px) {
  .desktop-optimization-message {
    display: none !important;
  }
}

/* Dalam bagian footer CSS yang sudah ada, tambahkan: */
.footer__legal {
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
  text-align: center;
}
.footer__legal a {
  font-size: 12px;
  color: lightgrey !important;
  text-decoration: none;
}
.footer__legal .copyright {
  font-size: 12px;
  margin-bottom: 4px;
  color: var(--text);
}
.footer__legal small {
  font-size: 11px;
  color:lightgrey !important;
}
.footer__legal a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}
.footer__contact .contact__item {
  display: flex;          /* sejajarkan icon dan teks */
  align-items: center;    /* vertikal rata tengah */
  gap: 8px;               /* jarak konsisten antara icon dan teks */
}

.footer__contact .contact__item i {
  margin: 0;              /* reset margin default */
}


.hero__bg,
.hero__bg .hero__img {
  width: 100%;
  height: 100vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===== BUTTON PREMIUM STYLE ===== */
.btn-view {
  display: inline-block;
  padding: 14px 32px;
  background: rgba(212, 175, 55, 0.1); /* Gold with transparency */
  color: #D4AF37; /* Gold text */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.3); /* Gold border subtle */
  cursor: pointer;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.btn-view:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
  box-shadow: 
    0 5px 20px rgba(212, 175, 55, 0.15),
    inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.btn-view:active {
  transform: translateY(0);
}

/* Gold shimmer effect on hover */
.btn-view::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.7s ease;
}

.btn-view:hover::before {
  left: 100%;
}

/* Arrow with gold color */
.btn-view::after {
  content: '→';
  margin-left: 8px;
  color: rgba(212, 175, 55, 0.8);
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-view:hover::after {
  transform: translateX(4px);
  color: #D4AF37;
}


/* ===== LINK STYLE PREMIUM (Simple & Elegant) ===== */
.link-view {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.link-view:hover {
  color: #FFD700; /* Slightly brighter gold on hover */
  border-bottom-color: rgba(212, 175, 55, 0.5);
}

/* Optional: Arrow for forward links */
.link-view[href*="product"]::after {
  content: '→';
  margin-left: 5px;
  opacity: 0.7;
  transition: all 0.3s ease;
  display: inline-block;
}

.link-view[href*="product"]:hover::after {
  transform: translateX(3px);
  opacity: 1;
}

/* ===== FILTER CHIPS ===== */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 30px 0;
  padding: 0 20px;
}

.chip {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px; /* Pill shape */
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  outline: none;
}

/* Hover state */
.chip:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Active/Selected state - konsisten dengan gold theme */
/* Active/Selected state - neon clean theme */
.chip.active {
  background: rgba(27, 156, 255, 0.12);
  color: #1B9CFF;
  border-color: rgba(27, 156, 255, 0.4);
  font-weight: 600;

  box-shadow:
    0 4px 12px rgba(27, 156, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}


.chip.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
   rgba(27, 156, 255, 0.4),
    transparent
  );
  animation: chipShine 3s infinite;
}

@keyframes chipShine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

/* Neon clean shimmer effect on active hover */
.chip.active:hover {
  background: rgba(27, 156, 255, 0.18);
  border-color: rgba(27, 156, 255, 0.6);
  box-shadow: 
    0 6px 18px rgba(27, 156, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Focus state untuk accessibility */
.chip:focus-visible {
  outline: 2px solid #1B9CFF;
  outline-offset: 2px;
}


/* Responsive */
@media (max-width: 768px) {
  .filter-chips {
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 10px 0 20px;
    margin: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .filter-chips::-webkit-scrollbar {
    display: none;
  }
  
  .chip {
    padding: 8px 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

.non-list {
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* whatsapp */
.whatsapp-button {
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-button:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-video-gallery {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.vertical-video-container {
  max-width: 360px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.vertical-video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.video-caption {
  padding: 1rem;
  background: #f8f9fa;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
}

.ig-style-video {
  max-width: 400px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #dbdbdb;
}

.ig-video-frame {
  background: #000;
}

.ig-ui {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: white;
  font-size: 0.9rem;
  color: #262626;
}

.vertical-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.vertical-video {
  text-align: center;
}

.vertical-video p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #666;
}

.authentic-video {
  max-width: 320px;
  margin: 2rem auto;
}

.phone-mockup {
  background: #111;
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.phone-screen {
  width: 100%;
  height: 568px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #777;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .vertical-video-grid {
    grid-template-columns: 1fr;
  }
  
  .vertical-video-container,
  .ig-style-video {
    max-width: 100%;
  }
  
  .phone-mockup {
    transform: scale(0.9);
  }
}

.wa-btn {
  background: #25D366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-weight: 500;
}

.wa-btn:hover {
  opacity: 0.9;
}

.ig-link i {
  margin-right: 6px;
}

.ig-link a {
  color: var(--text);
  text-decoration: none;
  font-size: calc(var(--fontsize) + 2px);
}


/* Global CTA Link */
.cta-link {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  color: #e6e6e6;            /* soft white/grey */
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
}

.cta-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.colorful-text {
  background: linear-gradient(90deg, #ff4d4d, #ffa64d, #ffff4d, #4dff4d, #4dd2ff, #b84dff);
  -webkit-background-clip: text;
  color: transparent;
}

.chip-links {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip-links a {
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f2f2f2;
  text-decoration: none;
  color: #333;
  border: 1px solid #ddd;
}

.secondary-chips .chip {
  margin-right: 8px;
  margin-bottom: 8px;
}
