@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap&subset=latin');
/* Clean Minimalism Theme */
:root {
  --bg-color: #f8fafc; /* slate-50 */
  --text-color: #0f172a; /* slate-900 */
  --text-muted: #64748b; /* slate-500 */
  --card-bg: #ffffff;
  --primary: #4f46e5; /* indigo-600 */
  --accent: #6366f1;
  --border: #e2e8f0; /* slate-200 */
  --border-light: #f1f5f9; /* slate-100 */
  --header-bg: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

[data-theme="dark"] {
  --bg-color: #0f172a; /* slate-900 */
  --text-color: #f8fafc; /* slate-50 */
  --text-muted: #94a3b8; /* slate-400 */
  --card-bg: #1e293b; /* slate-800 */
  --primary: #6366f1; /* indigo-500 */
  --accent: #818cf8;
  --border: #334155; /* slate-700 */
  --border-light: #1e293b;
  --header-bg: #1e293b; /* slate-800 */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

.container { max-width: 1024px; margin: 0 auto; padding: 0 2rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.text-center { text-align: center; }

/* Header & Nav */
.header {
  background-color: var(--header-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 1rem;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  vertical-align: middle;
}
.logo-container {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  vertical-align: middle;
}
.logo-animated-icon {
  width: 2.75rem;
  height: 2.75rem;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.logo-animated-icon:hover {
  transform: translateY(-2px) scale(1.05);
}
.logo-svg {
  width: 100%;
  height: 100%;
  color: white;
  display: block;
}
.animated-gear {
  transform-origin: 12px 12px;
  animation: gear-spin 8s linear infinite;
  fill: #ffffff;
  stroke: none;
}
.animated-wrench {
  transform-origin: 6px 18px;
  animation: wrench-wiggle 4s ease-in-out infinite;
  stroke: #ffffff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
@keyframes gear-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes wrench-wiggle {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(15deg); }
}
.logo-text {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.logo-100 { color: #06b6d4; }
.logo-tc { color: var(--text-color); }

/* Custom Error Alert Banner */
.error-alert-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  animation: slideInDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-theme="dark"] .error-alert-banner {
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
}
.error-alert-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ef4444;
}
[data-theme="dark"] .error-alert-content {
  color: #fca5a5;
}
.error-alert-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.error-alert-text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}
.error-alert-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-alert-close:hover {
  color: #ef4444;
}
@keyframes slideInDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a, .nav-links button {
  margin-left: 0;
  font-weight: 500;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links button:hover {
  color: var(--primary);
  text-decoration: none;
}
.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 9999px;
}
.theme-btn:hover {
  background-color: var(--bg-color);
}
.theme-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropbtn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.dropdown-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}
.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--card-bg);
  min-width: 180px;
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  top: 100%;
  left: 0;
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.dropdown-content::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.dropdown-content a {
  color: var(--text-color);
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.dropdown-content a:hover {
  background-color: var(--bg-color);
  color: var(--primary);
}
.dropdown:hover .dropdown-content {
  display: block;
}

.menu-toggle { display: none; background: none; border: none; cursor: pointer; position: relative; z-index: 200; width: 28px; height: 22px; color: var(--text-muted); }

.menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text-muted);
  border-radius: 3px;
  left: 0;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}
.hero {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.gradient-100 {
  font-size: 1.25em;
  font-weight: 900;
  background-image: linear-gradient(135deg, #f43f5e 0%, #a855f7 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline;
}
[data-theme="dark"] .gradient-100 {
  background-image: linear-gradient(135deg, #ff5e8a 0%, #c084fc 50%, #22d3ee 100%);
}
.hero p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px; /* Fully rounded */
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  text-align: center;
  border: none;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  line-height: 1.25rem;
}
.btn.category-btn {
  background-color: var(--card-bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
  box-shadow: none;
  margin: 0;
  padding: 0.35rem 0.75rem;
}
.btn.category-btn:hover { border-color: var(--primary); color: var(--primary); }
.primary-btn { background-color: var(--primary); color: white; }
.primary-btn:hover { background-color: var(--accent); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* Tools Grid */
.tools-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
  gap: 0.8rem; 
  margin-top: 1rem; 
}
.tool-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-light);
  padding: 0.85rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.tool-card:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-xl); 
  border-color: var(--primary);
  text-decoration: none; 
}
.tool-card:hover .icon-box {
  background-color: var(--icon-hover-bg) !important;
  color: var(--icon-hover-text) !important;
}
.icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
  background-color: var(--icon-bg);
  color: var(--icon-text);
}
.icon-box svg {
  width: 1.25rem;
  height: 1.25rem;
}
.tool-card h3 { 
  margin-bottom: 0.25rem; 
  color: var(--text-color); 
  font-weight: 700;
  font-size: 1rem;
}
.tool-card p { 
  font-size: 0.75rem; 
  color: var(--text-muted); 
  line-height: 1.5; 
  margin-bottom: 0;
}

/* Tool Page */
.breadcrumbs { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; margin: 1rem 0; color: var(--text-muted); font-weight: 500; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); }
.divider { color: var(--border); }
.back-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
  background: none;
  border: none;
}
.back-btn:hover { color: var(--primary); text-decoration: none; }
.tool-content-split { display: grid; grid-template-columns: 3fr 1fr; gap: 1rem; }
.card { background-color: var(--card-bg); padding: 2rem; border-radius: 1rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
.content-box { background-color: var(--card-bg); padding: 1rem; border-radius: 0.75rem; margin-top: 1rem; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.tool-title { font-size: 1.875rem; margin-bottom: 0.5rem; font-weight: 800; }
.tool-desc { font-size: 1rem; margin-bottom: 1rem; color: var(--text-muted); }

#tool-app-container {
  border: 1px dashed var(--border);
  padding: 24px;
  border-radius: 0.75rem;
  text-align: center;
  background-color: var(--bg-color);
  overflow: hidden;
  max-width: 100%;
}

#tool-app-container img {
  max-width: 100%;
  height: auto;
}

#tool-app-container input[type="file"] {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tool-ui {
  max-width: 100%;
  overflow: hidden;
}

.tool-ui textarea {
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

.file-upload-area {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: 0.75rem;
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.file-upload-area:hover {
  border-color: var(--primary);
  background: rgba(99, 102, 241, 0.03);
}

.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

/* Forms & Inputs */
.search-bar, input[type="text"], input[type="number"], textarea, select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background-color: var(--card-bg);
  color: var(--text-color);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-bar:focus, input[type="text"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}
.search-bar { 
  max-width: 500px; 
  margin: 2rem auto; 
  font-size: 1rem; 
  box-shadow: var(--shadow-md); 
}


/* Footer & Legal */
.footer { 
  background-color: var(--header-bg); 
  border-top: 1px solid var(--border); 
  margin-top: 3rem; 
  padding: 1.5rem 0; 
}
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-brand h3 { font-size: 0.875rem; color: var(--text-color); font-weight: 700; margin-bottom: 0.25rem; }
.footer-brand p { font-size: 0.75rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.75rem; color: var(--text-muted); display: inline-block; margin-bottom: 0; }
.footer-links a:hover { color: var(--primary); }

/* Cookie Banner */
.cookie-banner { 
  position: fixed; 
  bottom: 2rem; 
  left: 50%; 
  transform: translateX(-50%); 
  width: 90%;
  max-width: 600px; 
  background: #0f172a; 
  padding: 1rem 1.5rem; 
  border-radius: 1rem; 
  z-index: 1000; 
  box-shadow: var(--shadow-xl); 
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
[data-theme="dark"] .cookie-banner { background: #1e293b; border: 1px solid var(--border); }
.cookie-banner p { font-size: 0.75rem; margin: 0; line-height: 1.2; flex: 1; margin-right: 1rem; }
.cookie-banner button { 
  padding: 0.5rem 1rem; 
  border-radius: 0.5rem; 
  border: none; 
  cursor: pointer; 
  font-weight: 700; 
  font-size: 0.6875rem; 
}
#acceptCookies { background: var(--primary); color: white; }
#acceptCookies:hover { background: var(--accent); }
#declineCookies { background: transparent; color: white; border: 1px solid #334155; margin-right: 0.5rem; }
#declineCookies:hover { background: #1e293b; }

/* Content elements */
h1, h2, h3, h4 { color: var(--text-color); }
h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; margin-top: 1.5rem; }
p { margin-bottom: 0.5rem; }
.tool-faqs {
  border-left: 3px solid var(--primary) !important;
}

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--bg-color); padding: 1rem; border-radius: 0.5rem; border: 1px solid var(--border-light); }
.faq-item summary { font-weight: 600; cursor: pointer; color: var(--text-color); outline: none; }
.faq-item[open] summary { color: var(--primary); }
.faq-item p { margin-top: 0.5rem; margin-bottom: 0; font-size: 0.875rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding-top: 1rem; padding-bottom: 1rem; }
  .hero h1 { font-size: 1.5rem; }
  .tools-grid { grid-template-columns: repeat(auto-fill, minmax(135px, 1fr)); gap: 0.75rem; }
  .container { padding: 0 1rem; }
  .search-container { margin-top: 0.75rem; }
  .navbar { padding: 0.5rem 0; }
  .logo-animated-icon {
    width: 1.85rem !important;
    height: 1.85rem !important;
    padding: 0.25rem !important;
  }
  .logo-text { font-size: 1rem !important; }
  .btn.category-btn {
    padding: 0.25rem 0.6rem !important;
    font-size: 0.75rem !important;
  }
  .tool-card { padding: 0.85rem; border-radius: 0.85rem; }
  .tool-card .icon-box {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.65rem;
    border-radius: 0.5rem;
  }
  .tool-card .icon-box svg { width: 1rem; height: 1rem; }
  .tool-card h3 { font-size: 0.9rem; margin-bottom: 0.2rem; }
  .tool-card p { font-size: 0.75rem; line-height: 1.4; }
  .card, .content-box { padding: 1rem; border-radius: 0.75rem; }
  .tool-content-split { grid-template-columns: 1fr; }
  #tool-app-container { padding: 16px; }
  #tool-app-container img { max-height: 250px; }
  .tool-title { font-size: 1.5rem; }
  .tool-ui input[type="number"] { width: 100%; max-width: none; }
  .btn { white-space: normal; }
  .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .menu-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--header-bg); border-bottom: 1px solid var(--border); padding: 1rem; }
  .nav-links.active { display: flex; gap: 0.5rem; align-items: flex-start; }
  .nav-links a, .nav-links button { margin: 0.5rem 0; width: 100%; text-align: left; }
  .nav-links .theme-btn {
    justify-content: flex-start;
    padding: 0.5rem 0.5rem;
    border-radius: 0.5rem;
    gap: 0.75rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
  }
  .nav-links .theme-btn::after {
    content: attr(aria-label);
    font-size: 0.875rem;
  }
  .dropdown { width: 100%; }
  .dropdown:hover .dropdown-content { display: none; }
  .dropdown.open .dropdown-content { display: block; position: static; box-shadow: none; border: none; padding-left: 1rem; background: transparent; }
  .cookie-banner { flex-direction: column; gap: 1rem; bottom: 1rem; width: calc(100% - 2rem); align-items: stretch; text-align: center; }
  .cookie-banner button { margin: 0; width: 100%; }
  #declineCookies { margin-bottom: 0.5rem; margin-right: 0; }
  .file-upload-area { padding: 1.25rem 0.75rem; }
}

.hero-banner{width:100%;background:rgba(15,23,42,0.85);background-image:radial-gradient(circle at top center,rgba(34,211,238,0.12) 0%,transparent 60%),radial-gradient(at center bottom,rgba(193,107,247,0.08) 0%,transparent 50%);backdrop-filter:blur(20px) saturate(120%);-webkit-backdrop-filter:blur(20px) saturate(120%);padding:2.5rem 1.5rem 2.5rem 1.5rem;color:#f8fafc;text-align:center;position:relative;overflow:hidden;border-radius:0 0 24px 24px;border:1px solid rgba(255,255,255,0.08);border-top:none}[data-theme="dark"] .hero-banner{background:rgba(15,23,42,0.85);background-image:radial-gradient(circle at top center,rgba(34,211,238,0.12) 0%,transparent 60%),radial-gradient(at center bottom,rgba(193,107,247,0.08) 0%,transparent 50%);backdrop-filter:blur(20px) saturate(120%);-webkit-backdrop-filter:blur(20px) saturate(120%);border:1px solid rgba(255,255,255,0.08);border-top:none;border-radius:0 0 24px 24px;color:#f8fafc}:root:not([data-theme="dark"]) .hero-banner{background:rgba(255,255,255,0.85);background-image:radial-gradient(ellipse at 20% 50%,rgba(99,102,241,0.12) 0%,transparent 50%),radial-gradient(ellipse at 80% 20%,rgba(6,182,212,0.09) 0%,transparent 50%),radial-gradient(ellipse at 50% 80%,rgba(139,92,246,0.07) 0%,transparent 50%);backdrop-filter:blur(24px) saturate(140%);-webkit-backdrop-filter:blur(24px) saturate(140%);border:1px solid rgba(0,0,0,0.1);border-top:none;border-radius:0 0 24px 24px;color:#0f172a}:root:not([data-theme="dark"]) .hero-title{color:#4f46e5;text-shadow:none}:root:not([data-theme="dark"]) .hero-title-accent{background:linear-gradient(90deg,#6366f1,#06b6d4);-webkit-background-clip:text;-webkit-text-fill-color:transparent}:root:not([data-theme="dark"]) .hero-subtitle{color:#64748b!important}:root:not([data-theme="dark"]) .hero-search-wrapper input{background-color:rgba(255,255,255,0.7)!important;border-color:rgba(0,0,0,0.12)!important;color:#0f172a!important;box-shadow:0 4px 20px rgba(0,0,0,0.06)!important}:root:not([data-theme="dark"]) .hero-search-wrapper input:focus{border-color:#6366f1!important;box-shadow:0 0 0 3px rgba(99,102,241,0.15)!important}:root:not([data-theme="dark"]) .hero-search-wrapper input::placeholder{color:#94a3b8!important}:root:not([data-theme="dark"]) .hero-search-wrapper svg{color:#94a3b8}:root:not([data-theme="dark"]) .hero-category-filters .filter-btn{background:rgba(0,0,0,0.04)!important;border-color:rgba(0,0,0,0.1)!important;color:#475569!important}:root:not([data-theme="dark"]) .hero-category-filters .filter-btn[data-filter="all"]{background:#4f46e5!important;color:#fff!important;border-color:#4f46e5!important}:root:not([data-theme="dark"]) .hero-category-filters .filter-btn:hover{background:rgba(99,102,241,0.12)!important;color:#4f46e5!important}:root:not([data-theme="dark"]) .journal-link{color:#64748b!important}:root:not([data-theme="dark"]) .journal-link:hover{text-shadow:none;color:#4f46e5!important}.hero-title{color:#00C4D9;font-size:clamp(2.5rem,6vw,4.5rem)!important;font-weight:900!important;letter-spacing:-0.04em!important;margin-bottom:0.5rem;text-shadow:0 4px 20px rgba(0,196,217,0.3);line-height:1.1}.hero-title-accent{background:linear-gradient(90deg,#00C4D9,#c16bf7);-webkit-background-clip:text;-webkit-text-fill-color:transparent;display:inline}.hero-subtitle{font-size:clamp(1rem,2vw,1.15rem)!important;color:#94a3b8!important;max-width:48rem;margin:0 auto;letter-spacing:0.01em;font-weight:400}.hero-search-wrapper{position:relative;max-width:36rem;margin:1.5rem auto 1rem auto;z-index:10}.hero-search-wrapper svg{position:absolute;left:1.25rem;top:50%;transform:translateY(-50%);width:1.5rem;height:1.5rem;color:#64748b}.hero-search-wrapper input{width:100%;padding:0.85rem 1rem 0.85rem 3rem;background-color:rgba(15,23,42,0.7)!important;border:1px solid rgba(255,255,255,0.15)!important;border-radius:9999px!important;font-size:1rem!important;color:#f8fafc!important;box-shadow:0 10px 25px -5px rgba(0,0,0,0.5)!important;backdrop-filter:blur(8px)!important;transition:all 0.3s!important;margin:0!important}.hero-search-wrapper input:focus{border-color:#00C4D9!important;outline:none!important;box-shadow:0 0 0 3px rgba(0,196,217,0.2),0 10px 25px -5px rgba(0,0,0,0.5)!important}.hero-search-wrapper input::placeholder{color:#64748b!important}.hero-category-filters{display:flex!important;justify-content:center!important;gap:0.5rem!important;margin-bottom:1.25rem!important;flex-wrap:wrap!important;z-index:10!important;position:relative!important}.hero-category-filters .filter-btn{background:rgba(30,41,59,0.4);border:1px solid rgba(255,255,255,0.1);color:#cbd5e1;padding:0.4rem 1rem;border-radius:9999px;backdrop-filter:blur(4px);font-weight:500;font-size:0.85rem;cursor:pointer;transition:all 0.2s}.hero-category-filters .filter-btn[data-filter="all"]{background:#00C4D9;color:#000;border-color:#00C4D9;font-weight:700}.hero-category-filters .filter-btn:hover{background:rgba(255,255,255,0.1);color:#fff}.hero-actions{display:flex!important;justify-content:center!important;align-items:center!important;gap:2rem!important;flex-wrap:wrap!important;position:relative!important;z-index:10!important}.explore-btn{display:inline-flex!important;align-items:center!important;background:linear-gradient(90deg,#c16bf7 0%,#16d5fc 100%)!important;color:#000!important;padding:0.75rem 2rem!important;border-radius:9999px!important;font-weight:800!important;font-size:1.1rem!important;text-decoration:none!important;box-shadow:0 4px 25px 0 rgba(22,213,252,0.4)!important;transition:transform 0.2s,box-shadow 0.2s!important;border:none!important;letter-spacing:0.02em!important}.explore-btn:hover{transform:translateY(-3px)!important;box-shadow:0 8px 30px rgba(22,213,252,0.6)!important}.journal-link{color:#fff!important;font-weight:700!important;font-size:0.95rem!important;letter-spacing:0.2em!important;text-transform:uppercase!important;text-decoration:none!important;background:transparent!important;border:none!important;cursor:pointer!important;padding:0!important;outline:none!important;transition:opacity 0.2s,text-shadow 0.2s!important}.journal-link:hover{opacity:1!important;text-shadow:0 0 12px rgba(255,255,255,0.6)!important}@media (max-width:768px){.hero-banner{border-radius:0 0 18px 18px;padding:2rem 1rem 2rem 1rem}.hero-title{font-size:clamp(1.5rem,7vw,2.5rem)!important}.hero-subtitle{font-size:0.9rem!important}.hero-category-filters{gap:0.35rem!important;margin-bottom:1rem!important}.hero-category-filters .filter-btn{padding:0.35rem 0.75rem;font-size:0.78rem}.explore-btn{padding:0.65rem 1.5rem!important;font-size:1rem!important}.hero-actions{gap:1.25rem!important}}

@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;
  }
}
