        .manga-container { max-width: 1300px; margin: 0 auto; }

        /* ===== HERO ===== */
        .manga-hero { text-align: center; padding: 2.5rem 0 2rem; }
        .manga-hero h1 { font-size: 3rem; font-weight: 900; margin-bottom: 0.5rem; }
        .manga-hero h1 span { background: linear-gradient(135deg, #a855f7, #ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .manga-hero p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 2rem; }
        .manga-search-wrap {
            display: flex; gap: 0.7rem; max-width: 680px; margin: 0 auto;
            background: rgba(255,255,255,0.04); padding: 0.55rem 0.55rem 0.55rem 1.5rem;
            border-radius: 50px; border: 1px solid var(--glass-border);
            position: relative;
        }
        .manga-search-wrap input {
            flex: 1; background: transparent; border: none; color: white;
            font-size: 1rem; outline: none;
        }
        .manga-search-wrap input::placeholder { color: rgba(255,255,255,0.3); }
        .manga-search-wrap button {
            padding: 0.75rem 2rem; border-radius: 50px; font-size: 0.95rem;
            background: linear-gradient(135deg, #a855f7, #ec4899); border: none; color: white;
            font-weight: 700; cursor: pointer; font-family: inherit; transition: 0.3s;
        }
        .manga-search-wrap button:hover { transform: scale(1.04); }

        /* ===== SEARCH SUGGESTIONS ===== */
        .search-suggestions {
            position: absolute;
            top: calc(100% + 12px);
            left: 1.5rem;
            right: 1.5rem;
            background: rgba(15, 23, 42, 0.96);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(168, 85, 247, 0.15);
            max-height: 350px;
            overflow-y: auto;
            z-index: 1100;
            display: none;
            flex-direction: column;
            padding: 0.5rem;
            backdrop-filter: blur(20px);
            text-align: left;
        }
        .search-suggestions::-webkit-scrollbar {
            width: 4px;
        }
        .search-suggestions::-webkit-scrollbar-thumb {
            background: rgba(168, 85, 247, 0.4);
            border-radius: 10px;
        }
        .suggestion-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.6rem 0.9rem;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: 1px solid transparent;
        }
        .suggestion-item:hover, .suggestion-item.active {
            background: rgba(168, 85, 247, 0.15);
            border-color: rgba(168, 85, 247, 0.2);
            transform: translateX(3px);
        }
        .suggestion-cover {
            width: 38px;
            height: 52px;
            border-radius: 4px;
            object-fit: cover;
            border: 1px solid rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
        }
        .suggestion-details {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }
        .suggestion-title {
            font-size: 0.88rem;
            font-weight: 800;
            color: white;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .suggestion-meta {
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.45);
            margin-top: 0.2rem;
        }

        /* ===== GENRE CHIPS ===== */
        .genre-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
        .mcat-btn {
            padding: 0.45rem 1.1rem; border-radius: 50px; border: 1px solid var(--glass-border);
            background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6);
            cursor: pointer; font-size: 0.82rem; font-weight: 700; transition: 0.3s;
            font-family: inherit;
        }
        .mcat-btn.active, .mcat-btn:hover { background: linear-gradient(135deg, #a855f7, #ec4899); border-color: #a855f7; color: white; }

        /* ===== MANGA GRID ===== */
        .manga-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
            gap: 1.2rem;
        }
        .manga-card {
            background: var(--bg-card); border-radius: 14px; overflow: hidden;
            border: 1px solid var(--glass-border); cursor: pointer;
            transition: all 0.3s ease; position: relative;
        }
        .manga-card:hover { transform: translateY(-5px) scale(1.02); border-color: #a855f7; box-shadow: 0 12px 35px rgba(168,85,247,0.25); }
        .manga-card img { width: 100%; height: 230px; object-fit: cover; display: block; }
        .manga-status {
            position: absolute; top: 0.5rem; left: 0.5rem;
            padding: 0.18rem 0.55rem; border-radius: 6px; font-size: 0.65rem; font-weight: 800;
            text-transform: uppercase; letter-spacing: 0.5px;
        }
        .status-ongoing { background: rgba(16,185,129,0.85); color: white; }
        .status-completed { background: rgba(59,130,246,0.85); color: white; }
        .manga-card-info { padding: 0.75rem 0.85rem; }
        .manga-card-title { font-weight: 700; font-size: 0.82rem; margin-bottom: 0.3rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .manga-card-meta { color: var(--text-secondary); font-size: 0.7rem; }
        .manga-hover {
            position: absolute; inset: 0; background: rgba(0,0,0,0.55);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transition: 0.3s;
        }
        .manga-card:hover .manga-hover { opacity: 1; }
        .read-badge {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white; padding: 0.5rem 1.3rem; border-radius: 50px;
            font-size: 0.82rem; font-weight: 800;
        }

        /* ===== SKELETON ===== */
        .sk-card { background: rgba(255,255,255,0.04); border-radius: 14px; overflow: hidden; animation: skShimmer 1.4s ease-in-out infinite; }
        .sk-img { height: 230px; background: rgba(255,255,255,0.07); }
        .sk-body { padding: 0.75rem; }
        .sk-ln { height: 9px; background: rgba(255,255,255,0.07); border-radius: 5px; margin-bottom: 0.5rem; }
        .sk-ln.s { width: 60%; }
        @keyframes skShimmer { 0%,100%{opacity:1} 50%{opacity:0.5} }

        /* ===== MANGA DETAIL VIEW ===== */
        #manga-detail { display: none; }
        #reader-view { display: none; }

        .back-pill {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
            color: rgba(255,255,255,0.7); padding: 0.5rem 1.2rem; border-radius: 50px;
            cursor: pointer; font-family: inherit; font-size: 0.85rem; transition: 0.3s;
            margin-bottom: 1.5rem;
        }
        .back-pill:hover { border-color: #a855f7; color: white; }

        /* Detail layout */
        .detail-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; margin-bottom: 2rem; }
        .detail-cover { border-radius: 18px; overflow: hidden; border: 1px solid var(--glass-border); box-shadow: 0 20px 50px rgba(0,0,0,0.5); position: sticky; top: 2rem; }
        .detail-cover img { width: 100%; display: block; }
        .detail-info h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.5rem; line-height: 1.15; }
        .detail-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
        .d-badge { padding: 0.25rem 0.8rem; border-radius: 50px; font-size: 0.72rem; font-weight: 700; border: 1px solid; }
        .d-badge.type { border-color: #a855f7; color: #a855f7; background: rgba(168,85,247,0.1); }
        .d-badge.status-on { border-color: #10b981; color: #10b981; background: rgba(16,185,129,0.1); }
        .d-badge.status-fin { border-color: #3b82f6; color: #3b82f6; background: rgba(59,130,246,0.1); }
        .detail-synopsis { color: #c4c4c4; line-height: 1.8; font-size: 1rem; margin-bottom: 2rem; white-space: pre-wrap; }
        .detail-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 2rem; }
        .d-tag { background: rgba(168,85,247,0.1); color: #a855f7; padding: 0.2rem 0.7rem; border-radius: 20px; font-size: 0.72rem; font-weight: 700; border: 1px solid rgba(168,85,247,0.2); }

        /* Chapter list */
        .chapters-header { font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem; }
        .chapters-header span { color: #a855f7; }
        .chapter-search-row { display: flex; gap: 0.6rem; margin-bottom: 1rem; }
        .ch-search { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); color: white; padding: 0.65rem 1.2rem; border-radius: 12px; font-size: 0.9rem; outline: none; font-family: inherit; }
        .ch-search:focus { border-color: #a855f7; }
        .ch-sort-btn { background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); color: white; padding: 0.65rem 1.2rem; border-radius: 12px; font-size: 0.82rem; cursor: pointer; font-family: inherit; font-weight: 700; transition: 0.3s; }
        .ch-sort-btn:hover { border-color: #a855f7; }

        .chapters-list { display: flex; flex-direction: column; gap: 0.4rem; max-height: 600px; overflow-y: auto; padding-right: 4px; }
        .chapters-list::-webkit-scrollbar { width: 3px; }
        .chapters-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
        .ch-item {
            display: flex; align-items: center; justify-content: space-between;
            padding: 0.8rem 1.1rem; border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.04);
            background: rgba(255,255,255,0.02);
            cursor: pointer; transition: 0.2s;
        }
        .ch-item:hover { background: rgba(168,85,247,0.1); border-color: rgba(168,85,247,0.3); }
        .ch-item.read { opacity: 0.55; }
        .ch-left { display: flex; align-items: center; gap: 0.8rem; }
        .ch-num { font-weight: 800; font-size: 0.9rem; }
        .ch-title { color: var(--text-secondary); font-size: 0.8rem; }
        .ch-right { display: flex; align-items: center; gap: 0.8rem; }
        .ch-date { color: var(--text-secondary); font-size: 0.72rem; }
        .ch-read-btn {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white; padding: 0.3rem 0.9rem; border-radius: 8px;
            font-size: 0.72rem; font-weight: 700; border: none; cursor: pointer;
            font-family: inherit;
        }

        /* ===== READER ===== */
        .reader-controls {
            display: flex; align-items: center; justify-content: space-between;
            gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem;
            background: rgba(255,255,255,0.03); padding: 1rem 1.5rem;
            border-radius: 14px; border: 1px solid var(--glass-border);
            position: sticky; top: 70px; z-index: 100;
        }
        .reader-title { font-weight: 700; font-size: 0.9rem; }
        .reader-title span { color: #a855f7; }
        .reader-nav { display: flex; gap: 0.5rem; }
        .r-btn {
            padding: 0.5rem 1.2rem; border-radius: 10px; border: 1px solid var(--glass-border);
            background: rgba(255,255,255,0.04); color: white; cursor: pointer;
            font-family: inherit; font-weight: 700; font-size: 0.82rem; transition: 0.2s;
        }
        .r-btn:hover:not(:disabled) { background: #a855f7; border-color: #a855f7; }
        .r-btn:disabled { opacity: 0.35; cursor: not-allowed; }
        .mode-btn {
            padding: 0.4rem 1rem; border-radius: 8px; border: 1px solid var(--glass-border);
            background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6);
            cursor: pointer; font-family: inherit; font-size: 0.78rem; font-weight: 700; transition: 0.2s;
        }
        .mode-btn.active { background: rgba(168,85,247,0.2); border-color: #a855f7; color: #a855f7; }

        /* Pages */
        .reader-pages { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
        .reader-pages img {
            max-width: 850px; width: 100%; display: block;
            border-radius: 4px;
            transition: 0.3s;
        }
        .reader-pages img:hover { box-shadow: 0 0 30px rgba(168,85,247,0.2); }
        .page-img-wrap { position: relative; width: 100%; display: flex; justify-content: center; }
        .page-num-badge {
            position: absolute; bottom: 0.5rem; right: calc(50% - 420px);
            background: rgba(0,0,0,0.7); color: white;
            padding: 0.2rem 0.6rem; border-radius: 6px; font-size: 0.68rem; font-weight: 700;
        }

        /* Single page mode */
        .single-page-reader { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
        .single-page-reader img { max-width: 700px; width: 100%; border-radius: 6px; }
        .page-counter { color: var(--text-secondary); font-size: 0.85rem; font-weight: 700; }

        /* Loading spinner */
        .reader-loader { text-align: center; padding: 4rem; }
        .r-spin { width: 50px; height: 50px; border: 3px solid rgba(168,85,247,0.2); border-top-color: #a855f7; border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 1rem; }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* Ad spaces */
        .ad-banner { width: 100%; min-height: 90px; background: rgba(255,255,255,0.015); border: 1px dashed rgba(255,255,255,0.07); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.12); font-size: 0.7rem; letter-spacing: 2px; margin: 1.2rem 0; text-transform: uppercase; }
        .ad-mid { min-height: 160px; background: rgba(255,255,255,0.015); border: 1px dashed rgba(255,255,255,0.07); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.12); font-size: 0.7rem; letter-spacing: 2px; margin: 1.5rem auto; width: 100%; max-width: 728px; }

        /* Pre-chapter interstitial */
        #manga-preroll { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92); display: none; align-items: center; justify-content: center; flex-direction: column; gap: 1.5rem; backdrop-filter: blur(10px); }
        #manga-preroll.show { display: flex; }
        .mp-box { background: #0d1117; border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; max-width: 640px; width: 90%; text-align: center; }
        .mp-ad-zone { width: 100%; height: auto; min-height: 250px; background: linear-gradient(135deg, rgba(168,85,247,0.05), rgba(236,72,153,0.05)); border: 1px dashed rgba(255,255,255,0.08); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; color: #8899af; font-size: 0.78rem; }
        .mp-skip-row { display: flex; align-items: center; justify-content: center; gap: 1rem; }
        .mp-timer { width: 52px; height: 52px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.1); border-top-color: #a855f7; animation: mpspin 1s linear infinite; display: flex; align-items: center; justify-content: center; position: relative; }
        @keyframes mpspin { to { transform: rotate(360deg); } }
        #mp-count { position: absolute; font-size: 1rem; font-weight: 900; animation: none; }
        .mp-skip-btn { padding: 0.65rem 1.8rem; border-radius: 50px; background: linear-gradient(135deg, #a855f7, #ec4899); border: none; color: white; font-weight: 800; font-size: 0.88rem; cursor: not-allowed; font-family: inherit; transition: 0.3s; opacity: 0.5; }
        .mp-skip-btn.ready { cursor: pointer; opacity: 1; }
        .mp-skip-btn.ready:hover { transform: scale(1.05); }
        .mp-info { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-bottom: 0.8rem; }
        .mp-title { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }

        /* Reading history */
        .rh-section { margin-bottom: 1.8rem; }
        .rh-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem; }
        .rh-title { font-size: 1.1rem; font-weight: 800; }
        .rh-title span { background: linear-gradient(135deg, #a855f7, #ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .rh-clear { font-size: 0.72rem; color: var(--text-secondary); cursor: pointer; background: none; border: none; font-family: inherit; transition: 0.2s; }
        .rh-clear:hover { color: #ef4444; }
        .rh-scroll { display: flex; gap: 0.8rem; overflow-x: auto; padding-bottom: 0.4rem; }
        .rh-scroll::-webkit-scrollbar { height: 3px; }
        .rh-scroll::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.3); border-radius: 10px; }
        .rh-card { flex-shrink: 0; width: 110px; cursor: pointer; transition: 0.3s; }
        .rh-card:hover { transform: translateY(-3px); }
        .rh-card img { width: 100%; height: 150px; object-fit: cover; border-radius: 10px; border: 1px solid rgba(168,85,247,0.2); display: block; margin-bottom: 0.4rem; }
        .rh-name { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.8); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .rh-ch { font-size: 0.62rem; color: #a855f7; text-align: center; }

        /* Responsive */
        @media (max-width: 800px) {
            .detail-layout { grid-template-columns: 1fr; }
            .detail-cover { max-width: 250px; margin: 0 auto; position: relative; }
            .detail-info h2 { font-size: 1.8rem; }
            .reader-pages img { max-width: 100%; }
            .page-num-badge { right: 0.5rem; }
        }
        @media (max-width: 600px) {
            .manga-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
            .manga-card img { height: 185px; }
            .manga-hero h1 { font-size: 2rem; }
        }
        .page-content { padding-bottom: 80px; }

        /* ===== MANGAPLUS UPDATES STYLE ===== */
        .updates-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            animation: fadeIn 0.4s ease-out;
        }
        .updates-group {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .updates-group-header {
            font-size: 1.15rem;
            font-weight: 900;
            color: white;
            margin: 1.8rem 0 0.8rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .updates-group-header span {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .updates-group-header::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.05), transparent);
        }
        .updates-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        @media (min-width: 768px) {
            .updates-list {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (min-width: 1200px) {
            .updates-list {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
        .update-card {
            display: flex;
            gap: 0.9rem;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            padding: 0.8rem;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            align-items: center;
            backdrop-filter: blur(10px);
        }
        .update-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.04), rgba(236, 72, 153, 0.04));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }
        .update-card:hover {
            transform: translateY(-3px);
            border-color: rgba(168, 85, 247, 0.3);
            box-shadow: 0 10px 25px rgba(168, 85, 247, 0.15);
        }
        .update-card:hover::before {
            opacity: 1;
        }
        .update-cover-wrap {
            width: 65px;
            height: 90px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        .update-cover-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .update-card:hover .update-cover-wrap img {
            transform: scale(1.08);
        }
        .update-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            position: relative;
            z-index: 1;
            min-width: 0;
        }
        .update-manga-title {
            font-size: 0.9rem;
            font-weight: 800;
            color: white;
            line-height: 1.35;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: color 0.2s ease;
        }
        .update-card:hover .update-manga-title {
            color: #ec4899;
        }
        .update-chapter-info {
            font-size: 0.8rem;
            font-weight: 700;
            color: #a855f7;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .update-chapter-title {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 400;
            font-size: 0.75rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .update-meta-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 0.3rem;
            gap: 0.5rem;
        }
        .update-group-name {
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.45);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 65%;
        }
        .update-time {
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.45);
            flex-shrink: 0;
        }
        .update-read-btn {
            padding: 0.3rem 0.75rem;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 800;
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
            border: none;
            cursor: pointer;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: 2;
        }
        .update-card:hover .update-read-btn {
            opacity: 1;
            transform: translateX(0);
        }
        .update-card:hover .update-group-name {
            max-width: 40%;
        }

        /* Skeleton updates loader */
        .sk-update-card {
            display: flex;
            gap: 0.9rem;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            padding: 0.8rem;
            align-items: center;
            animation: skShimmer 1.4s ease-in-out infinite;
        }
        .sk-update-cover {
            width: 65px;
            height: 90px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 6px;
            flex-shrink: 0;
        }
        .sk-update-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .sk-update-line {
            height: 10px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 5px;
        }
        .sk-update-line.title { width: 75%; height: 12px; }
        .sk-update-line.chap { width: 45%; }
        .sk-update-line.meta { width: 60%; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }