.prose pre code {
  white-space: pre-wrap;
}

.transition-fade {
  opacity: 1;
  transition: opacity 200ms ease;
}

html.is-animating .transition-fade {
  opacity: 0.85;
}

#swup {
  display: flex;
  flex-direction: column;
}

body {
  color: #F8F8F2;
  background: #262626;
}

body h1 {
  color: #9e86c8;
  font-size: 2em;
  font-weight: 800;
  margin: 1.25em 0;
}

body h2 {
  color: #9e86c8;
  font-size: 1.75em;
  font-weight: 700;
  margin: 1.25em 0;
}

body h3 {
  color: #9e86c8;
  font-size: 1.5em;
  font-weight: 600;
  margin: 1.25em 0;
}

body p {
  margin-bottom: 1em;
}

body a {
  color: #8CEDFF;
}

body a:hover {
  color: #4f93a2;
}

body ul {
  list-style: circle;
  margin-left: 2em;
  margin-bottom: 1.5em;
}

body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

body th, body td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body th {
  background: #FD971F;
  font-weight: 600;
  color: #262626;
}

body tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

body tr:last-child td {
  border-bottom: none;
}

body .header-content {
  padding: 1rem 0;
  transition: padding 0.3s ease-in-out;
}

body .header-title {
  font-size: 1.25rem;
  transition: font-size 0.3s ease-in-out;
}

body .header-nav {
  font-size: 0.875rem;
  transition: font-size 0.3s ease-in-out;
}

body .header-expanded .header-content {
  padding: 1.5rem 0;
}

body .header-expanded .header-title {
  font-size: 1.5625rem;
}

body .header-expanded .header-nav {
  font-size: 1.09375rem;
}

body .hamburger-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 50;
  transition: all 0.3s ease;
}

body .hamburger-menu:hover {
  opacity: 0.8;
}

body .hamburger-lines {
  width: 24px;
  height: 18px;
  position: relative;
}

body .hamburger-lines span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #F8F8F2;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

body .hamburger-lines span:nth-child(1) {
  top: 0px;
}

body .hamburger-lines span:nth-child(2) {
  top: 8px;
}

body .hamburger-lines span:nth-child(3) {
  top: 16px;
}

body .hamburger-menu.open .hamburger-lines span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

body .hamburger-menu.open .hamburger-lines span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

body .hamburger-menu.open .hamburger-lines span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

body .mobile-menu {
  background: rgba(38, 38, 38, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  max-height: 0;
}

body .mobile-menu.show {
  max-height: 300px;
}

body .mobile-menu-content {
  padding: 1rem 0;
}

body .mobile-menu-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #F8F8F2;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body .mobile-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

body .mobile-menu-item:last-child {
  border-bottom: none;
}

body .hidden {
  display: none !important;
}

body article p.text-neutral-400 {
  margin-bottom: 40px;
}

body article table {
  margin: 50px 5%;
  width: auto;
}

body .comment-form-container {
  min-height: 410px;
}
