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

:root {
  --ink: #f3ede5;
  --ink-muted: rgba(239, 230, 219, 0.62);
  --panel: rgba(17, 16, 15, 0.9);
  --panel-soft: rgba(25, 23, 22, 0.82);
  --line: rgba(232, 216, 198, 0.15);
  --line-strong: rgba(232, 216, 198, 0.28);
  --accent: #c98d5d;
  --accent-bright: #e0a871;
  --transition: 180ms ease;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0.01em;
}

.site-shell {
  display: flex;
  flex-direction: column;
  width: min(1220px, calc(100% - 64px));
  min-height: calc(100vh - 64px);
  margin: 0 auto;
  padding: 32px 0 22px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  color: var(--accent-bright);
  font: 30px/1 Georgia, serif;
}

.site-logo {
  display: block;
  max-width: 150px;
  max-height: 44px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: #fffaf4;
  font-size: 16px;
  font-weight: 560;
}

.brand span:not(.brand-mark),
.site-status,
.eyebrow {
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: 0.24em;
}

.brand span:not(.brand-mark) {
  display: block;
  padding-top: 4px;
}

.site-status {
  padding: 11px 15px;
  border: 1px solid var(--line);
}

.home-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
  padding-top: clamp(86px, 21vh, 260px);
}

.search-stage {
  width: min(760px, 100%);
}

.intro {
  margin-bottom: 28px;
}

.intro h1 {
  margin: 14px 0 10px;
  color: #fffaf5;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(36px, 5.5vw, 52px);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.intro p {
  max-width: 560px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.8;
}

.search-box {
  display: flex;
  align-items: stretch;
  height: 68px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
  transition: border-color var(--transition);
}

.search-box:focus-within {
  border-color: rgba(201, 141, 93, 0.72);
}

.search-engine-selector {
  position: relative;
  display: flex;
  align-items: stretch;
  min-width: 153px;
  cursor: pointer;
  user-select: none;
}

.current-engine {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  padding: 0 17px;
  transition: background var(--transition);
}

.current-engine:hover {
  background: rgba(255, 255, 255, 0.035);
}

.current-engine img {
  width: 20px;
  height: 20px;
  border-radius: 3px;
}

.current-engine span {
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
}

.current-engine .arrow {
  margin-left: auto;
  color: var(--ink-muted);
  font-size: 18px;
  transition: transform var(--transition);
}

.search-engine-selector:has(.engine-dropdown.active) .arrow {
  transform: rotate(180deg);
}

.engine-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 8px;
  z-index: 100;
  width: 246px;
  max-height: 316px;
  overflow-y: auto;
  padding: 10px 8px;
  visibility: hidden;
  background: #181716;
  border: 1px solid var(--line-strong);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  scrollbar-color: rgba(201, 141, 93, 0.56) rgba(232, 216, 198, 0.06);
  scrollbar-width: thin;
}

.engine-dropdown.active .engine-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.engine-dropdown-menu::-webkit-scrollbar {
  width: 7px;
}

.engine-dropdown-menu::-webkit-scrollbar-track {
  margin: 7px 0;
  background: rgba(232, 216, 198, 0.055);
  border-radius: 10px;
}

.engine-dropdown-menu::-webkit-scrollbar-thumb {
  min-height: 34px;
  background: rgba(201, 141, 93, 0.53);
  border-radius: 10px;
}

.engine-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(224, 168, 113, 0.8);
}

.engine-dropdown-menu::-webkit-scrollbar-button,
.engine-dropdown-menu::-webkit-scrollbar-corner {
  display: none;
  width: 0;
  height: 0;
}

.engine-option {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  color: var(--ink-muted);
  font-size: 13px;
  transition: background var(--transition), color var(--transition);
}

.engine-option:hover,
.engine-option.active {
  color: var(--ink);
  background: rgba(201, 141, 93, 0.12);
}

.engine-option img {
  width: 19px;
  height: 19px;
}

.engine-option .check {
  display: none;
  margin-left: auto;
  color: var(--accent-bright);
}

.engine-option.active .check {
  display: inline;
}

.menu-empty {
  padding: 17px;
  color: var(--ink-muted);
  font-size: 13px;
  text-align: center;
}

.search-divider {
  width: 1px;
  margin: 17px 0;
  background: var(--line);
}

.search-input {
  flex: 1;
  min-width: 0;
  padding: 0 20px;
  color: #fffaf4;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 15px;
}

.search-input::placeholder {
  color: rgba(239, 230, 219, 0.42);
}

.search-btn {
  margin: 9px;
  padding: 0 25px;
  color: #201b17;
  background: var(--accent);
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition);
}

.search-btn:hover {
  background: var(--accent-bright);
}

.shortcuts-section {
  padding: 25px 26px 27px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-header h2 {
  padding-top: 9px;
  color: #fffaf4;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: 22px;
  font-weight: 500;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 7px;
}

.category-btn {
  padding: 7px 13px;
  color: var(--ink-muted);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 12px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.category-btn:hover {
  border-color: var(--line-strong);
  color: var(--ink);
}

.category-btn.active {
  color: #211b17;
  background: var(--accent);
  border-color: var(--accent);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.link-card {
  display: flex;
  align-items: center;
  min-height: 65px;
  gap: 13px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid transparent;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.link-card:hover {
  background: rgba(201, 141, 93, 0.09);
  border-color: rgba(201, 141, 93, 0.32);
  transform: translateY(-1px);
}

.link-icon {
  width: 31px;
  height: 31px;
  padding: 5px;
  object-fit: contain;
  background: #f2eee8;
  border-radius: 4px;
}

.link-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.link-title {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-category {
  color: var(--ink-muted);
  font-size: 11px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 30px 0;
  color: var(--ink-muted);
  font-size: 13px;
  text-align: center;
}

.footer {
  width: min(1220px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0 0 23px;
  color: rgba(239, 230, 219, 0.43);
  font-size: 12px;
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  z-index: 2000;
  padding: 12px 20px;
  color: var(--ink);
  background: #171513;
  border: 1px solid var(--line-strong);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity var(--transition), transform var(--transition);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-shell,
  .footer {
    width: calc(100% - 32px);
  }

  .site-shell {
    min-height: calc(100vh - 44px);
    padding-top: 18px;
  }

  .site-status {
    display: none;
  }

  .home-content {
    padding-top: 70px;
  }

  .intro h1 {
    font-size: 34px;
  }

  .search-box {
    height: auto;
    flex-wrap: wrap;
  }

  .search-engine-selector {
    width: 100%;
    height: 50px;
    border-bottom: 1px solid var(--line);
  }

  .search-divider {
    display: none;
  }

  .search-input {
    height: 58px;
  }

  .search-btn {
    height: 44px;
    margin-left: 0;
  }

  .shortcuts-section {
    padding: 20px 15px;
  }

  .section-header {
    display: block;
  }

  .category-filter {
    justify-content: start;
    margin-top: 18px;
  }

  .links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Anime daydream theme */
:root {
  --ink: #393664;
  --ink-muted: rgba(66, 61, 108, 0.7);
  --panel: rgba(255, 255, 255, 0.7);
  --panel-soft: rgba(255, 255, 255, 0.57);
  --line: rgba(255, 255, 255, 0.62);
  --line-strong: rgba(225, 186, 224, 0.8);
  --accent: #ff77a9;
  --accent-bright: #ff9fc2;
  --accent-blue: #7bb7fb;
  --shadow: 0 24px 55px rgba(77, 61, 128, 0.16);
  --transition: 210ms ease;
}

body {
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Nunito", "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

body::before {
  background: linear-gradient(120deg, rgba(245, 241, 255, 0.15), rgba(41, 39, 91, 0.13)) !important;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 13% 19%, rgba(255, 255, 255, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 87% 33%, rgba(255, 255, 255, 0.75) 0 3px, transparent 4px),
    radial-gradient(circle at 80% 9%, rgba(255, 205, 227, 0.7), transparent 19%);
  pointer-events: none;
}

.site-shell {
  width: min(1240px, calc(100% - 64px));
  min-height: calc(100vh - 56px);
  padding: 28px 0 18px;
}

.site-header {
  padding: 12px 15px 12px 13px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(74, 65, 128, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  color: white;
  background: linear-gradient(140deg, #ff83ae, #8da9ff);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(239, 97, 151, 0.32);
  font: 700 26px/1 "Trebuchet MS", Arial, sans-serif;
}

.brand-mark::after {
  position: absolute;
  top: -7px;
  right: -5px;
  color: #ffd76b;
  content: "+";
  font: 700 18px/1 Arial, sans-serif;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
  transform: rotate(18deg);
}

.brand strong {
  color: #403963;
  font-size: 17px;
  font-weight: 700;
}

.brand span:not(.brand-mark),
.site-status,
.eyebrow {
  color: #887bac;
  font-weight: 700;
}

.site-status {
  color: #f45f96;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 151, 193, 0.3);
  border-radius: 999px;
}

.home-content {
  justify-content: center;
  gap: clamp(24px, 4vh, 38px);
  padding: clamp(52px, 11vh, 115px) 0 28px;
}

.search-stage {
  position: relative;
  z-index: 20;
  width: min(800px, 100%);
}

.search-stage::after {
  position: absolute;
  top: 22px;
  right: 16px;
  color: rgba(255, 119, 169, 0.72);
  content: "+";
  font: 700 31px/1 Arial, sans-serif;
  transform: rotate(18deg);
}

.intro {
  margin-bottom: 25px;
}

.intro h1 {
  margin: 12px 0 10px;
  color: #41385f;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(38px, 5.6vw, 58px);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.46);
}

.intro p {
  color: #5c577d;
  font-size: 15px;
  font-weight: 500;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  color: #e75e96;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #ff89b1;
  border-radius: 50%;
}

.search-box {
  height: 74px;
  background: var(--panel);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(19px);
}

.search-box:focus-within {
  border-color: rgba(255, 122, 172, 0.65);
  box-shadow: 0 28px 62px rgba(238, 103, 159, 0.22);
}

.search-engine-selector {
  min-width: 162px;
}

.current-engine {
  margin: 8px 0 8px 8px;
  padding: 0 13px;
  border-radius: 17px;
}

.current-engine:hover {
  background: rgba(255, 150, 190, 0.13);
}

.current-engine img,
.link-icon {
  background: white;
  border-radius: 11px;
}

.current-engine span {
  color: var(--ink);
  font-weight: 600;
}

.current-engine .arrow {
  color: #ee70a0;
}

.search-divider {
  margin: 18px 3px;
  background: rgba(226, 188, 220, 0.66);
}

.search-input {
  color: #3c365e;
  font-size: 16px;
  font-weight: 500;
}

.search-input::placeholder {
  color: rgba(79, 72, 118, 0.44);
}

.search-btn {
  margin: 9px;
  padding: 0 31px;
  color: white;
  background: linear-gradient(125deg, #ff75a8, #f699c4);
  border-radius: 17px;
  box-shadow: 0 10px 22px rgba(240, 91, 149, 0.28);
}

.search-btn:hover {
  background: linear-gradient(125deg, #ff649d, #ffacd0);
  transform: translateY(-1px);
}

.engine-dropdown-menu {
  background: linear-gradient(160deg, #fffaff, #fff 50%, #f9f5ff);
  border-color: rgba(255, 204, 228, 0.9);
  border-radius: 22px;
  box-shadow:
    0 22px 48px rgba(79, 60, 116, 0.14),
    0 5px 16px rgba(243, 114, 166, 0.08),
    inset 0 1px rgba(255, 255, 255, 0.95);
  scrollbar-color: rgba(245, 138, 180, 0.58) transparent;
}

.engine-dropdown-menu.active,
#engineDropdown.active .engine-dropdown-menu {
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: none;
}

.engine-option {
  position: relative;
  border-radius: 12px;
  color: var(--ink-muted);
  min-height: 43px;
  margin: 2px 0;
  padding: 10px 13px;
  font-weight: 600;
}

.engine-option:hover,
.engine-option.active {
  color: var(--ink);
  background: linear-gradient(110deg, rgba(255, 218, 234, 0.86), rgba(226, 227, 255, 0.78));
}

.engine-option.active {
  color: #dd4d87;
}

.engine-option.active::before {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 3px;
  height: 19px;
  content: "";
  background: #f06b9f;
  border-radius: 9px;
  transform: translateY(-50%);
}

.engine-option .check {
  display: inline;
  width: 18px;
  height: 18px;
  color: transparent;
  background: transparent;
  border-radius: 50%;
  font-size: 0;
}

.engine-option.active .check {
  background: #f06b9f;
}

.engine-option.active .check::after {
  display: block;
  color: white;
  content: "✓";
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.engine-dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.engine-dropdown-menu::-webkit-scrollbar-track {
  margin: 16px 0;
  background: transparent;
}

.engine-dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(245, 138, 180, 0.55);
  border-radius: 99px;
}

.engine-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(239, 99, 155, 0.75);
}

.shortcuts-section {
  position: relative;
  z-index: 1;
  padding: 26px;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: 0 22px 56px rgba(78, 66, 125, 0.1);
  backdrop-filter: blur(20px);
}

.section-header h2 {
  color: #413861;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 750;
}

.category-btn {
  padding: 8px 16px;
  color: #766c98;
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-weight: 600;
}

.category-btn:hover {
  color: #e7518c;
  background: white;
  border-color: rgba(254, 137, 182, 0.42);
}

.category-btn.active {
  color: white;
  background: linear-gradient(120deg, #ff75a8, #928fff);
  border-color: transparent;
  box-shadow: 0 7px 18px rgba(240, 104, 159, 0.26);
}

.links-grid {
  gap: 12px;
}

.link-card {
  min-height: 72px;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 17px;
}

.link-card:hover {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 132, 181, 0.42);
  box-shadow: 0 12px 28px rgba(95, 75, 139, 0.12);
  transform: translateY(-3px);
}

.link-icon {
  width: 38px;
  height: 38px;
  padding: 8px;
}

.link-title {
  color: #413861;
  font-weight: 650;
}

.link-category {
  color: #9687ae;
}

.footer {
  color: rgba(62, 56, 99, 0.62);
  font-weight: 500;
}

.toast {
  color: white;
  background: rgba(68, 57, 99, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(55, 45, 88, 0.2);
}

@media (max-width: 640px) {
  body {
    background-attachment: scroll !important;
    background-position: 62% center !important;
  }

  .site-shell,
  .footer {
    width: calc(100% - 24px);
  }

  .site-shell {
    min-height: auto;
    padding: 12px 0 18px;
  }

  .site-header {
    padding: 9px 10px;
    border-radius: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 23px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand span:not(.brand-mark) {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .home-content {
    gap: 22px;
    padding: 34px 0 18px;
  }

  .search-stage::after {
    display: none;
  }

  .intro {
    margin-bottom: 18px;
  }

  .eyebrow {
    padding: 5px 12px;
    font-size: 10px;
  }

  .intro h1 {
    margin: 11px 0 8px;
    font-size: clamp(29px, 9.4vw, 34px);
    line-height: 1.18;
  }

  .intro p {
    font-size: 13px;
    line-height: 1.7;
  }

  .search-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 84px;
    height: auto;
    overflow: visible;
    border-width: 1px;
    border-radius: 21px;
    box-shadow: 0 15px 38px rgba(77, 61, 128, 0.13);
  }

  .search-engine-selector {
    grid-column: 1 / -1;
    width: 100%;
    height: 53px;
    border-color: rgba(226, 188, 220, 0.66);
  }

  .current-engine {
    width: calc(100% - 12px);
    margin: 6px;
    padding: 0 12px;
  }

  .search-divider {
    display: block;
    grid-column: 1 / -1;
    width: auto;
    height: 1px;
    margin: 0 12px;
    background: rgba(226, 188, 220, 0.56);
  }

  .engine-dropdown-menu {
    top: calc(100% + 9px);
    left: 6px;
    width: calc(100% - 12px);
    max-height: min(52vh, 332px);
    padding: 8px 7px;
    border-radius: 19px;
  }

  .engine-option {
    min-height: 45px;
    padding: 11px 12px;
  }

  .search-input {
    grid-column: 1;
    height: 52px;
    padding: 0 8px 0 16px;
    font-size: 14px;
  }

  .search-btn {
    grid-column: 2;
    align-self: center;
    justify-self: stretch;
    height: 40px;
    margin: 6px;
    padding: 0 15px;
    border-radius: 14px;
    font-size: 13px;
  }

  .shortcuts-section {
    padding: 17px 12px 13px;
    border-radius: 22px;
  }

  .section-header {
    margin-bottom: 15px;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .category-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 7px;
    margin: 14px -3px 0;
    padding: 0 3px 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-filter::-webkit-scrollbar {
    display: none;
  }

  .category-btn {
    flex: 0 0 auto;
    padding: 8px 14px;
  }

  .links-grid {
    gap: 9px;
  }

  .link-card {
    min-height: 64px;
    gap: 10px;
    padding: 10px 11px;
    border-radius: 15px;
  }

  .link-icon {
    width: 34px;
    height: 34px;
    padding: 7px;
  }

  .link-title {
    font-size: 13px;
  }

  .footer {
    padding: 0 0 16px;
    font-size: 11px;
    text-align: center;
  }

  .toast {
    bottom: 18px;
    width: max-content;
    max-width: calc(100% - 28px);
    padding: 10px 16px;
    font-size: 13px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .links-grid {
    grid-template-columns: 1fr;
  }

  .link-card {
    min-height: 62px;
  }

  .search-input::placeholder {
    font-size: 12px;
  }
}
