/* ========================================================
   LINKPULSE ULTRA SECURE SAFELINK GENERATOR - DESIGN SYSTEM
   Default Light Mode | Glassmorphism | Premium UX
   Domain: https://gymains.pages.dev
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  --accent-emerald: #10b981;
  --primary-light: rgba(79, 70, 229, 0.08);
  
  /* Light Theme (Default) */
  --bg-main: #f8fafc;
  --bg-secondary: #f1f5f9;
  --card-bg: #ffffff;
  --card-border: rgba(15, 23, 42, 0.08);
  --card-shadow: 0 10px 30px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.03);
  --text-main: #0f172a;
  --text-muted: #64748b;
  --input-bg: #ffffff;
  --input-border: #cbd5e1;
  --nav-bg: rgba(255, 255, 255, 0.88);
  
  --radius: 16px;
  --radius-sm: 10px;
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Dark Theme Overrides */
html[data-theme="dark"], body[data-theme="dark"] {
  --bg-main: #090d16;
  --bg-secondary: #0f172a;
  --card-bg: rgba(15, 23, 42, 0.85);
  --card-border: rgba(255, 255, 255, 0.1);
  --card-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --input-bg: #1e293b;
  --input-border: #334155;
  --nav-bg: rgba(9, 13, 22, 0.88);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Hide scrollbars universally */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

html, body, * {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 90px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

/* Header & Glassmorphism Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-border);
  padding: 14px 24px;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand span.highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Mobile Hamburger Menu */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 6px;
}

.mobile-toggle svg {
  width: 26px;
  height: 26px;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border-bottom: 1px solid var(--card-border);
  padding: 20px 24px;
  display: none;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 99;
}

.mobile-drawer.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.mobile-drawer .nav-link {
  font-size: 1.05rem;
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.nav-svg-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: inline-block;
  flex-shrink: 0;
}

.badge-svg-icon {
  width: 15px;
  height: 15px;
  margin-right: 6px;
  display: inline-block;
}

.result-svg-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  display: inline-block;
}

/* Main Content Container */
main {
  flex: 1;
  max-width: 1040px;
  width: 100%;
  margin: 36px auto;
  padding: 0 24px;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1.5px solid transparent;
  background-image: linear-gradient(var(--card-bg), var(--card-bg)), linear-gradient(90deg, #00f2fe, #4f46e5, #00f2fe);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 14px rgba(0, 242, 254, 0.15);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
  color: var(--text-main);
}

.hero h1 span.gradient-text {
  background: linear-gradient(90deg, #00f2fe, #4f46e5, #7c3aed, #00f2fe);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textFlow 5s linear infinite;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 28px auto;
}

/* Live Stats Row - Emerald Neon Strip */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 3.5px solid #10b981;
  box-shadow: var(--card-shadow);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  transition: transform 0.2s ease;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Generator Card - Cyan-Indigo Neon Top Bar */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-top: 3.5px solid #00f2fe;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.08), var(--card-shadow);
  padding: 36px;
  margin-bottom: 48px;
  transition: all 0.3s ease;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.input-field {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--input-bg);
  color: var(--text-main);
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-wrapper .input-field {
  padding-left: 44px;
}

.input-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Generator Submit Button */
.btn-primary {
  width: 100%;
  padding: 16px 28px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--primary-gradient);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.45);
}

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

.btn-primary.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Result Box */
.result-box {
  display: none;
  margin-top: 28px;
  padding: 22px;
  background: var(--primary-light);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  animation: fadeIn 0.3s ease;
}

.result-box.show {
  display: block;
}

.result-header {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.result-input-group {
  display: flex;
  gap: 10px;
}

.result-input-group input {
  flex: 1;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--input-bg);
  color: var(--text-main);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
}

.btn-copy {
  padding: 0 24px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-copy:hover {
  background: var(--primary-hover);
}

/* Section Container & Typography */
.section-title {
  text-align: center;
  margin-bottom: 36px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 540px;
  margin: 0 auto;
}

/* Mini Section Neon Dividers */
.mini-neon-divider {
  width: 54px;
  height: 3.5px;
  border-radius: 4px;
  margin: 12px auto 0 auto;
}

.features-neon {
  background: linear-gradient(90deg, #7c3aed, #ff007f);
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.35);
}

.workflow-neon {
  background: linear-gradient(90deg, #ff9900, #ff3300);
  box-shadow: 0 0 10px rgba(255, 153, 0, 0.35);
}

.faq-neon {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  box-shadow: 0 0 10px rgba(0, 198, 255, 0.35);
}

/* Features Grid - Cyber Violet Neon Top Border */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: 3px solid #7c3aed;
  box-shadow: var(--card-shadow);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.12);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.feature-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* How It Works Section - Amber Neon Top Border */
.workflow-section {
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: 3px solid #ff9900;
  box-shadow: var(--card-shadow);
  border-radius: var(--radius);
  padding: 18px 20px 22px 20px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(255, 153, 0, 0.15);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff9900;
  opacity: 0.25;
  position: absolute;
  top: 10px;
  right: 16px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 8px;
  padding-right: 46px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* FAQ Accordion Section - Electric Blue Active Neon Accent */
.faq-section {
  margin-bottom: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.active {
  border-left: 4px solid #00c6ff;
  border-color: rgba(0, 198, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 198, 255, 0.12);
}

.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  stroke: var(--text-muted);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  stroke: #0072ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

/* Modal Popup System */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.show {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.modal-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border-radius: var(--radius);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  color: var(--text-main);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.modal-box h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary);
}

.modal-box p, .modal-box li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.modal-box ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  pointer-events: auto;
  animation: toastIn 0.3s ease forwards;
  max-width: 420px;
}

.toast-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-success .toast-icon { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.toast-error .toast-icon { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.toast-warning .toast-icon { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.toast-info .toast-icon { background: rgba(79, 70, 229, 0.15); color: #4f46e5; }

/* Footer Multi-column */
footer {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  padding: 48px 24px 24px 24px;
  margin-top: auto;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

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

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--primary);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Animated Multi-Line Rainbow HR */
.multi-line {
  border: 0;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(270deg, #ff00ff, #00ffff, #00ff00, #ffff00, #ff00ff);
  background-size: 600% 100%;
  animation: rainbowFlow 3s ease-in-out infinite;
  max-width: 1100px;
  margin: 0 auto 20px auto;
  opacity: 0.85;
}

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

/* Animated Admin Signature */
.animated-admin {
  font-size: 0.85rem;
  font-weight: 700;
  margin-left: 8px;
  background: linear-gradient(90deg, rgb(255, 0, 204), rgb(0, 255, 255), rgb(255, 0, 204));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textFlow 4s linear infinite;
  display: inline-block;
}

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

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.1rem; }
}

@media (max-width: 640px) {
  .toast-container {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
    align-items: center;
  }
  .toast {
    width: 100%;
    max-width: 100%;
    font-size: 0.84rem;
    padding: 12px 14px;
    word-break: break-word;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .grid-2 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* Disable all hover transformations and stuck states on touch/mobile devices */
@media (hover: none), (pointer: coarse), (max-width: 768px) {
  .stat-card:hover,
  .feature-card:hover,
  .step-card:hover,
  .card:hover,
  .btn-primary:hover,
  .btn-copy:hover,
  .theme-toggle:hover,
  .nav-link:hover,
  .modal-close:hover {
    transform: none !important;
    box-shadow: var(--card-shadow) !important;
  }
  .nav-link::after {
    display: none !important;
  }
  .btn-primary:hover {
    background: var(--primary-gradient) !important;
  }
  .btn-copy:hover {
    background: var(--primary) !important;
  }
}
