/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand + semantic color tokens */
  --brand-primary: #6c5ce7;
  --brand-secondary: #00b894;
  --brand-primary-soft: #f0edff;
  --brand-primary-soft-text: #5b4fcf;

  --white: #ffffff;
  --bg: #f7f8fc;
  --bg2: #eef0f7;
  --surface: #ffffff;
  --surface-muted: #f8f9ff;

  --text: #1a1d2e;
  --text2: #5a607a;
  --text3: #9198b5;

  --border: rgba(26,29,46,0.08);
  --border2: rgba(26,29,46,0.15);

  /* Typography + sizing tokens */
  --font: 'Cairo', 'Segoe UI', sans-serif;
  --fz-hero: clamp(2rem, 2.6vw + 1rem, 2.7rem);
  --fz-h1-page: clamp(1.5rem, 1.7vw + 0.8rem, 1.8rem);
  --fz-body: 1rem;
  --fz-small: 0.875rem;
  --fz-tiny: 0.75rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 4px rgba(26,29,46,0.08);
  --shadow: 0 2px 12px rgba(26,29,46,0.07);
  --shadow-lg: 0 8px 32px rgba(26,29,46,0.12);

  --focus-ring: 0 0 0 3px rgba(108,92,231,0.14);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
html[dir="rtl"] { direction: rtl; }
html[dir="ltr"] { direction: ltr; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  font-size: var(--fz-body);
}

a { text-decoration: none; color: inherit; }
a:focus-visible,
input:focus-visible,
.navbar-back:focus-visible,
.lang-btn:focus-visible,
.sec-card:focus-visible,
.tool-link:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--space-8);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: opacity var(--transition);
}
.navbar-brand:hover {
  opacity: 0.75;
}

.navbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.navbar-meta-count {
  font-size: 12px;
  color: var(--text3);
}

.navbar-brand .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--brand-primary), #a29bfe);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.navbar-back {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text2);
  padding: 7px 14px;
  border: 0.5px solid var(--border2);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}
.navbar-back:hover { background: var(--bg2); }

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 72px 2rem 56px;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  top: -150px;
  right: -160px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(108,92,231,0.22), rgba(108,92,231,0));
}

.hero::after {
  width: 350px;
  height: 350px;
  bottom: -130px;
  left: -150px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0,184,148,0.18), rgba(0,184,148,0));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-soft-text);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: var(--fz-hero);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 16px;
  color: var(--text2);
  max-width: 480px;
  margin: 0 auto 28px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 8px;
}

.hero-actions {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  transition: var(--transition);
  border: 0.5px solid transparent;
}

.hero-cta-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-primary), #7f6cff);
  box-shadow: 0 10px 24px rgba(108,92,231,0.22);
}

.hero-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(108,92,231,0.28);
}

.hero-cta-secondary {
  color: var(--text2);
  background: rgba(255,255,255,0.82);
  border-color: var(--border2);
}

.hero-cta-secondary:hover {
  background: #ffffff;
  color: var(--text);
}

.hero-stat { text-align: center; }
.hero-stat .num { font-size: 24px; font-weight: 900; color: var(--text); }
.hero-stat .lbl { font-size: 12px; color: var(--text3); }

/* ===== SEARCH BAR ===== */
.search-wrap {
  max-width: 520px;
  margin: 0 auto 60px;
  padding: 0 2rem;
  position: relative;
}
.search-wrap input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: var(--radius-pill);
  border: 0.5px solid var(--border2);
  background: var(--surface);
  font-family: var(--font);
  font-size: var(--fz-small);
  color: var(--text);
  box-shadow: var(--shadow);
  outline: none;
  transition: var(--transition);
}
.search-wrap input:focus { border-color: var(--brand-primary); box-shadow: var(--focus-ring); }
.search-wrap input::placeholder { color: var(--text3); }
.search-icon {
  position: absolute;
  left: calc(2rem + 16px);
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #9CA3AF;
  pointer-events: none;
  display: block;
  transition: color var(--transition);
}
.search-wrap:focus-within .search-icon { color: var(--brand-primary); }

/* ===== SECTIONS GRID ===== */
.sections-label {
  max-width: 1100px;
  margin: 0 auto 16px;
  padding: 0 2rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
}

.grid-divider {
  max-width: 1100px;
  margin: 48px auto 16px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.grid-divider-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
  white-space: nowrap;
}

.grid-divider-line {
  flex: 1;
  height: 0.5px;
  background: var(--border);
}

.sections-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 80px;
}

.search-empty-state {
  max-width: 1100px;
  margin: -28px auto 48px;
  padding: 22px 2rem;
  text-align: center;
  color: var(--text2);
  border: 0.5px dashed var(--border2);
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.search-empty-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.search-empty-state.is-hidden {
  display: none;
}

/* ===== SECTION CARD ===== */
.sec-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px 20px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
  opacity: 0;
  transform: translateY(12px);
  animation: card-reveal 0.45s ease forwards;
}

.sections-grid .sec-card:nth-child(1) { animation-delay: 0.03s; }
.sections-grid .sec-card:nth-child(2) { animation-delay: 0.06s; }
.sections-grid .sec-card:nth-child(3) { animation-delay: 0.09s; }
.sections-grid .sec-card:nth-child(4) { animation-delay: 0.12s; }

@keyframes card-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sec-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: var(--card-accent, var(--brand-primary));
  opacity: 0;
  transition: opacity var(--transition);
}

.sec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border2);
}
.sec-card:hover::before { opacity: 1; }

.sec-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--card-bg, var(--brand-primary-soft));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.sec-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.sec-card-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.55;
  margin-bottom: 14px;
}

.sec-card-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  margin-bottom: 16px;
}

.sec-card-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--card-tag-bg, var(--brand-primary-soft));
  color: var(--card-tag-color, var(--brand-primary-soft-text));
}

.sec-card-tag:nth-child(n+4) { display: none; }

.sec-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
  border-top: 0.5px solid var(--border);
}

.sec-card-browse-btn {
  background: var(--card-accent);
  color: #fff;
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  text-align: center;
  transition: filter var(--transition);
  line-height: 1.3;
}
.sec-card:hover .sec-card-browse-btn { filter: brightness(0.88); }

/* ===== SECTION CARD THEMES ===== */
.sec-theme-video { --card-accent: #6c5ce7; --card-bg: #f0edff; --card-tag-bg: #e8e4fc; --card-tag-color: #5b4fcf; }
.sec-theme-images { --card-accent: #f39c12; --card-bg: #fff8e7; --card-tag-bg: #fef3c7; --card-tag-color: #92400e; }
.sec-theme-writing { --card-accent: #00b894; --card-bg: #e8f8f0; --card-tag-bg: #d4f3e7; --card-tag-color: #065f46; }
.sec-theme-audio { --card-accent: #e17055; --card-bg: #fdf0ec; --card-tag-bg: #fde8df; --card-tag-color: #9b3a22; }
.sec-theme-logos { --card-accent: #a855f7; --card-bg: #f5f0ff; --card-tag-bg: #ede9fe; --card-tag-color: #6b21a8; }
.sec-theme-icons { --card-accent: #0ea5e9; --card-bg: #e0f2fe; --card-tag-bg: #bae6fd; --card-tag-color: #075985; }
.sec-theme-graphic { --card-accent: #ec4899; --card-bg: #fdf2f8; --card-tag-bg: #fce7f3; --card-tag-color: #9d174d; }
.sec-theme-uiux { --card-accent: #6366f1; --card-bg: #eef2ff; --card-tag-bg: #e0e7ff; --card-tag-color: #3730a3; }
.sec-theme-code { --card-accent: #10b981; --card-bg: #ecfdf5; --card-tag-bg: #d1fae5; --card-tag-color: #065f46; }
.sec-theme-websites { --card-accent: #3b82f6; --card-bg: #eff6ff; --card-tag-bg: #dbeafe; --card-tag-color: #1d4ed8; }
.sec-theme-apps { --card-accent: #f59e0b; --card-bg: #fffbeb; --card-tag-bg: #fef3c7; --card-tag-color: #92400e; }
.sec-theme-chat { --card-accent: #8b5cf6; --card-bg: #f5f3ff; --card-tag-bg: #ede9fe; --card-tag-color: #5b21b6; }
.sec-theme-education    { --card-accent: #06b6d4; --card-bg: #ecfeff; --card-tag-bg: #cffafe; --card-tag-color: #155e75; }
.sec-theme-productivity  { --card-accent: #f59e0b; --card-bg: #fffbeb; --card-tag-bg: #fef3c7; --card-tag-color: #92400e; }
.sec-theme-mental-health { --card-accent: #8b5cf6; --card-bg: #f5f3ff; --card-tag-bg: #ede9fe; --card-tag-color: #5b21b6; }
.sec-theme-journal       { --card-accent: #14b8a6; --card-bg: #f0fdfa; --card-tag-bg: #ccfbf1; --card-tag-color: #134e4a; }

/* ===== TOOLS PAGE ===== */
.page-hero {
  padding: 48px 2rem 40px;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.page-hero-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--sec-bg, #f0edff);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
}

.page-hero h1 {
  font-size: var(--fz-h1-page);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
}

.page-hero p {
  font-size: 14px;
  color: var(--text2);
}

.page-hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.page-stat {
  font-size: 12px;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== TOOLS GRID ===== */
.tools-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 80px;
}

.tools-subsection {
  margin-bottom: 36px;
}

.tools-sublabel {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tools-sublabel::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--border);
}
html[dir="ltr"] .tools-sublabel::after {
  margin-right: 8px;
  margin-left: 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

/* ===== TOOL CARD ===== */
.tool-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.tool-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.tool-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--sec-bg, var(--brand-primary-soft));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.tool-info { flex: 1; min-width: 0; }

.tool-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}

.tool-tagline {
  font-size: 11px;
  color: var(--text3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tool-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.badge-free {
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
  background: #e8f8f0; color: #0a7a4d;
  border: 0.5px solid #b8edcf;
}
.badge-paid {
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
  background: #fff3e0; color: #b45309;
  border: 0.5px solid #fcd38d;
}
.badge-freemium {
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
  background: #eef2ff; color: #4338ca;
  border: 0.5px solid #c7d2fe;
}
.badge-best {
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
  background: #fff7ed; color: #c2410c;
  border: 0.5px solid #fed7aa;
}
.badge-new {
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
  background: #f0fdf4; color: #15803d;
  border: 0.5px solid #bbf7d0;
}

.tool-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.tool-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--sec-bg, var(--brand-primary-soft));
  color: var(--sec-color, var(--brand-primary-soft-text));
  transition: var(--transition);
  width: fit-content;
  margin-top: auto;
}
.tool-link:hover {
  background: var(--sec-color, var(--brand-primary-soft-text));
  color: white;
}
.tool-link svg { width: 12px; height: 12px; }

/* ===== FOOTER ===== */
footer {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: var(--text3);
}

footer a { color: var(--text2); }

.footer-links {
  margin-top: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .hero h1 { font-size: 28px; }
  .hero::before {
    width: 260px;
    height: 260px;
    top: -90px;
    right: -110px;
  }
  .hero::after {
    width: 220px;
    height: 220px;
    bottom: -100px;
    left: -90px;
  }
  .hero-stats {
    gap: 18px;
    flex-wrap: wrap;
  }
  .sections-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .tools-grid { grid-template-columns: 1fr; }
  .navbar { padding: 0 1rem; }
  .navbar-meta-count { display: none; }
  .navbar-brand {
    font-size: 14px;
    gap: 7px;
  }
  .navbar-brand .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .lang-btn {
    padding: 5px 9px;
    gap: 3px;
  }
  .hero, .page-hero { padding: 40px 1rem 32px; }
  .tools-section, .sections-grid, .search-empty-state { padding: 0 1rem; }
  .search-empty-state {
    margin: -20px auto 40px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 560px) {
  .sections-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-actions {
    width: 100%;
    gap: 8px;
  }
  .hero-cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sec-card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-pill);
  padding: 4px;
  box-shadow: inset 0 1px 3px rgba(26,29,46,0.06);
}
.lang-btn {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: var(--transition);
  background: transparent;
  color: var(--text2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.lang-flag {
  font-size: 15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.lang-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.lang-btn.active {
  background: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(108,92,231,0.35);
  font-weight: 800;
}
.lang-btn.active .lang-flag,
.lang-btn.active .lang-label {
  color: #ffffff;
}
.lang-btn:hover:not(.active) {
  color: var(--text);
  background: rgba(255,255,255,0.65);
}

/* ===== HERO GRADIENT PILL ===== */
.hero-badge-en {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-soft-text);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

/* ===== PAGE THEMES ===== */
.theme-chat {
  --sec-bg: #f5f3ff;
  --sec-color: #8b5cf6;
}

.theme-chat-en {
  --sec-bg: #f5f3ff;
  --sec-color: #5b21b6;
}

.theme-video {
  --sec-bg: #f0edff;
  --sec-color: #5b4fcf;
}

.theme-images {
  --sec-bg: #fff8e7;
  --sec-color: #92400e;
}

.theme-writing {
  --sec-bg: #e8f8f0;
  --sec-color: #00b894;
}

.theme-writing-en {
  --sec-bg: #e8f8f0;
  --sec-color: #065f46;
}

.theme-audio {
  --sec-bg: #fdf0ec;
  --sec-color: #e17055;
}

.theme-audio-en {
  --sec-bg: #fdf0ec;
  --sec-color: #9b3a22;
}

.theme-logos {
  --sec-bg: #f5f0ff;
  --sec-color: #a855f7;
}

.theme-logos-en {
  --sec-bg: #f5f0ff;
  --sec-color: #6b21a8;
}

.theme-icons {
  --sec-bg: #e0f2fe;
  --sec-color: #0ea5e9;
}

.theme-icons-en {
  --sec-bg: #e0f2fe;
  --sec-color: #075985;
}

.theme-graphic {
  --sec-bg: #fdf2f8;
  --sec-color: #ec4899;
}

.theme-graphic-en {
  --sec-bg: #fdf2f8;
  --sec-color: #9d174d;
}

.theme-uiux {
  --sec-bg: #eef2ff;
  --sec-color: #6366f1;
}

.theme-uiux-en {
  --sec-bg: #eef2ff;
  --sec-color: #3730a3;
}

.theme-code {
  --sec-bg: #ecfdf5;
  --sec-color: #10b981;
}

.theme-code-en {
  --sec-bg: #ecfdf5;
  --sec-color: #065f46;
}

.theme-websites {
  --sec-bg: #eff6ff;
  --sec-color: #3b82f6;
}

.theme-websites-en {
  --sec-bg: #eff6ff;
  --sec-color: #1d4ed8;
}

.theme-apps {
  --sec-bg: #fffbeb;
  --sec-color: #f59e0b;
}

.theme-apps-en {
  --sec-bg: #fffbeb;
  --sec-color: #92400e;
}

.theme-en {
  --font: 'Inter', 'Segoe UI', sans-serif;
}
