.manga-carousel-section {
padding: 40px 0;
background-color: #0a0a1a;
margin-bottom: 30px;
position: relative;
overflow: hidden;
}
.manga-carousel-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, rgba(12, 255, 138, 0) 0%, rgba(12, 255, 138, 0.5) 50%, rgba(12, 255, 138, 0) 100%);
}
.manga-carousel-section::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, rgba(12, 255, 138, 0) 0%, rgba(12, 255, 138, 0.5) 50%, rgba(12, 255, 138, 0) 100%);
}
.manga-carousel-section .section-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding: 0 15px;
}
.manga-carousel-section .section-title {
font-size: 1.5rem;
font-weight: 700;
color: #fff;
margin: 0;
position: relative;
padding-left: 15px;
}
.manga-carousel-section .section-title::before {
content: "";
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 4px;
height: 20px;
background-color: #0cff8a;
border-radius: 2px;
}
.carousel-navigation {
display: flex;
gap: 10px;
}
.carousel-prev,
.carousel-next {
width: 36px;
height: 36px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
border: none;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s ease;
color: #fff;
}
.carousel-prev:hover,
.carousel-next:hover {
background-color: rgba(12, 255, 138, 0.2);
color: #0cff8a;
}
.carousel-prev:focus,
.carousel-next:focus {
outline: none;
box-shadow: 0 0 0 2px rgba(12, 255, 138, 0.5);
}
.carousel-prev.disabled,
.carousel-next.disabled {
opacity: 0.5;
cursor: not-allowed;
}
.manga-carousel-container {
position: relative;
overflow: hidden;
padding: 10px 0;
}
.manga-carousel {
display: flex;
transition: transform 0.5s ease;
gap: 20px;
}
.manga-carousel-item {
flex: 0 0 auto;
width: calc(20% - 16px);
min-width: 160px;
} .manga-carousel-item .manga-card {
background-color: #121225;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
}
.manga-carousel-item .manga-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.manga-carousel-item .manga-card-image {
position: relative;
padding-top: 140%;
overflow: hidden;
}
.manga-carousel-item .manga-cover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.manga-carousel-item .manga-card:hover .manga-cover {
transform: scale(1.05);
}
.manga-carousel-item .manga-card-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 10px;
background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
opacity: 0;
transition: opacity 0.3s ease;
}
.manga-carousel-item .manga-card:hover .manga-card-overlay {
opacity: 1;
}
.manga-carousel-item .manga-card-stats {
display: flex;
justify-content: space-between;
color: #fff;
font-size: 0.75rem;
}
.manga-carousel-item .manga-views,
.manga-carousel-item .manga-rating {
display: flex;
align-items: center;
gap: 5px;
}
.manga-carousel-item .manga-views svg,
.manga-carousel-item .manga-rating svg {
color: #0cff8a;
}
.manga-carousel-item .manga-card-content {
padding: 12px;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.manga-carousel-item .manga-title {
font-size: 0.9rem;
font-weight: 600;
margin: 0 0 8px 0;
line-height: 1.3;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.manga-carousel-item .manga-title a {
color: #fff;
text-decoration: none;
transition: color 0.2s ease;
}
.manga-carousel-item .manga-title a:hover {
color: #0cff8a;
}
.manga-carousel-item .manga-genres {
display: flex;
flex-wrap: wrap;
gap: 5px;
margin-top: auto;
}
.manga-carousel-item .manga-genre {
font-size: 0.7rem;
padding: 2px 6px;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.1);
color: #a0a0b8;
text-decoration: none;
transition: all 0.2s ease;
}
.manga-carousel-item .manga-genre:hover {
background-color: rgba(12, 255, 138, 0.2);
color: #0cff8a;
} @media (max-width: 1200px) {
.manga-carousel-item {
width: calc(25% - 15px);
}
}
@media (max-width: 992px) {
.manga-carousel-item {
width: calc(33.333% - 14px);
}
}
@media (max-width: 768px) {
.manga-carousel-item {
width: calc(50% - 10px);
}
.manga-carousel-section {
padding: 30px 0;
}
.manga-carousel-section .section-title {
font-size: 1.3rem;
}
}
@media (max-width: 480px) {
.manga-carousel-section {
padding: 25px 0;
}
.manga-carousel-section .section-header {
flex-direction: column;
align-items: flex-start;
gap: 15px;
margin-bottom: 15px;
}
.manga-carousel-section .section-title {
font-size: 1.2rem;
}
.carousel-navigation {
align-self: center;
} .manga-carousel-item {
width: 42vw; margin-right: 10px;
}
.manga-carousel {
gap: 0;
padding-left: 15px;
} .manga-carousel-item .manga-title {
font-size: 0.8rem;
}
.manga-carousel-item .manga-genre {
font-size: 0.65rem;
padding: 1px 5px;
} .manga-carousel-item .manga-card-image {
padding-top: 140%; }
.manga-carousel-item .manga-card-content {
padding: 8px;
}
} @media (max-width: 360px) {
.manga-carousel-section {
padding: 20px 0;
}
.manga-carousel-section .section-title {
font-size: 1.1rem;
}
.carousel-prev,
.carousel-next {
width: 32px;
height: 32px;
}
.manga-carousel-item {
width: 42vw; }
.manga-carousel-item .manga-card-content {
padding: 6px;
}
.manga-carousel-item .manga-title {
font-size: 0.75rem;
margin-bottom: 4px;
}
.manga-carousel-item .manga-genre {
font-size: 0.6rem;
padding: 1px 4px;
}
}.genres-container {
margin: 30px 0;
}
.genres-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 25px;
margin-bottom: 50px;
}
.genre-card {
position: relative;
border-radius: 10px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
height: 180px;
}
.genre-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 10px var(--primary);
}
.genre-card-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
}
.genre-card-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
transition: background 0.3s ease;
}
.genre-card:hover .genre-card-overlay {
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.genre-card-title {
position: absolute;
bottom: 40px;
left: 20px;
right: 20px;
margin: 0;
color: white;
font-size: 1.5rem;
font-weight: 700;
z-index: 2;
transition: transform 0.3s ease;
}
.genre-card:hover .genre-card-title {
transform: translateY(-5px);
}
.genre-card-count {
position: absolute;
bottom: 15px;
left: 20px;
color: var(--text-secondary);
font-size: 0.9rem;
z-index: 2;
} .page-header {
margin-bottom: 30px;
}
.page-title {
font-size: 2.5rem;
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 10px;
}
.genre-count {
font-size: 1.2rem;
color: var(--text-secondary);
font-weight: normal;
}
.genre-description {
color: var(--text-secondary);
margin-bottom: 20px;
font-size: 1.1rem;
line-height: 1.6;
} @media (max-width: 768px) {
.genres-grid {
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 15px;
}
.genre-card {
height: 150px;
}
.genre-card-title {
font-size: 1.2rem;
bottom: 35px;
}
.page-title {
font-size: 2rem;
}
}
@media (max-width: 480px) {
.genres-grid {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 10px;
}
.genre-card {
height: 120px;
}
.genre-card-title {
font-size: 1rem;
bottom: 30px;
left: 15px;
}
.genre-card-count {
font-size: 0.8rem;
left: 15px;
}
.page-title {
font-size: 1.8rem;
}
}.search-page,
.search-results-page {
padding: 40px 0;
}
.search-header {
text-align: center;
margin-bottom: 30px;
}
.page-title {
font-size: 2.5rem;
margin-bottom: 10px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
}
.search-query {
font-weight: 700;
}
.search-description {
color: var(--text-secondary);
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
} .search-page-form {
display: flex;
margin-bottom: 30px;
width: 100%;
max-width: 100%;
}
.search-page-input {
flex: 1;
padding: 15px;
border: 1px solid var(--border);
border-radius: 6px 0 0 6px;
background-color: rgba(255, 255, 255, 0.1);
color: var(--text);
font-size: 16px;
}
.search-page-input:focus {
outline: none;
border-color: var(--primary);
}
.search-page-button {
background: linear-gradient(90deg, var(--primary), var(--secondary));
color: #000;
border: none;
border-radius: 0 6px 6px 0;
padding: 0 20px;
font-weight: 600;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
min-width: 60px;
}
.search-page-button svg {
width: 20px;
height: 20px;
}
.search-form-container {
background-color: var(--card-bg);
border-radius: 10px;
padding: 25px;
margin-bottom: 40px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
border: 1px solid var(--border);
}
.search-form-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
}
.search-field-group {
display: flex;
flex-direction: column;
}
.search-field-group label {
margin-bottom: 8px;
font-weight: 500;
color: var(--primary);
font-size: 0.95rem;
}
.search-input-wrapper {
position: relative;
display: flex;
gap: 10px;
}
.search-input-wrapper .search-icon {
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
color: var(--text-secondary);
pointer-events: none;
}
.search-field {
flex: 1;
padding: 12px 15px;
background-color: rgba(30, 30, 48, 0.9);
border: 1px solid var(--border);
border-radius: 6px;
color: white;
font-size: 0.95rem;
transition: all 0.2s ease;
}
.search-field:focus {
border-color: var(--primary);
outline: none;
box-shadow: 0 0 0 2px rgba(12, 255, 138, 0.2);
}
.search-advanced-link {
margin-top: 15px;
text-align: right;
}
.advanced-search-link {
display: inline-flex;
align-items: center;
gap: 6px;
color: var(--primary);
font-size: 0.9rem;
text-decoration: none;
transition: all 0.2s ease;
}
.advanced-search-link:hover {
text-decoration: underline;
color: var(--primary-hover);
}
.select-wrapper {
position: relative;
}
.select-wrapper select {
width: 100%;
padding: 12px 40px 12px 15px;
background-color: rgba(30, 30, 48, 0.9);
border: 1px solid var(--border);
border-radius: 6px;
color: white;
font-size: 0.95rem;
appearance: none;
cursor: pointer;
transition: all 0.2s ease;
}
.select-wrapper select:focus {
border-color: var(--primary);
outline: none;
box-shadow: 0 0 0 2px rgba(12, 255, 138, 0.2);
}
.select-wrapper .select-arrow {
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
color: var(--primary);
pointer-events: none;
}
.search-submit-group {
display: flex;
gap: 15px;
grid-column: 1 / -1;
margin-top: 10px;
}
.search-submit-btn,
.reset-search-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 12px 24px;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.search-submit-btn {
background: var(--primary);
color: #000;
border: none;
flex: 1;
}
.search-submit-btn:hover {
background: var(--primary-hover);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(12, 255, 138, 0.3);
}
.reset-search-btn {
background: rgba(255, 255, 255, 0.1);
color: var(--text);
border: 1px solid var(--border);
text-decoration: none;
}
.reset-search-btn:hover {
background: rgba(255, 255, 255, 0.15);
color: var(--primary);
} .search-results-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 1px solid var(--border);
}
.results-title {
font-size: 1.5rem;
margin: 0;
color: var(--text);
}
.results-count {
color: var(--text-secondary);
font-size: 0.95rem;
}
.search-results-grid {
margin-bottom: 40px;
} .search-section {
margin-bottom: 40px;
}
.section-title {
font-size: 1.5rem;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid var(--border);
color: var(--text);
} .other-results-list {
display: flex;
flex-direction: column;
gap: 20px;
}
.search-item {
background-color: var(--card-bg);
border-radius: 10px;
padding: 20px;
border: 1px solid var(--border);
transition: all 0.3s ease;
}
.search-item:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
border-color: var(--primary);
}
.search-item-header {
margin-bottom: 15px;
}
.search-item-title {
font-size: 1.3rem;
margin: 0 0 10px 0;
}
.search-item-title a {
color: var(--text);
text-decoration: none;
transition: color 0.2s ease;
}
.search-item-title a:hover {
color: var(--primary);
}
.search-item-meta {
display: flex;
gap: 15px;
font-size: 0.85rem;
color: var(--text-secondary);
}
.search-item-type {
background-color: rgba(12, 255, 138, 0.1);
color: var(--primary);
padding: 3px 8px;
border-radius: 4px;
font-weight: 500;
}
.search-item-content {
display: flex;
gap: 20px;
margin-bottom: 15px;
}
.search-item-thumbnail {
flex-shrink: 0;
width: 100px;
height: 100px;
overflow: hidden;
border-radius: 6px;
}
.search-item-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
}
.search-item-excerpt {
font-size: 0.95rem;
color: var(--text-secondary);
line-height: 1.6;
}
.search-item-excerpt p {
margin: 0;
}
.search-item-footer {
text-align: right;
}
.read-more-link {
display: inline-flex;
align-items: center;
gap: 5px;
color: var(--primary);
font-size: 0.9rem;
font-weight: 500;
text-decoration: none;
transition: all 0.2s ease;
}
.read-more-link:hover {
color: var(--primary-hover);
} .no-results {
text-align: center;
padding: 60px 0;
color: var(--text-secondary);
}
.no-results-icon {
margin-bottom: 20px;
color: var(--text-secondary);
}
.no-results-title {
font-size: 1.8rem;
margin-bottom: 15px;
color: var(--text);
}
.no-results-text {
font-size: 1.1rem;
max-width: 500px;
margin: 0 auto 30px;
}
.no-results-actions {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 20px;
}
.button {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 20px;
border-radius: 6px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
}
.primary-button {
background: var(--primary);
color: #000;
}
.primary-button:hover {
background: var(--primary-hover);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(12, 255, 138, 0.3);
}
.secondary-button {
background: rgba(255, 255, 255, 0.1);
color: var(--text);
border: 1px solid var(--border);
}
.secondary-button:hover {
background: rgba(255, 255, 255, 0.15);
color: var(--primary);
} .pagination {
display: flex;
justify-content: center;
margin: 40px 0 20px;
}
.pagination .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
margin: 0 5px;
border-radius: 50%;
background-color: var(--card-bg);
color: var(--text);
font-weight: 500;
text-decoration: none;
transition: all 0.3s ease;
}
.pagination .page-numbers.current {
background: linear-gradient(90deg, var(--primary), var(--secondary));
color: #000;
}
.pagination .page-numbers:hover:not(.current) {
background-color: var(--border);
} @media (max-width: 768px) {
.search-page-form {
flex-direction: row;
flex-wrap: nowrap;
}
.search-page-input {
padding: 12px;
font-size: 14px;
}
.search-page-button {
padding: 0 15px;
min-width: 50px;
}
.search-form-grid {
grid-template-columns: 1fr;
}
.search-submit-group {
flex-direction: column;
}
.search-results-header {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
.page-title {
font-size: 2rem;
}
.search-item-content {
flex-direction: column;
}
.search-item-thumbnail {
width: 100%;
height: 200px;
}
.no-results-actions {
flex-direction: column;
}
}
@media (max-width: 576px) {
.search-page,
.search-results-page {
padding: 20px 0;
}
.page-title {
font-size: 1.8rem;
}
.search-form-container {
padding: 15px;
}
.search-input-wrapper {
flex-direction: column;
}
}.site-stats {
padding: 15px 0;
margin-bottom: 25px;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
font-size: 0.85rem;
background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}
.stats-wrapper {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}
.stats-group {
display: flex;
gap: 20px;
transition: transform 0.3s ease;
}
.stats-group:hover {
transform: translateY(-2px);
}
.stats-divider {
width: 1px;
height: 30px;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
margin: 0 5px;
}
.stats-item {
display: flex;
flex-direction: column;
align-items: center;
padding: 0 12px;
position: relative;
overflow: hidden;
}
.stats-item::after {
content: "";
position: absolute;
bottom: -2px;
left: 50%;
width: 0;
height: 1px;
background-color: rgba(255, 255, 255, 0.2);
transition: width 0.3s ease, left 0.3s ease;
}
.stats-item:hover::after {
width: 70%;
left: 15%;
}
.stats-label {
color: rgba(255, 255, 255, 0.5);
font-size: 0.75rem;
margin-bottom: 5px;
white-space: nowrap;
letter-spacing: 0.5px;
transition: color 0.3s ease;
}
.stats-item:hover .stats-label {
color: rgba(255, 255, 255, 0.7);
}
.stats-value {
color: rgba(255, 255, 255, 0.85);
font-weight: 600;
position: relative;
transition: color 0.3s ease;
}
.stats-item:hover .stats-value {
color: rgba(255, 255, 255, 1);
text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
} .stats-fade-in {
opacity: 0;
transform: translateY(10px);
animation: fadeIn 0.8s forwards;
}
@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
} @media (max-width: 768px) {
.stats-wrapper {
flex-direction: column;
align-items: stretch;
gap: 15px;
}
.stats-group {
justify-content: center;
}
.stats-divider {
width: 80%;
height: 1px;
margin: 5px auto;
background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}
} @media (max-width: 480px) {
.stats-group {
flex-direction: column;
gap: 10px;
}
.stats-item {
flex-direction: row;
justify-content: space-between;
width: 100%;
padding: 0 20px;
}
.stats-label {
margin-bottom: 0;
}
.stats-item::after {
display: none;
}
}.sidebar-popular-manga {
background-color: #0a0a1a;
border-radius: 8px;
overflow: hidden;
margin-bottom: 30px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
position: relative;
}
.sidebar-header {
padding: 15px;
border-bottom: 1px solid #1e1e30;
}
.sidebar-title {
font-size: 1.2rem;
margin: 0 0 10px 0;
color: #fff;
font-weight: 600;
}
.period-tabs {
display: flex;
background-color: #121225;
border-radius: 6px;
overflow: hidden;
}
.period-tab {
flex: 1;
padding: 8px 0;
text-align: center;
color: #a0a0b8;
font-size: 0.85rem;
font-weight: 500;
transition: all 0.2s ease;
border-bottom: 2px solid transparent;
background: none;
border: none;
cursor: pointer;
outline: none;
}
.period-tab:hover {
color: #fff;
background-color: rgba(255, 255, 255, 0.05);
}
.period-tab.active {
color: #0cff8a;
border-bottom-color: #0cff8a;
background-color: rgba(12, 255, 138, 0.05);
}
.popular-manga-list {
padding: 10px;
min-height: 200px;
}
.popular-manga-list.loading {
opacity: 0.5;
}
.popular-manga-item {
display: flex;
align-items: center;
padding: 10px;
border-bottom: 1px solid #1e1e30;
transition: background-color 0.2s ease;
position: relative;
}
.popular-manga-item:last-child {
border-bottom: none;
}
.popular-manga-item:hover {
background-color: rgba(255, 255, 255, 0.03);
}
.popular-manga-rank {
position: absolute;
top: 5px;
left: 5px;
width: 20px;
height: 20px;
background-color: rgba(0, 0, 0, 0.7);
color: #0cff8a;
font-size: 0.75rem;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
z-index: 2;
}
.popular-manga-thumbnail {
width: 50px;
height: 70px;
margin-right: 12px;
border-radius: 4px;
overflow: hidden;
flex-shrink: 0;
position: relative;
}
.popular-manga-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.popular-manga-item:hover .popular-manga-thumbnail img {
transform: scale(1.05);
}
.popular-manga-info {
flex-grow: 1;
overflow: hidden;
}
.popular-manga-title {
font-size: 0.9rem;
font-weight: 600;
margin: 0 0 5px 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.popular-manga-title a {
color: #fff;
transition: color 0.2s ease;
}
.popular-manga-title a:hover {
color: #0cff8a;
}
.popular-manga-meta {
font-size: 0.75rem;
color: #a0a0b8;
}
.manga-views {
display: flex;
align-items: center;
}
.manga-views::before {
content: "";
display: inline-block;
width: 12px;
height: 12px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230cff8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'%3E%3C/path%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3C/svg%3E");
background-size: contain;
background-repeat: no-repeat;
margin-right: 5px;
opacity: 0.7;
}
.no-manga-found {
padding: 20px;
text-align: center;
color: #a0a0b8;
font-style: italic;
} .popular-manga-loading {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(10, 10, 26, 0.7);
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
}
.spinner {
width: 40px;
height: 40px;
border: 3px solid rgba(12, 255, 138, 0.3);
border-radius: 50%;
border-top-color: #0cff8a;
animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
} @media (max-width: 768px) {
.sidebar-popular-manga {
margin-top: 30px;
}
}.content-with-sidebar {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin-top: 30px;
}
.site-main {
flex: 1;
min-width: 0; }
.widget-area {
width: 300px;
flex-shrink: 0;
}
@media (max-width: 992px) {
.content-with-sidebar {
flex-direction: column;
}
.widget-area {
width: 100%;
}
}.user-dropdown {
position: absolute;
top: 100%;
right: 0;
width: 280px;
background-color: #ffffff; border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
z-index: 1000;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.2s ease-in-out;
}
body.dark .user-dropdown {
background-color: #2d2d2d; }
.user-dropdown.active {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.user-dropdown-content {
padding: 16px;
}
.user-dropdown-header {
display: flex;
align-items: center;
margin-bottom: 16px;
}
.user-dropdown-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
margin-right: 12px;
object-fit: cover;
}
.user-dropdown-info {
display: flex;
flex-direction: column;
}
.user-dropdown-name {
font-weight: 600;
font-size: 16px;
color: #333333; }
body.dark .user-dropdown-name {
color: #f0f0f0; }
.user-dropdown-email {
font-size: 14px;
color: #666666; }
body.dark .user-dropdown-email {
color: #b0b0b0; }
.user-dropdown-menu {
display: flex;
flex-direction: column;
}
.user-dropdown-item {
display: flex;
align-items: center;
padding: 10px 8px;
border-radius: 6px;
color: #333333; text-decoration: none;
transition: background-color 0.2s;
}
body.dark .user-dropdown-item {
color: #f0f0f0; }
.user-dropdown-item:hover {
background-color: #f5f5f5; }
body.dark .user-dropdown-item:hover {
background-color: #3d3d3d; }
.user-dropdown-item svg {
margin-right: 12px;
color: #666666; }
body.dark .user-dropdown-item svg {
color: #b0b0b0; }
.user-dropdown-divider {
height: 1px;
background-color: #e0e0e0; margin: 8px 0;
}
body.dark .user-dropdown-divider {
background-color: #444444; } @media (min-width: 769px) {
.user-menu-container {
position: relative;
}
.user-dropdown {
position: absolute;
top: calc(100% + 10px);
right: 0;
}
} @media (max-width: 768px) {
.user-dropdown {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.9);
width: 90%;
max-width: 320px;
border-radius: 12px;
z-index: 1001;
}
.user-dropdown.active {
transform: translate(-50%, -50%) scale(1);
}
} .dropdown-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.3);
z-index: 999;
display: none;
}
.dropdown-overlay.active {
display: block;
}.manga-language-flag {
display: inline-block;
vertical-align: middle;
margin-right: 5px;
width: 24px;
height: 18px;
border-radius: 2px;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.manga-language-flag img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.manga-card .manga-language-flag {
top: 10px;
left: 10px;
z-index: 2;
width: 21px;
height: 11px;
}
.manga-title .manga-language-flag {
margin-right: 10px;
width: 32px;
height: 24px;
}
.chapter-item .manga-language-flag {
margin-right: 5px;
width: 24px;
height: 18px;
} .language-filter-container {
margin-bottom: 20px;
padding: 10px 15px;
background-color: var(--card-bg);
border-radius: 8px;
display: flex;
align-items: center;
flex-wrap: wrap;
}
.language-filter-container label {
margin-right: 10px;
font-weight: 500;
color: var(--text);
}
.language-filter {
padding: 8px 12px;
border-radius: 6px;
border: 1px solid var(--border);
background-color: var(--background);
color: var(--text);
font-size: 0.9rem;
cursor: pointer;
min-width: 150px;
}
.language-filter:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 2px rgba(12, 255, 138, 0.2);
} .manga-filters .language-filter-group {
display: flex;
align-items: center;
}
.manga-filters .language-filter-label {
display: flex;
align-items: center;
margin-right: 10px;
}
.manga-filters .language-filter-label .language-icon {
margin-right: 5px;
} @media (max-width: 768px) {
.language-filter-container {
flex-direction: column;
align-items: flex-start;
}
.language-filter-container label {
margin-bottom: 8px;
}
.language-filter {
width: 100%;
}
}.slimeread-language-filter-widget {
margin-bottom: 30px;
}
.language-filter-widget .language-list {
list-style: none;
padding: 0;
margin: 0;
}
.language-filter-widget .language-item {
margin-bottom: 8px;
border-radius: 6px;
transition: all 0.2s ease;
}
.language-filter-widget .language-item:hover {
background-color: rgba(255, 255, 255, 0.05);
}
.language-filter-widget .language-item.active {
background-color: var(--primary);
}
.language-filter-widget .language-item.active .language-link {
color: #000;
}
.language-filter-widget .language-link {
display: flex;
align-items: center;
padding: 8px 12px;
color: var(--text);
text-decoration: none;
border-radius: 6px;
}
.language-filter-widget .language-flag {
margin-right: 10px;
width: 24px;
height: 18px;
border-radius: 2px;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.language-filter-widget .language-flag img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.language-filter-widget .language-name {
flex-grow: 1;
font-size: 0.95rem;
}
.language-filter-widget .language-count {
font-size: 0.8rem;
color: var(--text-secondary);
opacity: 0.8;
}
.language-filter-widget .language-item.active .language-count {
color: rgba(0, 0, 0, 0.7);
} @media (max-width: 768px) {
.language-filter-widget .language-link {
padding: 10px 12px;
}
}