.theme-sidebar-box {
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 24px;
  padding: 28px;
}

.theme-sidebar-title {
  margin: 0 0 20px 6px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.theme-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.theme-category-link,
.theme-category-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  border: 0;
  border-radius: 14px;
  padding: 11px 14px;
  background: transparent;
  color: #d4d4d8;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
  transition: 0.2s;
}

.theme-category-link:hover,
.theme-category-button:hover {
  background: #27272a;
  color: #fff;
}

.theme-category-sub {
  display: none;
  margin: 6px 0 8px 14px;
  padding-left: 14px;
  border-left: 1px solid #27272a;
}

.theme-category-list li.open > .theme-category-sub {
  display: block;
}

.theme-category-arrow {
  color: #a1a1aa;
  transition: transform 0.2s ease;
}

.theme-category-list li.open > .theme-category-button .theme-category-arrow {
  transform: rotate(90deg);
}

.theme-tags-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.theme-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 14px;
  background: #27272a;
  color: #f4f4f5;
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s;
}

.theme-tag:hover {
  background: #4f46e5;
  color: #fff;
}

.theme-ad-box {
  height: 300px;
  border-radius: 20px;
  background: #27272a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b8b9a;
  font-size: 18px;
}

pre {
  margin: 24px 0;
  padding: 20px;
  overflow-x: auto;

  background: #111827;
  border: 1px solid #27272a;
  border-radius: 20px;

  color: #e4e4e7;

  font-size: 14px;
  line-height: 1.7;
}

pre code {
  background: transparent;
  padding: 0;
  border: 0;

  color: inherit;

  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    monospace;
}

code {
  padding: 2px 6px;

  background: #27272a;
  border-radius: 6px;

  color: #c4b5fd;

  font-size: 13px;
}