body{
  /* min-height: 100vh; */
}
body.is-dark {
background-color: #1a1a1a;
color: #e4e4e4;
}
body.is-dark a {
    color: #e4e4e4;
    transition: color 0.3s ease;
}
@media screen and (max-width: 1023px) {
    body.is-dark .navbar-menu {
      background-color: #1a1a1a;
    }
}
body .has-text-info{
  color: #ffe08a!important;
}
@media (max-width: 1025px) {
  body .has-text-info,body .has-text-warning{
    color: #ffe08a!important;
    font-size: 1.3rem;
  }
  .language-toggle .fa-globe-asia{
    font-size: 1.3rem;
  }
}
body.is-dark input::placeholder {
  color: #e4e4e4;
}
.navbar-item img {
  
}
.dark-mode-toggle {
  cursor: pointer;
}
.hero-body {
  padding: 2rem 1.5rem;
}
.card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-content {
  flex-grow: 1;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  padding-bottom: 0.5rem;
}
.novel-card {
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}
.novel-card .image {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}
.novel-card .image img {
  width: 100%;
  height: auto;
  max-height: 231px;
  display: block;
  background: #fff;
}
.novel-card .title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}
.novel-card .subtitle {
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #666;
}
.novel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.novel-card .progress {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
  z-index: 2;
}
.novel-card .status {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  z-index: 2;
}
.ongoing {
  background-color: #23d160;
  color: white;
}
.completed {
  background-color: #ffdd57;
  color: #363636;
}
.cultivation-level {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  font-weight: bold;
  z-index: 2;
}
body.is-dark .novel-card .cultivation-level {
  background-color: rgba(30, 30, 30, 0.9);
  color: #f5f5f5;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.section-title {
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
}
.section-title::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: #dbdbdb;
  margin-left: 1rem;
  margin-right: 0;
}

section:not(.genres-section):not(.announcement-section):not(.recent-updates-section) .section-title::after {
  display: none;
}

body.is-dark .section-title::after {
  background-color: #333;
}
.genre-card {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  transition: transform 0.3s;
}

.genre-card.xianxia {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1507436001767-c05ce1aeffa2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
}
.genre-card:hover {
  transform: scale(1.05);
}
.announcement-card {
  border-left: 4px solid #3273dc;
}
footer {
  
}
body.is-dark {
  background-color: #1a1a1a;
  color: #e4e4e4;
}
body.is-dark .navbar {
  background-color: transparent !important;
  border-bottom: 1px solid #2c2c2c;
}
body.is-dark .navbar-item, 
body.is-dark .navbar-link {
  color: #f5f5f5 !important;
}
body.is-dark .navbar-item:hover,
body.is-dark .navbar-link:hover {
  background-color: #2a2a2a !important;
  color: #ffffff !important;
}
body.is-dark .navbar-dropdown {
  background-color: #1a1a1a;
  border-top: 1px solid #333;
}
body.is-dark .navbar-dropdown .navbar-item:hover {
  background-color: #2a2a2a;
}
body.is-dark .card {
  background-color: #1e1e1e;
  color: #f5f5f5;
}
body.is-dark .title,
body.is-dark .subtitle {
  color: #f5f5f5;
}
body.is-dark .completed {
  background-color: #ffdd57;
  color: #1a1a1a;  /* Darker text for better contrast on yellow background */
}
body.is-dark .novel-card .subtitle {
  color: #d4d4d4;  /* Lighter gray for better readability */
}
body.is-dark .card-footer-item {
  color: #e4e4e4;  /* Brighter text for footer items */
}
body.is-dark .section-title {
  color: #f5f5f5;  /* Bright white for section titles */
}
body.is-dark .tabs a {
  color: #d4d4d4;  /* Lighter color for tab text */
}
body.is-dark .tabs li.is-active a {
  color: #7cb3ff;  /* Brighter blue for active tab */
  border-bottom-color: #7cb3ff;
}
body.is-dark .button.is-light {
  background-color: #333;
  color: #f5f5f5;
}
body.is-dark .button.is-primary {
  background-color: #375a7f;
}
body.is-dark .button.is-primary.is-outlined {
  background-color: transparent;
  border-color: #375a7f;
  color: #f5f5f5;
}
body.is-dark .section-title::after {
  background-color: #333;
}
body.is-dark input.input {
  background-color: #2a2a2a;
  color: #f5f5f5;
  border-color: #444;
}
body.is-dark .footer {
  background-color: #1a1a1a;
  color: #f5f5f5;
}

/* Skeleton loading styles */
.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
  border-radius: 4px;
}
.skeleton-image {
  height: 180px;
  background-color: #e2e2e2;
}
.skeleton-title {
  height: 20px;
  margin-bottom: 10px;
  width: 80%;
  background-color: #e2e2e2;
}
.skeleton-text {
  height: 14px;
  margin-bottom: 8px;
  background-color: #e2e2e2;
}
.skeleton-text:last-child {
  width: 60%;
}

@keyframes skeleton-loading {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/* Dark mode skeleton */
body.is-dark .skeleton-image,
body.is-dark .skeleton-title,
body.is-dark .skeleton-text {
  background-color: #333;
}

/* Thêm hiệu ứng mờ dần cho hình ảnh */
.lazyload,
.lazyloading {
  opacity: 0;
}
.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.navbar-item .icon.has-text-primary {
  color: hsl(171, 100%, 41%) !important;
}
.navbar-item .icon.has-text-info {
  color: hsl(204, 86%, 53%) !important;
}
.navbar-item .icon.has-text-warning {
  color: hsl(48, 100%, 67%) !important;
}
.navbar-item .icon.has-text-danger {
  color: hsl(348, 100%, 61%) !important;
}
.navbar-item .icon.has-text-success {
  color: hsl(141, 71%, 48%) !important;
}

.navbar {
  box-shadow: none;
  border-bottom: 1px solid #f5f5f5;
}

.navbar-item {
  transition: all 0.3s ease;
  color: #4a4a4a;
  font-weight: bold;
}

.navbar-item:hover {
  color: #3273dc;
  background-color: transparent !important;
}

.navbar-item .icon {
  margin-right: 0.5rem;
}

.search-wrapper {
  position: relative;
  margin: 0 1rem;
}

.search-wrapper .control {
  width: 100%;
}

.search-wrapper .input {
  width: 100%;
  height: 2.5em;
  padding: 0.5em 1em 0.5em 2.5em;
  border: 1px solid #dbdbdb;
  border-radius: 50px;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.search-wrapper .input:focus {
  border-color: #3273dc;
  background-color: white;
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.15);
}

.search-wrapper .icon {
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  color: #7a7a7a;
  width: 1em;
  height: 1em;
  pointer-events: none;
  transition: color 0.3s ease;
}

.search-wrapper .input:focus + .icon {
  color: #3273dc;
}

body.is-dark .search-wrapper .input {
  background-color: #2a2a2a;
  border-color: #2a2a2a;
  color: #e4e4e4;
}

body.is-dark .search-wrapper .input:focus {
  border-color: #375a7f;
  background-color: #333;
  box-shadow: 0 0 0 0.125em rgba(55, 90, 127, 0.25);
}

body.is-dark .search-wrapper .input:focus + .icon {
  color: #375a7f;
}

.language-selector {
  display: flex;
  align-items: center;
  padding: ;
  color: #4a4a4a;
  transition: all 0.3s ease;
}

.language-selector .icon {
  color: #3273dc;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.language-selector:hover {
  background-color: #f5f5f5;
}

body.is-dark .language-selector {
  color: #e4e4e4;
}

body.is-dark .navbar-dropdown {
  background-color: #1a1a1a;
  border-top: 1px solid #333;
}

body.is-dark .navbar-dropdown .navbar-item:hover {
  background-color: #2a2a2a;
}

body.is-dark .card {
  background-color: #1e1e1e;
  color: #f5f5f5;
}

body.is-dark .title,
body.is-dark .subtitle {
  color: #f5f5f5;
}

body.is-dark .button.is-light {
  background-color: #333;
  color: #f5f5f5;
}

body.is-dark .button.is-primary {
  background-color: #375a7f;
}

body.is-dark .button.is-primary.is-outlined {
  background-color: transparent;
  border-color: #375a7f;
  color: #f5f5f5;
}

body.is-dark .section-title::after {
  background-color: #333;
}

body.is-dark input.input {
  background-color: #2a2a2a;
  color: #f5f5f5;
  border-color: #444;
}

body.is-dark .footer {
  background-color: #1a1a1a;
  color: #f5f5f5;
}

a {
  transition: color 0.3s ease;
}

a:hover {
  color: #2160c4;
}

.card-footer-item {
  color: #4a4a4a;
  font-weight: 500;
}

.card-footer-item:hover {
  color: #3273dc;
  background-color: rgba(50, 115, 220, 0.05);
}

body.is-dark .navbar-link:hover,
body.is-dark .navbar-link.is-active {
  background-color: #2c2c2c !important;
  color: #ffffff !important;
}

body.is-dark .navbar-item.has-dropdown:hover .navbar-link,
body.is-dark .navbar-item.has-dropdown.is-active .navbar-link {
  background-color: #2c2c2c !important;
  color: #ffffff !important;
}

body.is-dark .navbar-dropdown {
  background-color: #1a1a1a;
  border: 1px solid #2c2c2c;
}

body.is-dark .navbar-dropdown .navbar-item {
  color: #e4e4e4 !important;
}

body.is-dark .navbar-dropdown .navbar-item:hover {
  background-color: #2c2c2c !important;
  color: #ffffff !important;
}

.section:first-of-type {
  padding-top: 1.5rem;
  padding-bottom: 0;
}
.section:first-of-type .columns {
  margin-top: 0;
}
body.is-dark .footer a {
color: #e4e4e4;
}
.footer a {
color: #4a4a4a;
}

/* first card special style */
.column.is-6-desktop .novel-card {
  height: 340px;
}
.column.is-6-desktop .novel-card .title {
  font-size: 1.2rem;
  -webkit-line-clamp: 1;
}
.column.is-6-desktop .novel-card .subtitle {
  -webkit-line-clamp: 2;
}

body.is-dark .novel-card .subtitle {
  color: #b5b5b5;
}
body.is-dark .card-footer {
  border-top: 1px solid #2c2c2c;
}

/* Override Bulma default styles */
.card-content .title:not(.is-spaced)+.subtitle {
  margin-top: 0 !important;
}

/* Tab styles */
.section .container .tabs {
  margin-bottom: 0;
}
.tabs li a {
  cursor: pointer;
  padding: 0.5em 1em;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.tabs li.is-active a {
  border-bottom-color: #3273dc;
  color: #3273dc;
}
.tab-content .tab-pane {
  display: none;
}
.tab-content .tab-pane.is-active {
  display: block;
  animation: fadeIn 0.5s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body.is-dark .tabs li.is-active a {
  border-bottom-color: #375a7f;
  color: #5c9ce6;
}

/* Title and control bar styles */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0;
}

.section-title {
  margin: 0 !important;
  flex: 1;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Only show line for specific sections */
.genres-section .section-title::after,
.announcement-section .section-title::after,
.recent-updates-section .section-title::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: #dbdbdb;
  margin-left: 1rem;
  margin-right: 0;
}

body.is-dark .genres-section .section-title::after,
body.is-dark .announcement-section .section-title::after,
body.is-dark .recent-updates-section .section-title::after {
  background-color: #333;
}

.section-controls {
  display: flex;
  align-items: center;
  z-index: 1;
  padding: 0;
  margin-left: 0;
}

.section-controls .tabs {
  margin: 0 1rem 0 0;
}

.section-controls .tabs ul {
  border-bottom: none;
  padding-left: 0; /* Remove left padding */
}

.tabs li a {
  padding: 0.5em 1em;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tabs li.is-active a {
  border-bottom-color: #3273dc;
  color: #3273dc;
}

body.is-dark .section-title::after {
  background-color: #333;
}

body.is-dark .tabs li.is-active a {
  border-bottom-color: #375a7f;
  color: #5c9ce6;
}

@media screen and (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .section-controls {
    width: 100%;
    margin-top: 1rem;
  }
  
  .section-title {
    width: 100%;
  }
  
  .section-title::after {
    margin-right: 0;
  }
}

.section-controls .slider-control {
  display: flex;
  margin-left: 10px;
}
.section-controls .tabs ul {
  flex-wrap: nowrap;
  /* The tabs need to be scrollable horizontally on mobile */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Horizontal scroll styles */
.novel-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.novel-slider-container {
  width: 100%;
  overflow: hidden;
  padding-right: 15px;
}

/* Only enable scrolling on desktop */
@media (min-width: 769px) {
  .novel-slider-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  .novel-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
}

.novel-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  padding: 0;
  padding-bottom: 3px;
}

.novel-slider-item {
  flex: 0 0 25%;
  min-width: 200px;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .novel-slider {
    overflow: hidden;
  }
  
  .novel-slider-container {
    overflow: hidden;
    padding-right: 10px;
  }
  
  .novel-slider-track {
    padding: 0;
  }
  
  .novel-slider-item {
    flex: 0 0 50%;
    min-width: 160px;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .novel-slider-item {
    flex: 0 0 80%;
    min-width: 220px;
    padding-right: 1rem;
  }
}

/* Fix section content alignment */
.section .container {
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
}

/* Fix alignment and scrolling on mobile */
    @media screen and (max-width: 768px) {      .novel-slider {        margin: 0 -0.5rem;      }            .novel-slider-track {        padding: 0 0.5rem;      }            .novel-slider-item {        flex: 0 0 50%;        min-width: 160px;        padding: 0 0.5rem;      }            .section .container {        padding-left: 10px;        padding-right: 10px;      }    }        @media screen and (max-width: 480px) {      .novel-slider {        margin: 0 -0.5rem;      }            .novel-slider-item {        flex: 0 0 80%;        min-width: 220px;        padding: 0 0.5rem;      }    }

/* Ensure section title and content alignment */
.section-header {
  padding: 0;
  margin-bottom: 1rem;
}

.section-title {
  margin: 0;
  padding: 0;
}

.section-controls {
  margin: 0;
  padding: 0;
}

.slider-prev, 
.slider-next {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-prev:hover, 
.slider-next:hover {
  background: rgba(50, 115, 220, 0.8);
  color: white;
}

body.is-dark .slider-prev, 
body.is-dark .slider-next {
  background: rgba(42, 42, 42, 0.8);
  color: #e4e4e4;
}
body.is-dark .slider-prev:hover, 
body.is-dark .slider-next:hover {
  background: rgba(55, 90, 127, 0.8);
}

@media screen and (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 1.5rem 0;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-header .section-title::after {
    margin-top: 0; /* Remove margin-top for mobile view */
  }
  .section-controls {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: space-between;
  }
  .section-title::after {
    margin-right: -10px; /* Adjust for mobile view with smaller padding */
  }
  .section-title {
    width: 100%; /* Full width on mobile */
  }
  .section-controls .tabs {
    flex: 1;
    overflow: hidden;
  }
  .section-controls .tabs ul {
    padding-bottom: 5px;
  }
  .novel-slider {
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 20px);
  }
  .novel-slider-container {
    padding: 0 10px;
  }
  .novel-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }
  .novel-slider-item {
    padding: 0 5px;
    box-sizing: border-box;
  }
  .slider-control {
    padding-right: 5px;
  }
  
  /* Fix nested columns scrolling issue */
  .columns.is-mobile {
    margin-left: -5px;
    margin-right: -5px;
  }
  .column {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media screen and (max-width: 480px) {
  .novel-slider-item {
    flex: 0 0 85%;
    min-width: 180px;
  }
}

/* Improve card margin */
.card {
  margin-bottom: 10px;
}
.section-title {
  margin-bottom: 0 !important;
  flex: 1;
  padding-left: 0;
}

/* Alignment fix */
.container {
  width: 100%;
  max-width: 1200px;
}
.novel-slider-container {
  overflow-x: hidden;
  width: 100%;
}
.card.novel-card {
  margin-bottom: 0;
}

/* Mobile scrolling fix */    
html, body {      
  width: 100%;      
  overflow-x: hidden;
  position: relative;    
}

/* Global container scrolling fix */
.container,
.section .container,
.hero .container,
.footer .container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
  margin: 0 auto;
}

.novel-slider-container {
  width: 100%;
  padding-right: 15px;
  margin: 0 auto;
}

/* Fix container internal columns layout */
.container .columns {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  overflow: hidden;
  padding-bottom: 3px;
}

@media screen and (max-width: 768px) {
  .container,
  .section .container,
  .hero .container,
  .footer .container,
  .novel-slider-container {
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
  }
  
  .container .columns {
    margin-left: -5px;
    margin-right: -5px;
    overflow: hidden;
  }
}

@media screen and (max-width: 480px) {
  .container,
  .section .container,
  .hero .container,
  .footer .container,
  .novel-slider-container {
    min-width: 320px;
    overflow: hidden;
  }
}

.section-controls .tabs ul {      flex-wrap: nowrap;      /* The tabs need to be scrollable horizontally on mobile */      overflow-x: auto;      -webkit-overflow-scrolling: touch;      scrollbar-width: none; /* Firefox */      -ms-overflow-style: none; /* IE and Edge */    }

.section-controls .tabs ul::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Mobile optimization */
@media screen and (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
    overflow-x: hidden;
  }

  .section {
    padding: 1.5rem 0;
    overflow-x: hidden;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-controls {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: space-between;
  }

  .section-controls .tabs {
    flex: 1;
    overflow: hidden;
  }

  .section-controls .tabs ul {
    padding-bottom: 5px;
  }

  .novel-slider {
    margin-left: -10px;
    margin-right: -10px;
    width: 100%;
    overflow: hidden;
  }

  .novel-slider-container {
    padding: 0 10px;
    overflow: hidden;
  }

  .novel-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .novel-slider-item {
    padding: 0 5px;
    box-sizing: border-box;
  }

  .slider-control {
    padding-right: 5px;
  }

  /* Fix nested columns scrolling issue */
  .columns.is-mobile {
    margin-left: -5px;
    margin-right: -5px;
    overflow: hidden;
    padding-bottom: 3px;
  }

  .column {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* Special handling for very small screens */
@media screen and (max-width: 480px) {
  body {
    min-width: 320px;
    overflow-x: hidden;
  }
  .container {
    min-width: 320px;
    overflow-x: hidden;
  }
  .novel-slider-item {
    flex: 0 0 80%;
    min-width: 220px;
  }
  /* Fix small screen scrolling issue */
  .novel-slider-track {
    overflow: hidden;
  }
  .section, .columns {
    overflow-x: hidden;
  }
}

/* Card spacing fix */
.card.novel-card {
  margin: 0; 
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0;
}

/* Fix bottom blank and scrolling */
.footer {
  overflow-x: hidden;
  padding-bottom: 3rem;
}
.footer .container {
  overflow-x: hidden;
}
.footer .columns {
  margin-left: 0;
  margin-right: 0;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .footer .columns {
    margin: 0;
  }
  .footer .column {
    padding: 0.75rem;
  }
}

.section-header .section-title::after {
  margin-top: 0;
}

/* Add announcement and popular category styles */    section.section.announcement-section,    section.section.genres-section,    section.section.recent-updates-section {      background-color: #f8f9fa;      border-radius: 8px;      padding: 2rem 1.5rem;      box-shadow: 0 2px 4px rgba(0,0,0,0.05);    }

/* Dark mode background color */
body.is-dark section.section.announcement-section,
body.is-dark section.section.genres-section,
body.is-dark section.section.recent-updates-section {
  background-color: #1e1e1e;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media screen and (max-width: 768px) {
  section.section.announcement-section,
  section.section.genres-section,
  section.section.recent-updates-section {

    padding: 1.5rem 1rem;
    border-radius: 6px;
  }
}

/* All main section styles */
.section {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Dark mode background color */
body.is-dark .section {
  background-color: #1e1e1e;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Mobile adaptation */
@media screen and (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
    overflow-x: hidden;
  }

  .section {
    padding: 1.5rem 0;
    overflow-x: hidden;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-controls {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: space-between;
  }

  .section-controls .tabs {
    flex: 1;
    overflow: hidden;
  }

  .section-controls .tabs ul {
    padding-bottom: 5px;
  }

  .novel-slider {
    margin-left: -10px;
    margin-right: -10px;
    width: 100%;
    overflow: hidden;
  }

  .novel-slider-container {
    padding: 0 10px;
    overflow: hidden;
  }

  .novel-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .novel-slider-item {
    padding: 0 5px;
    box-sizing: border-box;
  }

  .slider-control {
    padding-right: 5px;
  }

  /* Fix nested columns scrolling issue */
  .columns.is-mobile {
    margin-left: -5px;
    margin-right: -5px;
    overflow: hidden;
    padding-bottom: 3px;
  }

  .column {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* Category title spacing */
.genres-section .section-title,
.announcement-section .section-title,
.recent-updates-section .section-title {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8e8e8;
}

body.is-dark .genres-section .section-title,
body.is-dark .announcement-section .section-title,
body.is-dark .recent-updates-section .section-title {
  border-bottom-color: #2c2c2c;
}

/* Mobile navigation bar optimization */
@media screen and (max-width: 768px) {
  .navbar-menu {
    position: absolute;
    width: 100%;
    background: inherit;
    box-shadow: 0 8px 16px rgba(10,10,10,.1);
  }

  .navbar-menu.is-active {
    display: block;
    padding: 0;
  }

  .navbar-item.has-dropdown {
    padding: 0;
  }

  .navbar-dropdown {
    display: none;
    position: static;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .navbar-item.has-dropdown.is-active .navbar-dropdown {
    display: block;
  }

  .navbar-item.has-dropdown:hover .navbar-dropdown {
    display: block;
  }

  .navbar-dropdown .navbar-item {
    padding-left: 1.5rem;
  }

  .search-wrapper {
    margin: 0.5rem;
    width: auto;
  }

  .search-wrapper .input {
    width: 100%;
  }

  /* Mobile language selector style */
  .navbar-item.has-dropdown {
    display: block;
    width: 100%;
  }

  .navbar-link:not(.is-arrowless)::after {
    border-color: currentColor;
    right: 1.125em;
    z-index: 4;
  }

  .navbar-link {
    padding-right: 2.5em;
  }

  /* Mobile container alignment */
  .container {
    padding: 0 15px;
  }

  section.section {
    padding: 2rem 0;
  }

  .section .container {
    padding: 0 15px;
  }

  /* Fix mobile slider alignment */
  .novel-slider {
    margin: 0 -15px;
    padding: 0 15px;
    width: calc(100% + 30px);
  }

  .novel-slider-container {
    padding: 0;
  }

  .novel-slider-track {
    padding: 0;
  }

  .novel-slider-item {
    padding: 0 7.5px;
  }

  /* Fix mobile title and control bar alignment */
  .section-header {
    padding: 0;
    margin-bottom: 1rem;
  }

  .section-controls {
    width: 100%;
    margin-top: 0.5rem;
  }

  .section-controls .tabs {
    margin-bottom: 0;
  }

  .section-controls .tabs ul {
    padding: 0;
    margin: 0;
  }
}

/* Dark mode mobile style */
body.is-dark .navbar-menu {
  background-color: #1a1a1a;
  border-bottom: 1px solid #2c2c2c;
}

body.is-dark .navbar-dropdown {
  background-color: #1a1a1a;
}

body.is-dark .navbar-item.has-dropdown:hover .navbar-link {
  background-color: #2c2c2c;
}

/* Add Xianxia category specific styles */
.category-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1495567720989-cebdbdd97913?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  padding: 4rem 1.5rem;
  color: white;
  margin-bottom: 2rem;
}

.filter-section {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

body.is-dark .filter-section {
  background-color: #1e1e1e;
}

.tag.is-cultivation {
  background-color: #ff9f43;
  color: white;
}

.tag.is-completed {
  background-color: #2ecc71;
  color: white;
}

.tag.is-ongoing {
  background-color: #3498db;
  color: white;
}
.tags:not(:last-child){
  margin-bottom: 0;
}

.novel-stats {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #666;
}

body.is-dark .novel-stats {
  color: #fff;
}

.novel-card .cultivation-level {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 159, 67, 0.9);
  color: white;
  border-radius: 4px;
  font-size: 0.7rem;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.filter-tag {
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tag:hover,
.filter-tag.is-active {
  background-color: #3273dc;
  color: white;
  border-color: #3273dc;
}

/* Dark mode tag styles */
body.is-dark .filter-tag {
  background-color: #2c2c2c;
  border-color: #444;
  color: #e4e4e4;
}

body.is-dark .filter-tag:hover,
body.is-dark .filter-tag.is-active {
  background-color: #375a7f;
  border-color: #375a7f;
  color: #ffffff;
}

body.is-dark .pagination-link {
  background-color: #2c2c2c;
  border-color: #444;
  color: #e4e4e4;
}

body.is-dark .pagination-link:hover {
  background-color: #375a7f;
  border-color: #375a7f;
  color: #ffffff;
}

body.is-dark .pagination-link.is-current {
  background-color: #375a7f;
  border-color: #375a7f;
  color: #ffffff;
}

body.is-dark .pagination-ellipsis {
  color: #e4e4e4;
}

.sort-dropdown select {
  border-radius: 20px;
  padding: 0.3rem 2rem 0.3rem 1rem;
}

/* Modify card layout */
.novel-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .novel-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 900px) {
  .novel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .novel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 400px) {
  .novel-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .novel-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
  }

  .novel-card {
    height: auto;
  }

  .novel-card .title {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }

  .novel-card .subtitle {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .novel-card .tags {
    margin-bottom: 0.3rem;
  }

  .novel-card .tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    margin-right: 0.2rem;
    margin-bottom: 0.2rem;
  }

  .novel-card .novel-stats {
    font-size: 0.75rem;
    gap: 0.5rem;
  }

  .novel-card .novel-stats span {
    white-space: nowrap;
  }

  .novel-card .card-content {
    padding: 0.5rem;
  }

  .novel-card .image {
    height: 160px;
  }
}

@media screen and (max-width: 480px) {
  .novel-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
  }

  .novel-card .image {
    height: 140px;
  }
}

@media screen and (max-width: 768px) {
  .novel-stats {
    font-size: 0.75rem;
    gap: 0.5rem;
    margin-top: 0.3rem;
  }

  .novel-stats span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .novel-card .card-content {
    padding: 0.5rem;
    overflow: hidden;
  }
}

/* Filter tag styles optimization */
a.filter-tag {
  display: inline-block;
  color: #4a4a4a;
  text-decoration: none;
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

a.filter-tag:hover,
a.filter-tag.is-active {
  background-color: #3273dc;
  color: white;
  border-color: #3273dc;
}

/* Dark mode tag styles */
body.is-dark a.filter-tag {
  background-color: #2c2c2c;
  border-color: #444;
  color: #e4e4e4;
}

body.is-dark a.filter-tag:hover,
body.is-dark a.filter-tag.is-active {
  background-color: #375a7f;
  border-color: #375a7f;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .novel-card .status{
    top: 3px;
    left: 3px;
  }
  .novel-card .cultivation-level{
    top: 3px;
    right: 3px;
  }
}
.navbar-link.is-active, .navbar-link:focus, .navbar-link:focus-within, .navbar-link:hover, a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover{
  background-color: transparent!important;
}

/* Active language highlighting for desktop navbar */
.navbar-dropdown .navbar-item.is-active {
  background-color: #f0f4fa !important;
  color: #2160c4 !important;
  font-weight: bold;
}

body.is-dark .navbar-dropdown .navbar-item.is-active {
  background-color: #1a1a1a !important;
  color: #5c9ce6 !important;
  font-weight: bold;
}

.novel-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.novel-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  padding: 1.5rem 1.2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}
.novel-card:hover {
  box-shadow: 0 8px 32px rgba(50,115,220,0.08);
  transform: translateY(-2px) scale(1.01);
}
/* Removed old novel-cover styles - now using default-novel-cover-type */
.novel-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.novel-title {
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: #2160c4;
  text-decoration: none;
  transition: color 0.2s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  line-height: 1.3;
  max-height: 2.6em;
}
.novel-title:hover {
  color: #375a7f;
}
.novel-meta {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.novel-desc {
  color: #444;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  max-height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.novel-btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}
.novel-stats {
  margin-top: auto;
  color: #888;
  font-size: 0.9rem;
}
.novel-stats span {
  margin-right: 1rem;
}

@media (max-width: 768px) {
  .novel-list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
  }
  .novel-card {
    padding: 1rem;
  }
  /* Removed old novel-cover mobile styles - now using default-novel-cover-type */
}
@media (max-width: 480px) {
  .novel-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .novel-title {
    font-size: 0.95rem;
    line-height: 1.2;
    max-height: 2.4em;
  }
  

}

/* Dark mode styles */
body.is-dark .novel-card {
  background: #1e1e1e;
}
body.is-dark .novel-title {
  color: #5c9ce6;
}
body.is-dark .novel-desc {
  color: #e4e4e4;
}
body.is-dark .novel-meta {
  color: #fff;
}
body.is-dark .novel-stats {
  color: #fff;
}

/* Tag styles */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.tag {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #f0f4fa;
  color: #2160c4;
  border: none;
}
.tag:hover {
  background: #e0e7ff;
  transform: translateY(-1px);
}
.tag.is-light {
  background: #f0f4fa;
  color: #2160c4;
}
.tag.is-light:hover {
  background: #e0e7ff;
  color: #1d4ed8;
}
.status {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}
.status.ongoing {
  background: #dcfce7;
  color: #15803d;
}
.status.completed {
  background: #fef9c3;
  color: #854d0e;
}
body.is-dark .tag {
  background: #2d3748;
  color: #90cdf4;
}
body.is-dark .tag:hover {
  background: #2c5282;
  color: #bee3f8;
}
body.is-dark .tag.is-light {
  background: #2d3748;
  color: #90cdf4;
}
body.is-dark .tag.is-light:hover {
  background: #2c5282;
  color: #bee3f8;
}




body.is-dark .status.ongoing {
  background: #065f46;
  color: #6ee7b7;
}
body.is-dark .status.completed {
  background: #78350f;
  color: #fcd34d;
}
@media (max-width: 768px) {
  .tag {
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
  }
  .status {
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
  }
  
  .novel-title {
    font-size: 1rem;
    line-height: 1.2;
    max-height: 2.4em;
  }
  

}

@media (max-width: 1024px) {
  .mobile-header {
    display: flex !important;
    height: 56px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid #eee;
  }
  .mobile-logo {
    height: 32px;
    margin: 0 auto;
    display: block;
  }
  .mobile-tabbar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #fff;
    border-top: 1px solid #eee;
    z-index: 1000;
  }
  .tab-item {
    flex: 1;
    text-align: center;
    padding: 6px 0 2px 0;
    color: #888;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.2s;
  }
  .tab-item i {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .tab-item.is-active,
  .tab-item.is-active i {
    color: #2160c4 !important;
    font-weight: bold;
  }
  .tab-item.is-active span {
    color: #2160c4 !important;
    font-weight: bold;
  }
  body {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .navbar {
    display: none !important;
  }
  .mobile-lang-dropdown {
    display: none;
    position: absolute;
    top: 48px;
    right: 8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 2000;
    min-width: 120px;
  }
  .mobile-lang-item {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold !important;
  }
  .mobile-lang-item.is-active {
    color: #2160c4 !important;
    font-weight: bold !important;
    background: #f0f4fa !important;
  }
  .mobile-lang-item:hover {
    background: #f0f4fa;
  }
}
@media (min-width: 1025px) {
  .mobile-header, .mobile-tabbar {
    display: none !important;
  }
}

body.is-dark .mobile-header {
  background: #23272f !important;
  border-bottom: 1px solid #222 !important;
}
body.is-dark .mobile-tabbar {
  background: #23272f !important;
  border-top: 1px solid #222 !important;
}
body.is-dark .tab-item,
body.is-dark .tab-item i,
body.is-dark .tab-item span {
  color: #b5b5b5 !important;
}
body.is-dark .tab-item:hover,
body.is-dark .tab-item:active {
  color: #5c9ce6 !important;
}
body.is-dark .mobile-lang-dropdown {
  background: #23272f !important;
  border: 1px solid #222 !important;
}
body.is-dark .mobile-lang-item {
  color: #b5b5b5 !important;
}
body.is-dark .mobile-lang-item.is-active {
  color: #5c9ce6 !important;
  background: #1a1a1a !important;
  font-weight: bold !important;
}
body.is-dark .mobile-lang-item:hover {
  background: #1a1a1a !important;
  color: #5c9ce6 !important;
}

.mobile-header .language-toggle .icon {
  color: #3273dc !important;
}

body.is-dark .tab-item.is-active,
body.is-dark .tab-item.is-active i,
body.is-dark .tab-item.is-active span {
  color: #5c9ce6 !important;
  font-weight: bold;
}

/* Default Novel Cover for Type Page - Copied from Index */
.default-novel-cover-type {
  width: 90px;
  height: 120px;
  position: relative;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: perspective(800px) rotateY(-3deg);
  box-shadow: 
    0 5px 15px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.1);
  background: linear-gradient(145deg, #f0f0f0, #e0e0e0);
}

.cover-background-type {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    var(--cover-gradient, linear-gradient(135deg, #667eea 0%, #764ba2 100%)),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 1px,
      rgba(255,255,255,0.1) 1px,
      rgba(255,255,255,0.1) 2px
    );
  background-size: 200% 200%, 4px 4px;
  animation: gradientShift 3s ease infinite;
}

.book-texture-type {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.book-spine-type {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(0,0,0,0.4) 0%, 
    rgba(0,0,0,0.2) 50%, 
    rgba(0,0,0,0.1) 100%);
  z-index: 3;
  border-radius: 1px 0 0 1px;
}

.book-pages-type {
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255,255,255,0.8) 0%, 
    rgba(255,255,255,0.4) 50%, 
    rgba(255,255,255,0.2) 100%);
  z-index: 3;
  border-radius: 0 1px 1px 0;
}

.cover-content-type {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0.5rem;
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.book-icon-type {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.novel-title-on-cover-type {
  font-size: 0.7rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.bookmark-type {
  position: absolute;
  top: -5px;
  right: 12px;
  z-index: 5;
}

.bookmark-ribbon-type {
  width: 4px;
  height: 15px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border-radius: 0 0 2px 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  position: relative;
}

.bookmark-ribbon-type::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-bottom: 4px solid #ff6b6b;
}

.default-novel-cover-type:hover {
  transform: perspective(800px) rotateY(-5deg) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.default-novel-cover-type {
  transition: all 0.3s ease;
}
.default-novel-cover-type:hover .bookmark-type {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

body.is-dark .cover-background-type {
  background: 
    linear-gradient(135deg, #2c3e50 0%, #34495e 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 1px,
      rgba(255,255,255,0.05) 1px,
      rgba(255,255,255,0.05) 2px
    );
  background-size: 200% 200%, 4px 4px;
}

body.is-dark .novel-title-on-cover-type {
  color: #ecf0f1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

body.is-dark .default-novel-cover-type {
  background: transparent;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}