.manhwa-grid {
    display: grid;
    grid-template-columns: repeat(6,minmax(0,1fr));
    gap: 11px
}

.manhwa-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: .2s
}

    .manhwa-card:hover {
        transform: translateY(-3px);
        border-color: #7f3dcc
    }
.manhwa-card > a {
    display: block;
    color: inherit;
}

.manhwa-card > a:hover {
    color: inherit;
}
.manhwa-cover {
    aspect-ratio: 2 / 3;
    width: 100%;
    overflow: hidden;
    background: #171c23;
}

.manhwa-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
}

.cover-badge {
    position: absolute;
    right: 8px;
    top: 8px;
    background: var(--purple);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 9px
}

.manhwa-card-content {
    padding: 10px
}

.manhwa-card h3 {
    font-size: 12px;
    margin: 0 0 6px
}

.manhwa-card-meta {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 9px
}

.visit-list {
    display: grid;
    gap: 10px
}

.visit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    gap: 15px
}

    .visit-card > img {
        width: 105px;
        height: 105px;
        border-radius: 7px;
        object-fit: cover
    }

.visit-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.visit-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px
}

    .visit-title-row h3 {
        font-size: 14px;
        margin: 0 0 5px
    }

    .visit-title-row span {
        font-size: 10px;
        color: var(--muted)
    }

.visit-chapter {
    color: #c8cad0 !important;
    white-space: nowrap
}

.visit-progress {
    height: 7px;
    background: #292e36;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0 8px
}

    .visit-progress span {
        display: block;
        height: 100%;
        background: linear-gradient(90deg,#873de7,#aa55ff);
        border-radius: 10px
    }

.visit-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 9px;
    color: var(--muted)
}

    .visit-bottom button {
        border: 0;
        background: transparent;
        color: var(--purple-light);
        font-size: 10px
    }
.manhwa-real-content {
    opacity: 0;
    transition: opacity .25s ease;
}

.latest-manhwas-section.loaded .manhwa-real-content {
    opacity: 1;
}

.latest-manhwas-section.loaded .manhwa-loading {
    display: none;
}

.manhwa-skeleton-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.skeleton-cover {
    width: 100%;
    aspect-ratio: 2 / 3;
}

.skeleton-card-content {
    padding: 10px;
}

.skeleton-card-title {
    width: 75%;
    height: 13px;
    margin-bottom: 10px;
}

.skeleton-card-meta {
    width: 55%;
    height: 9px;
}