@charset "UTF-8";
body {
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
}
header .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
}
header .logo-wrapper img {
  width: 48px;
  height: 48px;
  display: block;
  margin-bottom: -4px;
}
header .logo-wrapper span {
  font-family: "Segoe UI", "Roboto", sans-serif;
  letter-spacing: 0.5px;
}
header nav.store-link-wrapper {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
header nav.store-link-wrapper .store-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
header nav.store-link-wrapper .store-link img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
header nav.store-link-wrapper .store-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
header nav.store-link-wrapper .store-link.chrome-store {
  /* Google Chrome brand gradient */
  background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
}
header nav.store-link-wrapper .store-link.firefox-store {
  /* Firefox brand gradient */
  background: linear-gradient(135deg, #FF7139 0%, #FF9500 100%);
}
header nav.store-link-wrapper .store-link + .store-link {
  display: none;
}

section.intro-section {
  display: flex;
  flex-direction: column;
  padding: 20px 12px;
}
section.intro-section h1.main-heading {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 10px;
  font-family: monospace, "Courier New", Courier;
}
section.intro-section p.tagline {
  font-size: 2rem;
  text-align: center;
  color: #4d4d4d;
  margin-bottom: 30px;
  font-weight: 300;
}
section.intro-section nav.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  justify-content: center;
}
section.intro-section nav.quick-links .resource-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background-color: #ffffff;
  border: 2px solid transparent;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
section.intro-section nav.quick-links .resource-link img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
section.intro-section nav.quick-links .resource-link span {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}
section.intro-section nav.quick-links .resource-link.blog {
  border-color: #ff9500;
}
section.intro-section nav.quick-links .resource-link.blog:hover {
  background-color: #fff3e0;
}
section.intro-section nav.quick-links .resource-link.guide-news {
  border-color: #1976d2;
}
section.intro-section nav.quick-links .resource-link.guide-news:hover {
  background-color: #e3f2fd;
}
section.intro-section nav.quick-links .resource-link.to-app {
  border-color: #1bc07e;
}
section.intro-section nav.quick-links .resource-link.to-app:hover {
  background-color: #dbf3ed;
}
section.intro-section nav.quick-links .resource-link.bug-reports {
  border-color: #181717;
}
section.intro-section nav.quick-links .resource-link.bug-reports:hover {
  background-color: #e1e4e8;
}
section.intro-section nav.quick-links .resource-link.chrome-store {
  border-color: #4285f4;
}
section.intro-section nav.quick-links .resource-link.chrome-store:hover {
  background-color: #e8f0fe;
}
section.intro-section nav.quick-links .resource-link.firefox-store {
  border-color: #ff9500;
}
section.intro-section nav.quick-links .resource-link.firefox-store:hover {
  background-color: #fff3e0;
}
section.intro-section nav.quick-links .resource-link:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 10px;
  font-family: "Segoe UI", sans-serif;
  background-color: #f9f9f9;
  color: #333;
}
main article#about-extension {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
main article#about-extension h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: #2a2a2a;
}
main article#about-extension p {
  margin: 0;
  line-height: 1.6;
}
main article#about-extension p.notice {
  background-color: #f0f4ff;
  border-left: 4px solid #4a90e2;
  padding: 8px 12px;
  border-radius: 6px;
}
main article#about-extension p.notice mark {
  background: #fff2a8;
  font-weight: bold;
}
main article#about-extension .about-app p {
  font-size: 1rem;
}
main article#about-extension .about-app p em {
  color: #444;
  font-style: italic;
}
main article#features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px;
  background-color: #f4f7fc;
  border-radius: 12px;
}
main article#features h2 {
  font-size: 1.8rem;
  color: #1f1f1f;
  border-bottom: 2px solid #dbe2ef;
  padding-bottom: 6px;
  margin-bottom: 12px;
}
main article#features .feature-category {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
main article#features .feature-category h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: #3a3a3a;
  position: relative;
  padding-left: 12px;
}
main article#features .feature-category h3::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 20px;
  background-color: #4a90e2;
  border-radius: 4px;
}
main article#features .feature-category ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
}
main article#features .feature-category ul li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5;
  gap: 8px;
}
main article#features .feature-category ul li::before {
  content: "✔";
  color: #4caf50;
  font-size: 0.9rem;
}
main article#features .general-features {
  border-left: 4px solid #1976d2;
}
main article#features .chatbot-features {
  border-left: 4px solid #7b1fa2;
}
main article#features .janitor-exclusive {
  border-left: 4px solid #f57c00;
  background: #fff9f0;
}
main article#features .characterai-exclusive {
  border-left: 4px solid #0097a7;
  background: #f0fbfc;
}

footer {
  margin-top: 32px;
  padding: 16px 20px;
  background-color: #fafafa;
  border-top: 2px solid #e5e5e5;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer h2 {
  font-size: 1.2rem;
  color: #2c2c2c;
  margin: 0;
}
footer .keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
footer .keyword-list span {
  background-color: #f0f0f0;
  color: #555;
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #d0d0d0;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
footer .keyword-list span:hover {
  background-color: #e2e2e2;
}
footer .footer-links {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}
footer .footer-links .footer-link {
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-bottom 0.2s ease;
}
footer .footer-links .footer-link:hover {
  color: #222;
  border-bottom: 1px solid #aaa;
}

@media (min-width: 768px) {
  header {
    padding: 12px 20px;
  }
  header nav.store-link-wrapper .store-link {
    gap: 10px;
    padding: 8px 22px;
    border-radius: 9999px;
    font-size: 0.9rem;
  }
  header nav.store-link-wrapper .store-link img {
    width: 32px;
    height: 32px;
  }
  main {
    padding: 12px 20px;
  }
  section.intro-section {
    padding: 24px 20px;
  }
  section.intro-section p.tagline {
    margin-bottom: 40px;
  }
}/*# sourceMappingURL=index.css.map */