        :root {
            --raja-kalar: #D3364D;
        }

        body {
            background-color: #f9fafb;
            color: #1f2937;
            font-family: "Inter", sans-serif;
            margin: 0;
        }

        a {
            color: var(--raja-kalar);
        }

        .page-wrap {
            max-width: 72rem;
            margin: 0 auto;
            padding: 1rem 1.5rem 2rem;
        }

        /* ---- Cards ---- */
        #list-container {
            display: flex;
            justify-content: flex-start;
            margin-top: 0.85rem;
        }

        .series-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
            padding: 0.9rem 1.4rem;
            width: 100%;
            max-width: 280px;
        }

        .series-card h2 {
            font-size: 1rem;
            font-weight: 600;
            color: #111827;
            margin: 0 0 0.75rem;
            padding-bottom: 0.6rem;
            border-bottom: 1px solid #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .series-card h2 i {
            color: #9ca3af;
            font-size: 0.85rem;
            transition: color 0.15s ease;
        }

        .series-card h2 i:hover {
            color: color-mix(in srgb, var(--raja-kalar) 80%, transparent);
        }

        /* ---- Checklist ---- */
        #checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .checkbox-div {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            font-size: 0.85rem;
            line-height: 1.1;
            color: #374151;
        }

        .checkbox-div input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: var(--raja-kalar);
            cursor: pointer;
            flex-shrink: 0;
        }

        .checkbox-div label {
            cursor: pointer;
        }

        .checkbox-div span {
            color: #9ca3af;
            font-size: 0.75rem;
        }

        #check-counter {
            margin-top: 0.75rem;
            padding-top: 0.6rem;
            border-top: 1px solid #f3f4f6;
            font-size: 0.75rem;
            font-weight: 500;
            color: #6b7280;
            text-align: right;
        }

        /* ---- Bookmarks ---- */
        #bookmarks {
            list-style: disc;
            padding: 0 0 0 1.1rem;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        #bookmarks li {
            font-size: 0.85rem;
            line-height: 1.15;
        }

        #bookmarks a {
            text-decoration: none;
        }

        #bookmarks a:hover {
            text-decoration: underline;
        }

        /* ---- Header ---- */
        .logo-link {
            display: inline-flex;
            flex-shrink: 0;
        }
