@charset "UTF-8";
* {
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  top: -1000px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 10000;
  transition: top 0.3s;
  width: 100%;
  text-align: center;
  font-weight: bold;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

html {
  -webkit-text-size-adjust: 100%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
  background-color: #eef3f9;
  background-image: linear-gradient(to bottom, #f5f8fc 0%, #eef3f9 260px);
  background-repeat: no-repeat;
}

a {
  color: #0b5ed7;
  text-decoration: underline;
}
a:hover {
  color: #b30000;
  text-decoration: underline;
}
a:visited {
  color: #0b5ed7;
}
.page-link {
  text-decoration: none !important;
}

.wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: linear-gradient(to bottom, #86c5f4 0%, #5a9fe0 45%, #4a8fd6 55%, #6fb1ec 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 0;
}

.site-title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.site-title:visited {
  color: #fff;
}
.site-title:hover {
  color: #fff;
  text-decoration: none;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-link {
  display: inline-block;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  border-radius: 14px;
}
.page-link:visited {
  color: #fff;
}
.page-link:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.page-link:active, .page-link.current {
  background: rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.35);
  transform: translateY(1px);
}

.theme-toggle {
  margin-left: 12px;
  padding: 0;
  width: 34px;
  height: 34px;
  line-height: 32px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
  background: linear-gradient(to bottom, #86c5f4 0%, #5a9fe0 45%, #4a8fd6 55%, #6fb1ec 100%);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
  text-decoration: none !important;
}
.theme-toggle:hover {
  filter: brightness(1.08);
  text-decoration: none !important;
}
.theme-toggle:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
  text-decoration: none !important;
}

.theme-toggle::after {
  content: "☽";
}

[data-theme=dark] .theme-toggle::after {
  content: "☀";
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}

.mobile-menu-toggle:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.hamburger {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.mobile-menu-toggle[aria-expanded=true] .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle[aria-expanded=true] .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded=true] .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.page-content {
  padding: 24px 0 40px;
}

.layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
  align-items: start;
}

.panel {
  background-color: #ffffff;
  border: 1px solid #b7c0cc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 2px 6px rgba(0, 0, 0, 0.15);
}

.box-header {
  padding: 9px 20px;
  background: linear-gradient(to bottom, #9fb4c8 0%, #8ba3ba 45%, #7e96ad 55%, #93aabe 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.page-heading {
  margin: 0;
  font-size: 19px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), 0 -1px 1px rgba(0, 0, 0, 0.4);
}

.panel-content {
  padding: 20px 24px 24px;
}

.home-intro {
  padding: 20px 24px 24px;
}

.home-intro h1 {
  margin: -20px -24px 16px;
  padding: 9px 24px;
  font-size: 19px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), 0 -1px 1px rgba(0, 0, 0, 0.4);
  background: linear-gradient(to bottom, #9fb4c8 0%, #8ba3ba 45%, #7e96ad 55%, #93aabe 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.home-intro h2 {
  font-size: 16px;
  color: #1c2b3a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85), 0 1px 2px rgba(0, 0, 0, 0.18);
}

.home-intro p {
  margin: 0 0 12px;
}

.home-intro p:last-child {
  margin-bottom: 0;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.widget {
  background-color: #ffffff;
  border: 1px solid #b7c0cc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 2px 5px rgba(0, 0, 0, 0.12);
}

.widget-title {
  margin: 0;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), 0 -1px 1px rgba(0, 0, 0, 0.4);
  background: linear-gradient(to bottom, #9fb4c8 0%, #8ba3ba 45%, #7e96ad 55%, #93aabe 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.widget-body {
  padding: 12px 14px;
  font-size: 13.5px;
}

.widget-body p {
  margin: 0 0 8px;
}

.widget-body p:last-child {
  margin-bottom: 0;
}

.widget-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget-list li {
  margin: 0 0 6px;
}
.widget-list li:last-child {
  margin-bottom: 0;
}
.widget-list li::before {
  content: "➩";
  color: #7a8696;
}

.subscribe-text {
  color: #7a8696;
}

.listening-track {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.listening-art {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid #8c9bab;
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 1px 2px rgba(0, 0, 0, 0.22);
}

.listening-art-empty {
  display: grid;
  place-items: center;
  color: #dcecff;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #5f87b4, #293e59);
}

.listening-details {
  min-width: 0;
  flex: 1;
}

.listening-status,
.recommendations-label,
.recommendation-type {
  margin: 0 0 2px;
  color: #7a8696;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.listening-name {
  display: block;
  overflow: hidden;
  color: #333333;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.25;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.listening-name:hover {
  color: #b30000;
  text-decoration: underline;
}
.listening-name:visited {
  color: #333333;
}

.listening-artist,
.listening-album {
  overflow: hidden;
  margin: 2px 0 0;
  color: #7a8696;
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listening-album {
  font-size: 11px;
}

.listening-empty {
  color: #7a8696;
}

.listening-profile {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
}

.rss-button {
  display: inline-block;
  padding: 5px 16px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  background: linear-gradient(to bottom, #ffa04d 0%, #f26c10 45%, #e35f06 55%, #f8822e 100%);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.rss-button:visited {
  color: #fff;
}
.rss-button:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.06);
}
.rss-button:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.35);
}
.rss-button:visited {
  color: #fff;
}

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.4);
  padding: 14px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.footer-copy,
.footer-stamp {
  margin: 0;
  font-size: 13px;
  color: #7a8696;
}

.rss-link {
  font-weight: bold;
  color: #ff6600;
}
.rss-link:hover {
  color: #cc5200;
}
.rss-link:visited {
  color: #ff6600;
}

h2 {
  color: #1c2b3a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85), 0 1px 2px rgba(0, 0, 0, 0.18);
}

blockquote {
  margin: 16px 0;
  padding: 4px 16px;
  color: #7a8696;
  border-left: 4px solid #b7c0cc;
}

pre, code {
  font-family: Menlo, Consolas, Monaco, "Courier New", monospace;
  font-size: 13px;
  background-color: #f4f6f9;
  border: 1px solid #b7c0cc;
  border-radius: 4px;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 10px 14px;
  overflow-x: auto;
}
pre code {
  padding: 0;
  border: none;
  background: none;
}

table {
  margin: 16px 0;
  border-collapse: collapse;
  color: #333333;
}
table th, table td {
  padding: 6px 12px;
  border: 1px solid #b7c0cc;
}
table th {
  background-color: #eef3f9;
}

img {
  max-width: 100%;
  border-radius: 6px;
}

.recommendations {
  margin-top: 22px;
  border-top: 1px solid #d6dde6;
}

.recommendation,
.recommendations-empty {
  padding: 14px 2px;
  border-bottom: 1px solid #d6dde6;
}

.recommendation h2 {
  margin: 0;
  font-size: 17px;
}

.recommendation h2 a {
  text-decoration: none;
}
.recommendation h2 a:hover {
  text-decoration: underline;
}

.recommendation p:last-child,
.recommendations-empty p:last-child {
  margin: 5px 0 0;
}

.recommendations-empty {
  padding: 17px 14px;
  color: #7a8696;
  background: linear-gradient(to bottom, #f9fbfd, #f1f5f9);
  border: 1px solid #d6dde6;
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme=dark] {
  background-color: #0e1520;
}
[data-theme=dark] body {
  background-color: #0e1520;
  background-image: linear-gradient(to bottom, #131c2b 0%, #0e1520 260px);
  background-repeat: no-repeat;
  color: #dde4ee;
}
[data-theme=dark] a {
  color: #7cb0ff;
}
[data-theme=dark] a:hover {
  color: #ff8a8a;
}
[data-theme=dark] a:visited {
  color: #7cb0ff;
}
[data-theme=dark] .site-header {
  background: linear-gradient(to bottom, #3d66ac 0%, #2d4f8f 45%, #27467f 55%, #345795 100%);
}
[data-theme=dark] .site-title,
[data-theme=dark] .site-title:visited,
[data-theme=dark] .site-title:hover {
  color: #fff;
}
[data-theme=dark] .page-link,
[data-theme=dark] .page-link:visited,
[data-theme=dark] .page-link:hover {
  color: #fff;
}
[data-theme=dark] .rss-button,
[data-theme=dark] .rss-button:hover,
[data-theme=dark] .rss-button:visited {
  color: #fff;
}
[data-theme=dark] .theme-toggle {
  background: linear-gradient(to bottom, #4a77c0 0%, #3560a8 45%, #2c5496 55%, #3d6cb0 100%);
  border-color: rgba(0, 0, 0, 0.5);
}
[data-theme=dark] .panel {
  background-color: #17202e;
  border-color: #2a3850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.4);
}
[data-theme=dark] .box-header {
  background: linear-gradient(to bottom, #5d6d82 0%, #4d5d71 45%, #46566a 55%, #55657a 100%);
  border-bottom-color: rgba(0, 0, 0, 0.4);
}
[data-theme=dark] .page-heading {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 -1px 0 rgba(255, 255, 255, 0.08);
}
[data-theme=dark] .home-intro h1 {
  background: linear-gradient(to bottom, #5d6d82 0%, #4d5d71 45%, #46566a 55%, #55657a 100%);
  border-bottom-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 -1px 0 rgba(255, 255, 255, 0.08);
}
[data-theme=dark] .home-intro h2,
[data-theme=dark] h2 {
  color: #e4ebf5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
[data-theme=dark] .widget {
  background-color: #17202e;
  border-color: #2a3850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.6), 0 2px 5px rgba(0, 0, 0, 0.35);
}
[data-theme=dark] .widget-title {
  background: linear-gradient(to bottom, #5d6d82 0%, #4d5d71 45%, #46566a 55%, #55657a 100%);
  border-bottom-color: rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 -1px 0 rgba(255, 255, 255, 0.08);
}
[data-theme=dark] .widget-list li::before {
  color: #8b98ab;
}
[data-theme=dark] .subscribe-text {
  color: #8b98ab;
}
[data-theme=dark] .listening-art {
  border-color: #43536a;
}
[data-theme=dark] .listening-name,
[data-theme=dark] .listening-name:visited {
  color: #dde4ee;
}
[data-theme=dark] .listening-name:hover {
  color: #ff8a8a;
}
[data-theme=dark] .listening-artist,
[data-theme=dark] .listening-album,
[data-theme=dark] .listening-empty,
[data-theme=dark] .listening-status,
[data-theme=dark] .recommendations-label,
[data-theme=dark] .recommendation-type {
  color: #8b98ab;
}
[data-theme=dark] .site-footer {
  background: rgba(255, 255, 255, 0.03);
  border-top-color: #2a3850;
}
[data-theme=dark] .footer-copy,
[data-theme=dark] .footer-stamp {
  color: #8b98ab;
}
[data-theme=dark] blockquote {
  color: #8b98ab;
  border-left-color: #2a3850;
}
[data-theme=dark] pre, [data-theme=dark] code {
  background-color: #0d1420;
  border-color: #2a3850;
}
[data-theme=dark] table {
  color: #dde4ee;
}
[data-theme=dark] table th, [data-theme=dark] table td {
  border-color: #2a3850;
}
[data-theme=dark] table th {
  background-color: rgb(13.0196078431%, 18.1142369991%, 26.0392156863%);
}
[data-theme=dark] .recommendations {
  border-top-color: #2a3850;
}
[data-theme=dark] .recommendation,
[data-theme=dark] .recommendations-empty {
  border-color: #2a3850;
}
[data-theme=dark] .recommendations-empty {
  color: #8b98ab;
  background: linear-gradient(to bottom, rgb(11.0196078431%, 15.3316283035%, 22.0392156863%), #17202e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (max-width: 700px) {
  .layout-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .header-bar {
    gap: 6px;
  }
  .site-title {
    font-size: 18px;
    padding: 3px 10px;
  }
  .site-nav {
    gap: 4px;
  }
  .page-link {
    padding: 3px 8px;
    font-size: 13px;
  }
  .theme-toggle {
    margin-left: 8px;
    width: 28px;
    height: 28px;
    line-height: 26px;
    font-size: 14px;
  }
  .footer-row {
    flex-direction: column;
    gap: 2px;
  }
}
@media (max-width: 420px) {
  .site-nav {
    margin-left: 0;
  }
}
.anilist-section-title {
  font-size: 1.4em;
  color: #0b5ed7;
  border-bottom: 2px solid #b7c0cc;
  padding-bottom: 6px;
  margin-top: 32px;
  margin-bottom: 16px;
}

[data-theme=dark] .anilist-section-title {
  color: #7cb0ff;
  border-bottom-color: #2a3850;
}

.anilist-list {
  margin-bottom: 24px;
}

.anilist-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid #b7c0cc;
  border-radius: 6px;
  background: #ffffff;
  margin-bottom: 8px;
  transition: box-shadow 0.2s ease;
}
.anilist-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

[data-theme=dark] .anilist-item {
  border-color: #2a3850;
  background: #17202e;
}
[data-theme=dark] .anilist-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.anilist-item-art {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  border: 1px solid #b7c0cc;
  object-fit: cover;
  flex-shrink: 0;
}

[data-theme=dark] .anilist-item-art {
  border-color: #2a3850;
}

.anilist-item-art-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3f9;
  color: #7a8696;
  font-size: 0.7em;
  font-weight: bold;
}

[data-theme=dark] .anilist-item-art-empty {
  background: rgb(5.6862745098%, 7.9113384484%, 11.3725490196%);
  color: #8b98ab;
}

.anilist-item-details {
  flex: 1;
  min-width: 0;
}

.anilist-item-title {
  font-size: 1em;
  margin: 0 0 4px;
}
.anilist-item-title a {
  color: #0b5ed7;
  text-decoration: none;
}
.anilist-item-title a:hover {
  text-decoration: underline;
  color: #b30000;
}

[data-theme=dark] .anilist-item-title a {
  color: #7cb0ff;
}
[data-theme=dark] .anilist-item-title a:hover {
  color: #ff8a8a;
}

.anilist-item-meta {
  font-size: 0.85em;
  color: #7a8696;
  margin: 0 0 4px;
}

[data-theme=dark] .anilist-item-meta {
  color: #8b98ab;
}

.anilist-item-desc {
  font-size: 0.85em;
  color: #7a8696;
  margin: 4px 0 0;
  line-height: 1.4;
}

[data-theme=dark] .anilist-item-desc {
  color: #8b98ab;
}

.anilist-empty {
  color: #7a8696;
  padding: 16px;
  text-align: center;
  border: 1px dashed #b7c0cc;
  border-radius: 6px;
  margin-bottom: 16px;
}

[data-theme=dark] .anilist-empty {
  color: #8b98ab;
  border-color: #2a3850;
}

.anilist-current-label {
  font-size: 1.1em;
  color: #0b5ed7;
  margin: 0 0 8px;
}

[data-theme=dark] .anilist-current-label {
  color: #7cb0ff;
}

.anilist-current-list {
  margin-bottom: 16px;
}

.anilist-current-item {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid #b7c0cc;
  border-radius: 4px;
  background: #ffffff;
  margin-bottom: 4px;
}
.anilist-current-item:hover {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

[data-theme=dark] .anilist-current-item {
  border-color: #2a3850;
  background: #17202e;
}
[data-theme=dark] .anilist-current-item:hover {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.anilist-current-title {
  font-size: 0.9em;
}
.anilist-current-title a {
  color: #0b5ed7;
  text-decoration: none;
}
.anilist-current-title a:hover {
  text-decoration: underline;
  color: #b30000;
}

[data-theme=dark] .anilist-current-title a {
  color: #7cb0ff;
}
[data-theme=dark] .anilist-current-title a:hover {
  color: #ff8a8a;
}

.anilist-current-status {
  font-size: 0.8em;
  color: #7a8696;
}

[data-theme=dark] .anilist-current-status {
  color: #8b98ab;
}

/*# sourceMappingURL=main-compiled.css.map */
