:root {
  --extension-brand: #000;
  --extension-text: #111;
  --extension-page: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--extension-text);
  background: var(--extension-page);
}

body.uncensored-page {
  --extension-brand: #111;
}

.banner {
  background: var(--extension-brand);
  color: #fff;
  text-align: center;
  padding: 18px 16px 14px;
}

.logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: block;
  margin: 0 auto;
}

h1 {
  margin: 14px 0 2px;
  font-size: 36px;
  line-height: 1.1;
}

.version {
  margin-top: 8px;
  font-size: 14px;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 20px 36px;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
}

.page-nav a {
  color: #333;
  text-decoration: none;
}

.page-nav a:hover,
.page-nav a:focus-visible {
  text-decoration: underline;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid #cbcbcb;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.16s ease;
}

.actions a:hover {
  transform: translateY(-1px);
}

.browser-icon-img {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

section {
  margin-top: 24px;
}

.copy {
  text-align: left;
}

.copy p {
  margin-top: 12px;
  color: #333;
  line-height: 1.65;
}

.copy h2 {
  margin: 28px 0 10px;
  font-size: 18px;
}

.copy ul {
  margin: 0;
  padding-left: 18px;
  color: #333;
  line-height: 1.65;
}

.shots {
  display: flex;
  justify-content: center;
}

.shots img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

footer {
  padding: 25px 0;
  background: var(--extension-brand);
  color: #fff;
  font-size: 13px;
  text-align: center;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

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