            .audiobook-carousel {
                position: relative;
                margin: 0 0 40px;
            }
            .audiobook-carousel-track {
                display: flex;
                gap: 20px;
                overflow-x: auto;
                overscroll-behavior-inline: contain;
                scroll-behavior: smooth;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                padding-bottom: 4px;
            }
            .audiobook-carousel-track::-webkit-scrollbar {
                display: none;
            }
            .audiobook-slide {
                flex: 0 0 100%;
                max-width: 100%;
                scroll-snap-align: start;
            }
            .audiobook-carousel-btn {
                position: absolute;
                top: 50%;
                z-index: 2;
                width: 36px;
                height: 36px;
                border: 1px solid rgba(255, 255, 255, 0.16);
                border-radius: 50%;
                background: rgba(28, 30, 32, 0.88);
                color: #fff;
                cursor: pointer;
                transform: translateY(-50%);
                display: flex;
                align-items: center;
                justify-content: center;
                font-family: "Poppins", sans-serif;
                font-size: 25px;
                line-height: 1;
                transition:
                    background 0.2s,
                    border-color 0.2s,
                    color 0.2s;
            }
            .audiobook-carousel-btn:hover {
                background: rgba(90, 194, 78, 0.22);
                border-color: rgba(90, 194, 78, 0.5);
                color: #5ac24e;
            }
            .audiobook-carousel-btn:disabled {
                opacity: 0.28;
                cursor: default;
                pointer-events: none;
            }
            .audiobook-carousel-btn.prev {
                left: -18px;
            }
            .audiobook-carousel-btn.next {
                right: -18px;
            }

            .audiobook-card {
                margin: 0 0 40px 0;
                background: rgba(255, 255, 255, 0.05);
                box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
                border-radius: 18px;
                overflow: hidden;
                transition: all 0.3s;
            }
            .audiobook-card:hover {
                box-shadow: 0 15px 55px rgba(0, 0, 0, 0.3);
            }
            .audiobook-slide .audiobook-card {
                height: 100%;
                margin-bottom: 0;
            }
            .audiobook-cover-wrap img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
            .audiobook-info {
                padding: 22px 28px 18px 28px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .audiobook-info .ab-title {
                margin: 0 0 4px 0;
                font-family: "Poppins", sans-serif;
                font-size: 20px;
                font-weight: 700;
                color: #fff;
                line-height: 1.3;
            }
            .audiobook-info .ab-author {
                margin: 0 0 12px 0;
                font-family: "Poppins", sans-serif;
                font-size: 14px;
                color: #5ac24e;
                font-weight: 500;
            }
            .audiobook-info .ab-description {
                margin: 0;
                font-size: 14px;
                color: #a9a9a9;
                line-height: 1.7;
            }

            @keyframes eq-bounce {
                0%,
                100% {
                    transform: scaleY(0.3);
                }
                50% {
                    transform: scaleY(1);
                }
            }
            .eq-mini {
                display: none;
            }
            .album-tracklist li.is-active .track-number span.num {
                display: none;
            }
            .album-tracklist li.is-active .track-number .eq-mini {
                display: inline-flex;
                align-items: flex-end;
                height: 14px;
                gap: 2px;
            }
            .album-tracklist li.is-active .track-number .eq-mini i {
                display: block;
                width: 3px;
                background: #5ac24e;
                border-radius: 1px;
                animation: eq-bounce 1.2s ease-in-out infinite;
            }
            .album-tracklist
                li.is-active
                .track-number
                .eq-mini
                i:nth-child(1) {
                height: 55%;
                animation-delay: 0s;
            }
            .album-tracklist
                li.is-active
                .track-number
                .eq-mini
                i:nth-child(2) {
                height: 100%;
                animation-delay: 0.2s;
            }
            .album-tracklist
                li.is-active
                .track-number
                .eq-mini
                i:nth-child(3) {
                height: 40%;
                animation-delay: 0.4s;
            }
            .album-tracklist li.is-active.is-paused .track-number .eq-mini i {
                animation-play-state: paused;
            }

            .album-tracklist {
                margin: 0;
                padding: 0;
                list-style: none;
                border-top: 1px solid rgba(255, 255, 255, 0.06);
            }
            .album-tracklist li {
                display: flex;
                align-items: center;
                padding: 14px 28px;
                cursor: pointer;
                transition: background 0.2s;
                gap: 14px;
            }
            .album-tracklist li:hover {
                background: rgba(255, 255, 255, 0.04);
            }
            .album-tracklist li:nth-child(even) {
                background: rgba(255, 255, 255, 0.02);
            }
            .album-tracklist li:nth-child(even):hover {
                background: rgba(255, 255, 255, 0.05);
            }
            .album-tracklist li.is-active {
                background: rgba(90, 194, 78, 0.08);
            }
            .album-tracklist li.is-active .track-number,
            .album-tracklist li.is-active .track-name {
                color: #5ac24e;
            }
            .album-tracklist li .track-number {
                width: 28px;
                text-align: center;
                font-family: "Poppins";
                font-size: 13px;
                font-weight: 500;
                color: #777;
                flex-shrink: 0;
            }
            .album-tracklist li .track-name {
                flex: 1;
                font-family: "Poppins";
                font-size: 14px;
                font-weight: 500;
                color: #fff;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .album-tracklist li .track-duration {
                width: 50px;
                text-align: right;
                font-family: "Poppins";
                font-size: 13px;
                color: #777;
                flex-shrink: 0;
            }
            .inline-audiobook-player {
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                border-top: 1px solid transparent;
                background: rgba(255, 255, 255, 0.03);
                padding: 0 20px;
                transition:
                    max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    opacity 0.3s ease 0.05s,
                    padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    border-color 0.3s ease;
            }
            .inline-audiobook-player.is-active {
                max-height: 84px;
                opacity: 1;
                padding: 12px 20px;
                border-top-color: rgba(255, 255, 255, 0.06);
            }
            .iab-row {
                display: flex;
                align-items: center;
                gap: 12px;
            }
            .iab-art {
                width: 40px;
                height: 40px;
                border-radius: 6px;
                object-fit: cover;
                flex-shrink: 0;
                background: #2a2a2c;
            }
            .iab-info {
                flex: 0 1 auto;
                min-width: 0;
                max-width: 180px;
            }
            .iab-title {
                font-family: "Poppins";
                font-size: 12px;
                font-weight: 600;
                color: #fff;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                line-height: 1.3;
            }
            .iab-sub {
                font-family: "Poppins";
                font-size: 10px;
                color: #777;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .iab-play-btn,
            .iab-close-btn {
                border: none;
                border-radius: 50%;
                color: #fff;
                cursor: pointer;
                flex-shrink: 0;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.2s ease;
            }
            .iab-play-btn {
                width: 34px;
                height: 34px;
                background: #5ac24e;
                font-size: 15px;
            }
            .iab-play-btn:hover {
                background: #4db343;
                transform: scale(1.06);
            }
            .iab-play-btn .icon {
                margin-left: 2px;
            }
            .iab-play-btn.playing .icon {
                margin-left: 0;
            }
            .iab-progress-wrap {
                flex: 1;
                height: 5px;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 3px;
                cursor: pointer;
                position: relative;
                min-width: 40px;
            }
            .iab-progress-fill {
                height: 100%;
                background: #5ac24e;
                border-radius: 3px;
                width: 0%;
                transition: width 0.1s linear;
                pointer-events: none;
            }
            .iab-time {
                font-family: "Poppins";
                font-size: 10px;
                color: #777;
                flex-shrink: 0;
                min-width: 72px;
                text-align: right;
            }
            .iab-close-btn {
                width: 28px;
                height: 28px;
                background: rgba(255, 255, 255, 0.06);
                border: 1px solid rgba(255, 255, 255, 0.08);
                color: #888;
                font-size: 14px;
            }
            .iab-close-btn:hover {
                color: #fff;
                background: rgba(255, 255, 255, 0.12);
                border-color: rgba(255, 255, 255, 0.18);
            }
            @media (max-width: 560px) {
                .audiobook-carousel-btn.prev {
                    left: 8px;
                }
                .audiobook-carousel-btn.next {
                    right: 8px;
                }
                .iab-info {
                    max-width: 90px;
                }
                .iab-time {
                    display: none;
                }
            }
            .album-tracklist-scroll {
                height: 450px;
                overflow-y: scroll;
                padding-right: 6px;
                scrollbar-width: thin;
                scrollbar-color: #5ac24e #1a1b1e;
            }
            .album-tracklist-scroll::-webkit-scrollbar {
                width: 6px;
            }
            .album-tracklist-scroll::-webkit-scrollbar-track {
                background: #1a1b1e;
                border-radius: 3px;
            }
            .album-tracklist-scroll::-webkit-scrollbar-thumb {
                background: #5ac24e;
                border-radius: 3px;
            }
            .album-tracklist-scroll::-webkit-scrollbar-thumb:hover {
                background: #6fd462;
            }
            .album-card {
                margin: 0 0 40px 0;
                background: rgba(255, 255, 255, 0.05);
                box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
                border-radius: 18px;
                overflow: hidden;
                transition: all 0.3s;
            }
            .album-card:hover {
                box-shadow: 0 15px 55px rgba(0, 0, 0, 0.3);
            }
            .album-header {
                display: flex;
                align-items: flex-start;
                padding: 28px;
                gap: 24px;
            }
            .album-header .album-cover {
                width: 180px;
                height: 180px;
                border-radius: 14px;
                overflow: hidden;
                flex-shrink: 0;
                background: #262628;
                box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
                position: relative;
            }
            .album-header .album-cover img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
            .album-header .album-cover .album-play-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                background: rgba(0, 0, 0, 0.3);
                opacity: 0;
                transition: opacity 0.3s;
                cursor: pointer;
            }
            .album-header .album-cover:hover .album-play-overlay {
                opacity: 1;
            }
            .album-play-overlay .play-all-btn {
                width: 56px;
                height: 56px;
                border-radius: 50%;
                background: rgba(90, 194, 78, 0.9);
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 24px rgba(90, 194, 78, 0.35);
                transition: transform 0.3s;
            }
            .album-play-overlay .play-all-btn:hover {
                transform: scale(1.1);
            }
            .album-play-overlay .play-all-btn .icon {
                font-size: 22px;
                color: #fff;
                margin-left: 3px;
            }
            .album-header .album-info {
                flex: 1;
                padding-top: 6px;
            }
            .album-info .album-title {
                margin: 0 0 4px 0;
                font-family: "Poppins";
                font-size: 22px;
                font-weight: 700;
                color: #fff;
                line-height: 30px;
            }
            .album-info .album-artist {
                margin: 0 0 6px 0;
                font-family: "Poppins";
                font-size: 15px;
                color: #5ac24e;
                font-weight: 500;
            }
            .album-info .album-description {
                margin: 0;
                font-size: 14px;
                color: #a9a9a9;
                line-height: 1.7;
            }
            .album-info .play-all-text-btn {
                display: inline-block;
                margin-top: 14px;
                padding: 8px 20px;
                font-family: "Poppins";
                font-size: 13px;
                font-weight: 600;
                color: #fff;
                background: rgba(90, 194, 78, 0.2);
                border: 1px solid rgba(90, 194, 78, 0.35);
                border-radius: 24px;
                cursor: pointer;
                transition: all 0.3s;
                text-decoration: none;
            }
            .album-info .play-all-text-btn:hover {
                background: rgba(90, 194, 78, 0.35);
                border-color: rgba(90, 194, 78, 0.6);
                color: #fff;
            }
            .album-info .play-all-text-btn .icon {
                margin-right: 6px;
                font-size: 14px;
                position: relative;
                top: 1px;
            }
            @media (max-width: 560px) {
                .album-header {
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                    padding: 24px 20px;
                }
                .album-header .album-cover {
                    width: 200px;
                    height: 200px;
                }
            }

            .player-bar {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                height: 80px;
                background: linear-gradient(135deg, #1a1b1e, #2a2c30);
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                display: flex;
                align-items: center;
                padding: 0 24px;
                z-index: 200;
                gap: 16px;
                transform: translateY(100%);
                transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            }
            .player-bar.visible {
                transform: translateY(0);
            }
            .player-bar .player-close-btn {
                position: absolute;
                top: -14px;
                right: 20px;
                width: 28px;
                height: 28px;
                background: #2a2c30;
                border: 1px solid rgba(255, 255, 255, 0.12);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                color: #a9a9a9;
                font-size: 13px;
                transition:
                    color 0.2s,
                    background 0.2s;
                z-index: 201;
            }
            .player-bar .player-close-btn:hover {
                color: #fff;
                background: #3a3c40;
            }
            .player-bar .player-now-info {
                display: flex;
                align-items: center;
                gap: 12px;
                min-width: 200px;
                max-width: 280px;
                flex-shrink: 0;
            }
            .player-bar .player-cover {
                width: 48px;
                height: 48px;
                border-radius: 8px;
                overflow: hidden;
                background: #262628;
                flex-shrink: 0;
            }
            .player-bar .player-cover img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
            .player-bar .player-track-details {
                overflow: hidden;
            }
            .player-bar .player-track-name {
                font-family: "Poppins";
                font-size: 13px;
                font-weight: 600;
                color: #fff;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                line-height: 20px;
            }
            .player-bar .player-track-artist {
                font-family: "Poppins";
                font-size: 12px;
                color: #777;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                line-height: 18px;
            }
            .player-bar .player-controls {
                display: flex;
                align-items: center;
                gap: 6px;
                flex-shrink: 0;
            }
            .player-bar .player-controls .ctrl-btn {
                width: 36px;
                height: 36px;
                border: none;
                border-radius: 50%;
                background: transparent;
                color: #a9a9a9;
                font-size: 18px;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.2s;
                padding: 0;
            }
            .player-bar .player-controls .ctrl-btn:hover {
                color: #fff;
            }
            .player-bar .player-controls .ctrl-btn.play-pause {
                width: 42px;
                height: 42px;
                background: #5ac24e;
                color: #fff;
                font-size: 20px;
            }
            .player-bar .player-controls .ctrl-btn.play-pause:hover {
                background: #4db343;
                transform: scale(1.05);
            }
            .player-bar .player-controls .ctrl-btn.play-pause .icon {
                margin-left: 2px;
            }
            .player-bar .player-controls .ctrl-btn.play-pause.is-playing .icon {
                margin-left: 0;
            }
            .player-bar .player-progress {
                flex: 1;
                display: flex;
                align-items: center;
                gap: 10px;
                min-width: 0;
            }
            .player-bar .player-progress .time-label {
                font-family: "Poppins";
                font-size: 11px;
                color: #777;
                width: 42px;
                text-align: center;
                flex-shrink: 0;
            }
            .player-bar .player-progress .progress-bar-wrap {
                flex: 1;
                height: 6px;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 3px;
                cursor: pointer;
                position: relative;
                min-width: 80px;
            }
            .player-bar .player-progress .progress-bar-wrap .progress-bar-fill {
                height: 100%;
                background: #5ac24e;
                border-radius: 3px;
                width: 0%;
                position: relative;
                transition: width 0.1s linear;
            }
            .player-bar
                .player-progress
                .progress-bar-wrap
                .progress-bar-fill::after {
                content: "";
                position: absolute;
                right: -5px;
                top: -4px;
                width: 14px;
                height: 14px;
                background: #fff;
                border-radius: 50%;
                box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
                opacity: 0;
                transition: opacity 0.2s;
            }
            .player-bar
                .player-progress
                .progress-bar-wrap:hover
                .progress-bar-fill::after {
                opacity: 1;
            }
            .player-bar .player-volume {
                display: flex;
                align-items: center;
                gap: 8px;
                flex-shrink: 0;
                width: 120px;
            }
            .player-bar .player-volume .vol-icon {
                color: #a9a9a9;
                font-size: 18px;
                cursor: pointer;
                transition: color 0.2s;
                flex-shrink: 0;
            }
            .player-bar .player-volume .vol-icon:hover {
                color: #fff;
            }
            .player-bar .player-volume .vol-bar-wrap {
                flex: 1;
                height: 4px;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 2px;
                cursor: pointer;
                position: relative;
            }
            .player-bar .player-volume .vol-bar-fill {
                height: 100%;
                background: #5ac24e;
                border-radius: 2px;
                width: 80%;
            }
            @media (max-width: 1023px) {
                .player-bar {
                    left: 0;
                    padding: 0 16px;
                }
                .player-bar .player-volume {
                    display: none;
                }
                .player-bar .player-now-info {
                    min-width: 140px;
                    max-width: 180px;
                }
            }


/* Extracted from inline style attributes */
.td-f-writing-frame-style-001 { margin-top: 12px; }
