:root {
  --primary: #c96442;
  --primary-dark: #a84e31;
  --primary-light: #f3e2d9;
  --coral: #d97757;
  --bg: #f5f4ed;
  --card: #faf9f5;
  --white: #ffffff;
  --text: #141413;
  --text-secondary: #5e5d59;
  --text-tertiary: #87867f;
  --dark-warm: #3d3d3a;
  --dark-surface: #30302e;
  --warm-silver: #b0aea5;
  --border: #e8e6dc;
  --border-subtle: #f0eee6;
  --hover: #eeece4;
  --sand: #e8e6dc;
  --ring: #d1cfc5;
  --ring-deep: #c2c0b6;
  --success: #62745a;
  --danger: #b53333;
  --focus: #3898ec;
  --radius: 8px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-ring: 0 0 0 1px var(--ring);
  --shadow: 0 0 0 1px var(--border-subtle);
  --shadow-md: 0 4px 24px rgba(20, 20, 19, 0.05), 0 0 0 1px var(--border);
  --shadow-lg: 0 12px 40px rgba(20, 20, 19, 0.08), 0 0 0 1px var(--border);
  --font-serif: "Source Serif 4", "Noto Serif SC", "Noto Serif JP", "Noto Serif KR", Georgia, "Times New Roman", serif;
  --font-sans: Inter, "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input, select, textarea { font: inherit; }
button, a, select { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
::selection { color: var(--text); background: #e8cbbb; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.ui-icon {
  display: inline-flex;
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-right: 0.34em;
  color: currentColor;
  line-height: 1;
  vertical-align: -0.16em;
}
.ui-icon svg { display: block; width: 100%; height: 100%; overflow: visible; }
.ui-icon-flag { width: 1.5em; height: 1em; margin-right: 0.4em; vertical-align: -0.08em; }
.ui-icon-flag svg { overflow: hidden; border-radius: 2px; box-shadow: 0 0 0 1px rgba(20, 20, 19, 0.14); }
.logo .ui-icon { width: 1.25em; height: 1.25em; color: var(--primary); }
button .ui-icon, .badge .ui-icon, .article-meta .ui-icon, .meta .ui-icon { margin-right: 0.42em; }
.field-icon .ui-icon, .feature-icon .ui-icon, .contact-card-icon .ui-icon, .empty-icon .ui-icon,
.saved-label .ui-icon, .saved-name .ui-icon, .country-flag .ui-icon { margin-right: 0; }
.field-icon .ui-icon { width: 17px; height: 17px; }
.feature-icon .ui-icon { width: 30px; height: 30px; }
.contact-card-icon .ui-icon { width: 31px; height: 31px; color: var(--primary); }
.empty-icon .ui-icon { width: 42px; height: 42px; color: var(--primary); }
.country-flag .ui-icon-flag { width: 27px; height: 18px; }
.container { width: min(100% - 48px, 1200px); max-width: 1200px; margin: 0 auto; padding: 0; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}
p { margin: 0; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--text);
  background: rgba(245, 244, 237, 0.94);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: none;
}
.header .container {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 24px;
  padding-top: 0;
  padding-bottom: 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.logo:hover { color: var(--primary); }
.logo > span:first-child, .logo:not(:has(span)) { letter-spacing: 0; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 30px; }
.nav-links a {
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 44px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--text);
  background: var(--card);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-ring);
  cursor: pointer;
}
.menu-toggle span { width: 17px; height: 1px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.lang-switch {
  min-width: 120px;
  min-height: 40px;
  justify-self: end;
  padding: 8px 34px 8px 34px;
  color: var(--dark-warm);
  background-color: var(--card);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c96442' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a14 14 0 0 1 0 18M12 3a14 14 0 0 0 0 18'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235e5d59' d='M6 8 2 4h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center, right 11px center;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-ring);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  outline: 0;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}
.lang-switch:hover { background-color: var(--white); box-shadow: 0 0 0 1px var(--ring-deep); }
.lang-switch:focus { border-color: transparent; box-shadow: 0 0 0 2px var(--focus); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 74px;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border-subtle);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
}
.hero::before {
  width: 180px;
  height: 110px;
  left: max(24px, calc(50% - 590px));
  top: 54px;
  border: 2px solid var(--primary);
  border-radius: 48% 52% 42% 58% / 57% 38% 62% 43%;
  transform: rotate(-8deg);
}
.hero::after {
  width: 116px;
  height: 116px;
  right: max(30px, calc(50% - 570px));
  bottom: 36px;
  border: 1px solid var(--text);
  border-radius: 50%;
  box-shadow: inset 22px -8px 0 var(--bg), inset 24px -9px 0 var(--success);
  transform: rotate(12deg);
}
.hero .container { position: relative; z-index: 1; max-width: 920px; }
.hero h1 {
  max-width: 850px;
  margin: 0 auto 22px;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.1;
}
.hero .subtitle, .hero > .container > p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 19px;
  line-height: 1.6;
}
.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  color: var(--text-secondary);
  background: var(--card);
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  color: var(--text-tertiary);
  font-size: 13px;
}
.breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); text-decoration: none; }
.breadcrumb strong { color: var(--dark-warm); font-weight: 500; }

/* Generator controls */
.selector-section {
  position: relative;
  z-index: 5;
  margin: 36px 0 24px;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  scroll-margin-top: 90px;
}
.selector-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto; gap: 18px; align-items: end; }
.control-group { display: flex; min-width: 0; flex-direction: column; }
.selector-row .control-group label, .form-group label {
  margin-bottom: 8px;
  color: var(--dark-warm);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12px;
}
.select, .cust-sel-trigger, .form-group input, .form-group select, .form-group textarea {
  width: 100%;
  color: var(--text);
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  outline: 0;
  box-shadow: inset 0 0 0 1px rgba(20, 20, 19, 0.015);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.selector-row .select, .cust-sel-trigger {
  min-height: 48px;
  padding: 10px 42px 10px 14px;
  font-size: 15px;
}
.selector-row .select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235e5d59' d='M6 8 2 4h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  appearance: none;
}
.select:hover, .cust-sel-trigger:hover, .form-group input:hover, .form-group select:hover, .form-group textarea:hover { border-color: var(--ring-deep); }
.select:focus, .cust-sel-trigger.open, .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 2px rgba(56, 152, 236, 0.18);
}
.cust-sel { position: relative; width: 100%; }
.cust-sel-trigger { display: flex; align-items: center; gap: 10px; padding-right: 14px; cursor: pointer; user-select: none; }
.cust-sel-arrow {
  width: 8px;
  height: 8px;
  margin: -4px 3px 0 auto;
  overflow: hidden;
  color: transparent;
  border-right: 1.5px solid var(--text-secondary);
  border-bottom: 1.5px solid var(--text-secondary);
  font-size: 0;
  transform: rotate(45deg);
  transition: transform 180ms ease, margin 180ms ease;
}
.cust-sel-trigger.open .cust-sel-arrow { margin-top: 4px; transform: rotate(225deg); }
.cust-sel-drop {
  position: absolute;
  z-index: 200;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: none;
  max-height: 280px;
  overflow-y: auto;
  padding: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.cust-sel-drop.open { display: block; }
.cust-sel-opt { display: flex; min-height: 42px; align-items: center; gap: 10px; padding: 9px 10px; border-radius: var(--radius); cursor: pointer; font-size: 14px; }
.cust-sel-opt:hover { background: var(--hover); }
.cust-sel-opt.sel { color: var(--primary-dark); background: var(--primary-light); font-weight: 500; }
.flag-icon { width: 24px; height: 16px; flex: 0 0 auto; border-radius: 2px; box-shadow: 0 0 0 1px rgba(20, 20, 19, 0.12); }

.generate-btn, .btn-primary, .cta-btn, .cookie-btn-accept {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: var(--card);
  background: var(--primary);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 1px var(--primary);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.generate-btn { width: auto; margin: 0; }
.generate-btn:hover, .btn-primary:hover, .cta-btn:hover, .cookie-btn-accept:hover {
  color: var(--white);
  background: var(--primary-dark);
  box-shadow: 0 0 0 1px var(--primary-dark);
  transform: translateY(-1px);
}
.generate-btn:active, .btn-primary:active, .cta-btn:active { transform: translateY(0); box-shadow: inset 0 0 0 1px rgba(20, 20, 19, 0.15); }
.generate-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* Result */
.result-section, .saved-section {
  margin: 24px 0;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  scroll-margin-top: 90px;
}
.result-header, .saved-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--card);
  background: var(--text);
}
.result-header { min-height: 72px; padding: 14px 20px 14px 24px; }
.result-header h3 { color: var(--card); font-size: 21px; line-height: 1.2; }
.result-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.result-actions button, .saved-action-btn, .field-copy-btn, .saved-card-actions button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  color: var(--dark-warm);
  background: var(--sand);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--ring);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.result-actions button { color: var(--card); background: var(--dark-surface); box-shadow: 0 0 0 1px #4b4b48; }
.result-actions button:hover { color: var(--text); background: var(--white); box-shadow: 0 0 0 1px var(--white); }
.result-actions button.copied, .field-copy-btn.copied { color: var(--white); background: var(--success); box-shadow: 0 0 0 1px var(--success); }
.result-body { padding: 8px 0; }
.empty-state { padding: 54px 24px; color: var(--text-secondary); text-align: center; }
.empty-icon { margin-bottom: 12px; font-size: 40px; filter: saturate(0.55); }
.empty-state p { font-size: 14px; }
.field-row { display: grid; grid-template-columns: 28px 116px minmax(0, 1fr) auto; align-items: center; min-height: 54px; padding: 8px 20px; border-bottom: 1px solid var(--border-subtle); transition: background-color 150ms ease; }
.field-row:last-child { border-bottom: 0; }
.field-row:hover { background: var(--hover); }
.field-icon { margin: 0; font-size: 16px; filter: saturate(0.65); }
.field-label { width: auto; color: var(--text-tertiary); font-size: 12px; }
.field-value { min-width: 0; overflow: hidden; color: var(--text); font-family: var(--font-mono); font-size: 14px; line-height: 1.6; text-overflow: ellipsis; white-space: nowrap; }
.field-copy-btn { min-width: 38px; margin-left: 12px; padding: 7px; }
.field-copy-btn:hover { color: var(--white); background: var(--dark-surface); box-shadow: 0 0 0 1px var(--dark-surface); }

/* Saved addresses */
.saved-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.saved-header h2 { font-size: 25px; line-height: 1.2; }
.saved-header-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.saved-count { color: var(--text-tertiary); font-size: 12px; }
.saved-action-btn:hover { color: var(--text); background: var(--white); box-shadow: 0 0 0 1px var(--ring-deep); }
.saved-action-btn.danger { color: var(--danger); background: #f5e7e4; box-shadow: 0 0 0 1px #dfbfba; }
.saved-action-btn.danger:hover { color: var(--white); background: var(--danger); box-shadow: 0 0 0 1px var(--danger); }
.saved-body { padding: 20px 24px 24px; }
.saved-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.saved-card { overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); transition: box-shadow 180ms ease, transform 180ms ease; }
.saved-card:hover { border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.saved-card-header { min-height: 48px; padding: 10px 14px; }
.saved-name { font-size: 14px; font-weight: 500; }
.saved-gender { color: var(--warm-silver); font-size: 12px; }
.saved-card-body { display: flex; flex-direction: column; gap: 8px; padding: 14px; }
.saved-line { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; }
.saved-label { min-width: 22px; color: var(--text-tertiary); font-size: 12px; }
.saved-val { color: var(--dark-warm); font-family: var(--font-mono); font-size: 12px; word-break: break-word; }
.saved-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 14px; background: var(--bg); border-top: 1px solid var(--border-subtle); }
.saved-time { color: var(--text-tertiary); font-size: 11px; }
.saved-card-actions { display: flex; gap: 6px; }
.saved-card-actions button { min-height: 30px; padding: 5px 8px; font-size: 11px; }
.saved-card-actions .saved-copy-btn { color: var(--dark-warm); }
.saved-card-actions .saved-copy-btn:hover { color: var(--white); background: var(--dark-surface); }
.saved-card-actions .saved-del-btn { color: var(--danger); background: #f5e7e4; box-shadow: 0 0 0 1px #dfbfba; }
.saved-card-actions .saved-del-btn:hover { color: var(--white); background: var(--danger); }

/* Editorial sections */
.features-section, .blog-section, .faq-section { padding: 88px 0; }
.features-section {
  margin-top: 80px;
  color: var(--card);
  background: var(--text);
  box-shadow: 0 0 0 100vmax var(--text);
  clip-path: inset(0 -100vmax);
}
.features-section h2, .blog-section h2, .faq-section h2 {
  margin-bottom: 40px;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.2;
  text-align: center;
}
.features-section h2 { color: var(--card); }
.features-grid, .blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--dark-surface); border: 1px solid var(--dark-surface); }
.feature-card {
  min-height: 220px;
  padding: 28px;
  color: var(--warm-silver);
  background: var(--text);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: background-color 180ms ease;
}
.feature-card:hover { background: var(--dark-surface); border-color: transparent; box-shadow: none; transform: none; }
.feature-icon { margin-bottom: 28px; color: var(--coral); font-size: 26px; filter: saturate(0.65); }
.feature-card h3 { margin-bottom: 12px; color: var(--card); font-size: 22px; line-height: 1.2; }
.feature-card p { color: var(--warm-silver); font-size: 14px; line-height: 1.6; }
.blog-section { padding-bottom: 64px; }
.blog-section h2 { margin-bottom: 10px; }
.blog-desc { margin-bottom: 36px; color: var(--text-secondary); font-size: 16px; text-align: center; }
.blog-grid { gap: 16px; background: transparent; border: 0; }
.blog-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 26px;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}
.blog-card:hover { border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card h3 { margin-bottom: 14px; color: var(--text); font-size: 23px; line-height: 1.25; }
.blog-card p { margin-bottom: 22px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.blog-card .date { margin-top: auto; color: var(--text-tertiary); font-size: 12px; }
.blog-all { margin-top: 28px; text-align: center; }
.blog-all a { color: var(--primary-dark); font-size: 14px; font-weight: 500; text-decoration: none; }
.blog-all a:hover { color: var(--text); text-decoration: none; }
.faq-section { padding-top: 64px; }
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq-item { margin: 0; overflow: hidden; background: transparent; border: 0; border-bottom: 1px solid var(--border); border-radius: 0; }
.faq-q { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 4px; color: var(--text); cursor: pointer; font-family: var(--font-serif); font-size: 20px; font-weight: 500; line-height: 1.3; user-select: none; }
.faq-q:hover { color: var(--primary-dark); background: transparent; }
.faq-q .arrow { color: var(--primary); font-family: var(--font-sans); font-size: 11px; transition: transform 220ms ease; }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; padding: 0 4px; transition: max-height 280ms ease, padding 280ms ease; }
.faq-a.open { max-height: 500px; padding: 0 4px 22px; }
.faq-a p { max-width: 720px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.cta-section {
  margin: 40px 0 0;
  padding: 80px 24px;
  color: var(--card);
  background: var(--text);
  border: 0;
  border-radius: 0;
  box-shadow: 0 0 0 100vmax var(--text);
  clip-path: inset(0 -100vmax);
  text-align: center;
}
.cta-section h2 { margin-bottom: 14px; color: var(--card); font-size: clamp(32px, 4vw, 48px); line-height: 1.2; }
.cta-section p { max-width: 680px; margin: 0 auto 28px; color: var(--warm-silver); font-size: 16px; line-height: 1.6; }

/* Footer */
.footer { margin-top: 0; padding: 62px 0 0; color: var(--warm-silver); background: var(--text); border-top: 1px solid var(--dark-surface); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid var(--dark-surface); }
.footer-col h4 { margin-bottom: 16px; color: var(--card); font-family: var(--font-serif); font-size: 19px; font-weight: 500; }
.footer-col p { max-width: 520px; color: var(--warm-silver); font-size: 13px; line-height: 1.7; }
.footer-col a { display: block; width: fit-content; padding: 5px 0; color: var(--warm-silver); font-size: 13px; text-decoration: none; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom { padding: 22px 0 28px; color: var(--text-tertiary); font-size: 12px; text-align: center; }
.footer-bottom a { color: var(--warm-silver); text-decoration: none; }

/* Utility feedback */
.toast { position: fixed; z-index: 999; bottom: 28px; left: 50%; padding: 10px 16px; color: var(--card); background: var(--text); border: 1px solid var(--dark-surface); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); font-size: 13px; opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(8px); transition: opacity 180ms ease, transform 180ms ease; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.cookie-banner { position: fixed; z-index: 9999; right: 0; bottom: 0; left: 0; display: none; padding: 16px 24px; color: var(--warm-silver); background: var(--text); border-top: 1px solid var(--dark-surface); box-shadow: 0 -8px 28px rgba(20, 20, 19, 0.12); font-size: 13px; line-height: 1.6; }
.cookie-banner.show { display: block; }
.cookie-banner-inner { display: flex; max-width: 1200px; align-items: center; gap: 18px; margin: 0 auto; }
.cookie-banner-text { flex: 1; min-width: 0; }
.cookie-banner-text a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions { display: flex; flex: 0 0 auto; gap: 8px; }
.cookie-btn { min-height: 38px; padding: 8px 16px; border-radius: var(--radius); font-size: 13px; }
.cookie-btn-accept { min-height: 38px; }
.cookie-btn-settings { color: var(--warm-silver); background: var(--dark-surface); border: 1px solid #4b4b48; }
.back-to-top { position: fixed; z-index: 99; right: 24px; bottom: 82px; display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--card); background: var(--primary); border: 0; border-radius: 50%; box-shadow: 0 0 0 1px var(--primary); cursor: pointer; font-size: 18px; opacity: 0; visibility: hidden; transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease; }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); box-shadow: 0 0 0 1px var(--primary-dark); transform: translateY(-2px); }

/* Legal, about and contact pages */
.legal-content, .about-content, .contact-content { max-width: 860px; margin: 0 auto; padding: 34px 0 96px; }
.legal-content > h1, .about-content > h1, .contact-content > h1 { margin-bottom: 12px; font-size: clamp(42px, 6vw, 58px); line-height: 1.1; }
.legal-date, .contact-intro { margin-bottom: 36px; color: var(--text-secondary); font-size: 16px; line-height: 1.7; }
.legal-content section, .about-content section { padding: 32px 0; border-bottom: 1px solid var(--border); }
.legal-content section:last-child, .about-content section:last-child { border-bottom: 0; }
.legal-content h2, .about-content h2, .contact-content h2 { margin-bottom: 16px; font-size: 30px; line-height: 1.2; }
.legal-content h3 { margin: 26px 0 10px; font-size: 22px; line-height: 1.25; }
.legal-content p, .about-content p, .contact-content p { margin-bottom: 14px; color: var(--dark-warm); font-size: 16px; line-height: 1.75; }
.legal-content ul, .about-content ul { margin: 12px 0 18px 24px; }
.legal-content li, .about-content li { margin-bottom: 8px; color: var(--dark-warm); line-height: 1.7; }
.legal-content a, .about-content a, .contact-content a { color: var(--primary-dark); text-decoration: underline; text-decoration-color: #d9ad99; text-underline-offset: 3px; }
.about-hero { margin: 28px 0 10px; padding: 36px; background: var(--card); border: 1px solid var(--border-subtle); border-left: 4px solid var(--primary); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-hero h2 { font-size: 30px; }
.about-hero p { margin: 0; color: var(--text-secondary); font-size: 16px; }
.country-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 22px 0 4px; }
.country-item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; min-height: 58px; padding: 12px 14px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; transition: background-color 180ms ease, border-color 180ms ease; }
.country-item:hover { background: var(--white); border-color: var(--ring); box-shadow: none; }
.country-flag { font-size: 20px; }
.country-item strong { color: var(--text); font-weight: 500; }
.country-item span:last-child { margin-left: 0; color: var(--text-tertiary); font-size: 12px; }
.tip-box { position: relative; margin: 22px 0; padding: 20px 22px; color: var(--dark-warm); background: #f1e9dc; border: 1px solid #dfd1bd; border-left: 4px solid var(--primary); border-radius: var(--radius); font-size: 14px; }
.tip-box::before { content: none; }
.tip-box strong { color: #81412d; }
.tip-box p { margin: 0; color: var(--dark-warm); }
.contact-intro { max-width: 720px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 56px; }
.contact-card { display: flex; min-height: 250px; flex-direction: column; align-items: flex-start; padding: 24px; text-align: left; background: var(--card); border: 1px solid var(--border-subtle); border-radius: var(--radius); box-shadow: var(--shadow); transition: box-shadow 180ms ease, transform 180ms ease; }
.contact-card:hover { border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-card-icon { margin-bottom: 28px; font-size: 28px; filter: saturate(0.65); }
.contact-card h3 { margin-bottom: 7px; font-size: 22px; }
.contact-card p { margin-bottom: 12px; color: var(--text-secondary); font-size: 13px; }
.contact-link { margin: auto 0 8px; color: var(--primary-dark); font-size: 13px; font-weight: 500; word-break: break-all; }
.contact-hint { color: var(--text-tertiary); font-size: 11px; }
.contact-form-section { margin-top: 0; }
.contact-form-section h2 { margin-bottom: 20px; }
.contact-form { padding: 28px; background: var(--card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-group .required { color: var(--danger); }
.form-group input, .form-group select, .form-group textarea { min-height: 48px; padding: 11px 13px; font-size: 14px; }
.form-group textarea { min-height: 150px; resize: vertical; }

/* Article list and article pages */
.article-list { display: flex; flex-direction: column; gap: 0; padding: 12px 0 80px; border-top: 1px solid var(--border); }
#articleListTitle { margin: 24px 0 12px !important; color: var(--text-secondary) !important; font-family: var(--font-sans) !important; font-size: 13px !important; font-weight: 500 !important; }
.article-card { display: grid; grid-template-columns: 58px minmax(0, 1fr) auto; align-items: center; gap: 22px; padding: 26px 8px; color: var(--text); background: transparent; border: 0; border-bottom: 1px solid var(--border); border-radius: 0; text-decoration: none; transition: background-color 180ms ease, padding 180ms ease; }
.article-card:hover { padding-right: 18px; padding-left: 18px; background: var(--card); border-color: var(--border); box-shadow: none; transform: none; }
.article-card .card-num { min-width: 0; padding: 0; color: var(--ring-deep); font-family: var(--font-serif); font-size: 28px; font-weight: 500; line-height: 1; text-align: left; }
.article-card:hover .card-num { color: var(--primary); }
.article-card .card-content { min-width: 0; }
.article-card .card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.article-card .card-tag { padding: 3px 8px; color: var(--primary-dark); background: var(--primary-light); border-radius: 14px; font-size: 10px; font-weight: 500; letter-spacing: 0.2px; }
.article-card h3 { margin-bottom: 7px; color: var(--text); font-size: 24px; line-height: 1.25; }
.article-card p { max-width: 850px; color: var(--text-secondary); font-size: 13px; line-height: 1.6; }
.article-card .card-meta { display: flex; align-items: center; gap: 14px; margin-top: 10px; color: var(--text-tertiary); font-size: 11px; }
.article-card .card-arrow { align-self: center; color: var(--ring-deep); font-size: 22px; transition: color 180ms ease, transform 180ms ease; }
.article-card:hover .card-arrow { color: var(--primary); transform: translateX(4px); }

body:has(.article-content) .container { max-width: 860px; }
body:has(.article-content) .header .container, body:has(.article-content) .footer .container { max-width: 1200px; }
.article-header { padding: 58px 0 42px; text-align: center; border-bottom: 1px solid var(--border); }
.article-header h1 { max-width: 820px; margin: 0 auto 18px; font-size: clamp(38px, 5.2vw, 54px); font-weight: 500; line-height: 1.14; }
.article-meta { color: var(--text-tertiary); font-size: 12px; }
.article-content { padding: 42px 0 60px; color: var(--dark-warm); font-family: var(--font-serif); font-size: 17px; line-height: 1.8; }
.article-content > p:first-child { color: var(--text-secondary); font-size: 19px; line-height: 1.75; }
.article-content h2 { margin: 52px 0 18px; padding: 0 0 12px; color: var(--text); border-bottom: 1px solid var(--border); font-size: 32px; font-weight: 500; line-height: 1.2; }
.article-content h3 { margin: 34px 0 12px; color: var(--text); font-size: 23px; font-weight: 500; line-height: 1.25; }
.article-content p { margin-bottom: 18px; color: var(--dark-warm); font-family: var(--font-serif); font-size: 17px; line-height: 1.8; }
.article-content ul, .article-content ol { margin: 14px 0 24px 28px; font-size: 17px; }
.article-content li { margin-bottom: 8px; color: var(--dark-warm); }
.article-content a { color: var(--primary-dark) !important; font-weight: 500; text-decoration: underline !important; text-decoration-color: #d9ad99 !important; text-underline-offset: 4px; }
.article-content blockquote { margin: 26px 0; padding: 22px 24px; color: var(--text-secondary); background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: 0 var(--radius) var(--radius) 0; font-family: var(--font-serif); font-size: 16px; line-height: 1.75; }
.article-content code { padding: 2px 6px; color: var(--primary-dark); background: var(--sand); border-radius: 4px; font-family: var(--font-mono); font-size: 0.86em; }
.article-content pre { overflow-x: auto; margin: 26px 0; padding: 24px; color: #e9e7df; background: var(--text); border: 1px solid var(--dark-surface); border-radius: var(--radius); font-family: var(--font-mono); font-size: 14px; line-height: 1.7; }
.article-content pre code { padding: 0; color: inherit; background: transparent; }
.article-content table { display: table; width: 100%; margin: 28px 0; overflow-x: auto; border-collapse: collapse; font-family: var(--font-sans); font-size: 13px; line-height: 1.5; }
.article-content table th, .article-content table td { padding: 11px 12px; border: 1px solid var(--border); text-align: left; }
.article-content table th { color: var(--card); background: var(--text); font-weight: 500; }
.article-content table tr:nth-child(even) { background: var(--card); }
.article-content table tr:hover { background: var(--hover); }
.related-section { padding: 48px 0 72px; border-top: 1px solid var(--border); }
.related-section-header { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; padding: 0; border: 0; }
.related-section-header h2 { margin: 0; color: var(--text); border: 0; font-size: 28px; }
.related-grid, .related-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.related-card { position: relative; display: flex; min-height: 220px; flex-direction: column; gap: 10px; overflow: hidden; padding: 24px; color: var(--text); background: var(--card); border: 1px solid var(--border-subtle); border-radius: var(--radius); text-decoration: none; box-shadow: var(--shadow); transition: box-shadow 180ms ease, transform 180ms ease; }
.related-card::after { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--primary); transform: scaleX(0); transition: transform 180ms ease; }
.related-card:hover { border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.related-card:hover::after { transform: scaleX(1); }
.related-card-label { color: var(--primary-dark); font-size: 11px; font-weight: 500; letter-spacing: 0.3px; }
.related-card h3 { margin: 0; color: var(--text); font-size: 21px; line-height: 1.3; }
.related-card:hover h3 { color: var(--text); }
.related-card p { margin: 0; color: var(--text-secondary); font-size: 13px; line-height: 1.6; }

/* Legacy article structures */
.article-content > h1, .article > h1 {
  max-width: 820px;
  margin: 46px auto 18px;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.2vw, 54px);
  font-weight: 500;
  line-height: 1.14;
  text-align: center;
}
.article-content > .article-meta, .article > .meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 0 0 42px;
  padding-bottom: 34px;
  color: var(--text-tertiary);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}
.article {
  padding: 0 0 60px;
  color: var(--dark-warm);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
}
.article > p:first-of-type, .article-body > p:first-child {
  color: var(--text-secondary);
  font-size: 19px;
  line-height: 1.75;
}
.article h2, .article-body h2 {
  margin: 52px 0 18px;
  padding-bottom: 12px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}
.article h3, .article-body h3 {
  margin: 34px 0 12px;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
}
.article p, .article-body p {
  margin-bottom: 18px;
  color: var(--dark-warm);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
}
.article ul, .article ol, .article-body ul, .article-body ol { margin: 14px 0 24px 28px; }
.article li, .article-body li { margin-bottom: 8px; color: var(--dark-warm); }
.article blockquote, .article-body blockquote {
  margin: 26px 0;
  padding: 22px 24px;
  color: var(--text-secondary);
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article table, .article-body table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.5;
}
.article table th, .article table td, .article-body table th, .article-body table td { padding: 11px 12px; border: 1px solid var(--border); text-align: left; }
.article table th, .article-body table th { color: var(--card); background: var(--text); font-weight: 500; }
.article table tr:nth-child(even), .article-body table tr:nth-child(even) { background: var(--card); }
.article table tr:hover, .article-body table tr:hover { background: var(--hover); }
.highlight { padding: 1px 4px; color: var(--primary-dark); background: var(--primary-light); border-radius: 4px; }
.highlight-box, .warning-box, .step-box {
  margin: 24px 0;
  padding: 20px 22px;
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-left: 4px solid var(--primary) !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
}
.warning-box { background: #f1e9dc !important; border-color: #dfd1bd !important; }
.highlight-box p:last-child, .warning-box p:last-child, .step-box p:last-child { margin-bottom: 0; }
.step-box { position: relative; padding-left: 24px; }
.step-box h3 { margin-top: 0; }
.step-num {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: var(--card);
  background: var(--primary);
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  vertical-align: 3px;
}
.code-block, .article pre, .article-body pre {
  overflow-x: auto;
  margin: 26px 0;
  padding: 24px;
  color: #e9e7df !important;
  background: var(--text) !important;
  border: 1px solid var(--dark-surface);
  border-radius: var(--radius) !important;
  font-family: var(--font-mono) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}
.article code, .article-body code { font-family: var(--font-mono); }
.article-content .faq-section { padding: 32px 0 0; }
.article-content .faq-section .faq-item { background: transparent !important; border: 0 !important; border-bottom: 1px solid var(--border) !important; border-radius: 0 !important; }
.article-content .faq-section .faq-q { min-height: auto; padding: 16px 4px; font-size: 18px; }

/* Responsive */
@media (max-width: 991px) {
  .container { width: min(100% - 40px, 920px); }
  .header .container { grid-template-columns: 1fr auto auto; gap: 16px; }
  .nav-links { gap: 18px; }
  .hero::before, .hero::after { opacity: 0.45; }
  .features-grid, .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card:last-child:nth-child(odd), .blog-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 190px; }
}

@media (max-width: 767px) {
  .container { width: min(100% - 32px, 680px); }
  .header .container { min-height: 64px; grid-template-columns: minmax(0, 1fr) auto auto; gap: 8px; }
  .logo { min-width: 0; font-size: 17px; }
  .menu-toggle { display: flex; grid-column: 2; grid-row: 1; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 16px 14px;
    background: rgba(245, 244, 237, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(20, 20, 19, 0.06);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .header.menu-open .nav-links { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links a { padding: 0 4px; line-height: 44px; border-bottom: 1px solid var(--border-subtle); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .lang-switch { grid-column: 3; grid-row: 1; width: 108px; min-width: 0; padding-right: 27px; padding-left: 31px; }
  .hero { padding: 64px 0 54px; }
  .hero::before { width: 110px; height: 72px; left: -40px; top: 40px; }
  .hero::after { width: 80px; height: 80px; right: -30px; bottom: 20px; }
  .hero h1 { font-size: clamp(36px, 10vw, 46px); }
  .hero .subtitle, .hero > .container > p { font-size: 16px; }
  .selector-section { margin-top: 24px; padding: 20px; }
  .selector-row { grid-template-columns: 1fr; gap: 14px; }
  .selector-row .generate-btn { width: 100%; }
  .result-header { align-items: flex-start; flex-direction: column; }
  .result-actions { width: 100%; }
  .result-actions button { flex: 1 1 auto; }
  .field-row { grid-template-columns: 24px 82px minmax(0, 1fr) auto; padding: 8px 14px; }
  .field-value { font-size: 12px; }
  .saved-header { align-items: flex-start; flex-direction: column; }
  .saved-header-actions { width: 100%; }
  .saved-cards { grid-template-columns: 1fr; }
  .features-section, .blog-section, .faq-section { padding: 64px 0; }
  .features-section { margin-top: 60px; }
  .features-grid, .blog-grid { grid-template-columns: 1fr; }
  .feature-card:last-child:nth-child(odd), .blog-card:last-child:nth-child(odd) { grid-column: auto; }
  .feature-card { min-height: 190px; }
  .faq-q { font-size: 18px; }
  .cta-section { padding: 64px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col a { width: auto; }
  .country-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .article-card { grid-template-columns: 42px minmax(0, 1fr); gap: 14px; }
  .article-card .card-arrow { display: none; }
  .article-card h3 { font-size: 21px; }
  .article-header { padding: 44px 0 34px; }
  .article-content { padding-top: 32px; }
  .article-content table { display: block; max-width: 100%; white-space: nowrap; }
  .related-grid, .related-list { grid-template-columns: 1fr; }
  .cookie-banner-inner { align-items: stretch; flex-direction: column; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

@media (max-width: 478px) {
  .container { width: calc(100% - 24px); }
  .header .container { gap: 8px; }
  .logo { max-width: 120px; overflow: hidden; text-overflow: ellipsis; }
  .nav-links { gap: 10px; }
  .lang-switch { min-width: 106px; padding-left: 32px; }
  .hero { padding: 48px 0 42px; }
  .hero h1 { font-size: 36px; }
  .hero .subtitle { font-size: 15px; }
  .badge { font-size: 11px; }
  .selector-section { padding: 16px; border-radius: var(--radius-md); }
  .result-header, .saved-header { padding: 16px; }
  .result-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .result-actions button:first-child { grid-column: 1 / -1; }
  .field-row { grid-template-columns: 20px 68px minmax(0, 1fr) 34px; padding: 8px 10px; }
  .field-label { font-size: 10px; }
  .field-copy-btn { min-width: 32px; margin-left: 5px; padding: 6px; }
  .saved-body { padding: 14px; }
  .features-section h2, .blog-section h2, .faq-section h2 { margin-bottom: 28px; font-size: 32px; }
  .blog-card, .feature-card { padding: 22px; }
  .legal-content, .about-content, .contact-content { padding-bottom: 64px; }
  .legal-content > h1, .about-content > h1, .contact-content > h1 { font-size: 38px; }
  .legal-content h2, .about-content h2, .contact-content h2 { font-size: 26px; }
  .about-hero, .contact-form { max-width: 100%; padding: 22px; overflow: hidden; }
  .about-hero h2, .about-hero p, .legal-content h1, .about-content h1, .contact-content h1 { overflow-wrap: anywhere; word-break: normal; }
  .country-item { grid-template-columns: auto 1fr; }
  .country-item span:last-child { grid-column: 2; }
  .article-card { grid-template-columns: 1fr; padding: 22px 4px; }
  .article-card .card-num { font-size: 20px; }
  .article-header h1 { font-size: 34px; }
  .article-content, .article-content p, .article-content ul, .article-content ol { font-size: 16px; }
  .article-content > p:first-child { font-size: 17px; }
  .article-content h2 { margin-top: 42px; font-size: 27px; }
  .article-content h3 { font-size: 21px; }
  .back-to-top { right: 14px; bottom: 72px; }
}

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