:root {
            --bg-light: #f5f5f5;
            --border-gray: #d3d4d8;
            --accent-teal: #3fbac2;
            --text-dark: #4d606e;
            --white: #ffffff;
            --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 6px 24px rgba(0, 0, 0, 0.14);
            --radius: 10px;
            --radius-sm: 6px;
            --transition: 0.28s ease;
            --max-width: 1320px;
            --header-height: 62px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 78px;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
            background-color: #f0f2f5;
            color: #2c3e50;
            line-height: 1.7;
            min-width: 320px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .site-header {
            width: 100%;
            background: #ffffff;
            border-bottom: 1px solid #e8eaed;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
            height: var(--header-height);
        }
        .header-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            padding: 0 20px;
            gap: 18px;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }
        .header-left .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: var(--accent-teal);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 18px;
            letter-spacing: 1px;
        }
        .header-left h1 {
            font-size: 1.35rem;
            font-weight: 700;
            color: #1a1a2e;
            margin: 0;
            white-space: nowrap;
            letter-spacing: 0.5px;
        }
        .header-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
            list-style: none;
        }
        .header-nav a {
            display: inline-block;
            padding: 7px 14px;
            text-decoration: none;
            color: #4a5568;
            font-size: 0.92rem;
            font-weight: 500;
            border-radius: 20px;
            transition: var(--transition);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .header-nav a:hover,
        .header-nav a:focus {
            background: #e8f7f8;
            color: var(--accent-teal);
            outline: none;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .user-login-status {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 7px 15px;
            border-radius: 22px;
            background: #f7f8fa;
            border: 1px solid #e2e5ea;
            transition: var(--transition);
            font-size: 0.9rem;
            font-weight: 500;
            color: #4a5568;
            white-space: nowrap;
        }
        .user-login-status:hover {
            background: #e8f7f8;
            border-color: var(--accent-teal);
            color: var(--accent-teal);
        }
        .user-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #d3d4d8;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 13px;
            color: #4d606e;
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            flex-direction: column;
            gap: 5px;
            z-index: 1001;
        }
        .mobile-menu-toggle span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: #4d606e;
            border-radius: 2px;
            transition: var(--transition);
        }
        .banner-section {
            width: 100%;
            max-width: var(--max-width);
            margin: 20px auto 0;
            padding: 0 20px;
            position: relative;
        }
        .banner-carousel {
            position: relative;
            width: 100%;
            height: 420px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #d3d4d8;
        }
        .banner-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.7s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .banner-slide.active {
            opacity: 1;
            z-index: 1;
        }
        .banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .banner-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
            padding: 40px 32px 28px;
            z-index: 2;
            pointer-events: none;
        }
        .banner-overlay h2 {
            color: #fff;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 0 6px;
            letter-spacing: 1px;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
        }
        .banner-overlay p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            margin: 0;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }
        .banner-dots {
            position: absolute;
            bottom: 16px;
            right: 28px;
            display: flex;
            gap: 8px;
            z-index: 3;
        }
        .banner-dots button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 2px solid #fff;
            background: transparent;
            cursor: pointer;
            padding: 0;
            transition: var(--transition);
        }
        .banner-dots button.active {
            background: #fff;
            transform: scale(1.25);
        }
        .banner-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            background: rgba(255, 255, 255, 0.85);
            border: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 18px;
            color: #4d606e;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        }
        .banner-arrow:hover {
            background: #fff;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }
        .banner-arrow.prev {
            left: 16px;
        }
        .banner-arrow.next {
            right: 16px;
        }
        .main-wrapper {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 24px 20px 10px;
            display: flex;
            gap: 24px;
        }
        .content-primary {
            flex: 1;
            min-width: 0;
        }
        .sidebar {
            width: 320px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 22px;
        }
        .section-block {
            background: #fff;
            border-radius: var(--radius);
            padding: 26px 24px;
            margin-bottom: 22px;
            box-shadow: var(--shadow);
        }
        .section-block h2 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent-teal);
            display: inline-block;
            letter-spacing: 0.5px;
        }
        .section-block h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .section-title-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .section-title-row h2 {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
            position: relative;
            padding-left: 16px;
        }
        .section-title-row h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 4px;
            background: var(--accent-teal);
            border-radius: 2px;
        }
        .more-link {
            color: var(--accent-teal);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            transition: var(--transition);
            white-space: nowrap;
        }
        .more-link:hover {
            color: #2a9da6;
            text-decoration: underline;
        }
        .platform-intro {
            text-align: center;
            padding: 20px 24px;
        }
        .platform-intro p {
            color: #5a6c7d;
            font-size: 0.95rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
        .platform-intro .highlight {
            color: var(--accent-teal);
            font-weight: 600;
        }
        .movie-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .movie-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            border: 1px solid #f0f0f0;
        }
        .movie-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: #e0e0e0;
        }
        .movie-card .poster-wrap {
            width: 100%;
            aspect-ratio: 2/3;
            overflow: hidden;
            background: #e8eaed;
            position: relative;
        }
        .movie-card .poster-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        .movie-card:hover .poster-wrap img {
            transform: scale(1.06);
        }
        .movie-card .movie-info {
            padding: 14px 15px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .movie-card .movie-title {
            font-weight: 700;
            font-size: 1.02rem;
            color: #1a1a2e;
            letter-spacing: 0.3px;
            line-height: 1.3;
        }
        .movie-card .movie-meta {
            font-size: 0.8rem;
            color: #7a8a9a;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            line-height: 1.5;
        }
        .movie-card .movie-meta span {
            background: #f5f5f5;
            padding: 3px 9px;
            border-radius: 4px;
            font-size: 0.76rem;
            white-space: nowrap;
            color: #4d606e;
        }
        .movie-card .movie-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 2px;
        }
        .movie-card .tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 14px;
            font-size: 0.73rem;
            font-weight: 500;
            background: #e8f7f8;
            color: #2a9da6;
            white-space: nowrap;
        }
        .star-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .star-card {
            text-align: center;
            background: #fff;
            border-radius: var(--radius);
            padding: 18px 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #f0f0f0;
        }
        .star-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .star-card img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            display: block;
            margin: 0 auto 10px;
            border: 3px solid #e8f7f8;
        }
        .star-card .star-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: #1a1a2e;
        }
        .star-card .star-works {
            font-size: 0.78rem;
            color: #7a8a9a;
            margin-top: 3px;
        }
        .plot-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .plot-item {
            display: flex;
            gap: 16px;
            background: #fafbfc;
            border-radius: var(--radius);
            padding: 16px;
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        .plot-item:hover {
            border-left-color: var(--accent-teal);
            background: #f7fafa;
        }
        .plot-item img {
            width: 140px;
            height: 95px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            flex-shrink: 0;
        }
        .plot-item .plot-content h4 {
            font-weight: 600;
            font-size: 0.95rem;
            color: #1a1a2e;
            margin-bottom: 4px;
        }
        .plot-item .plot-content p {
            font-size: 0.84rem;
            color: #5a6c7d;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .detail-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .detail-card {
            background: #fafbfc;
            border-radius: var(--radius);
            padding: 18px 20px;
            transition: var(--transition);
            border: 1px solid #eef1f4;
        }
        .detail-card:hover {
            box-shadow: var(--shadow);
            border-color: #dde2e8;
        }
        .detail-card h4 {
            font-weight: 700;
            font-size: 1rem;
            color: #1a1a2e;
            margin-bottom: 6px;
        }
        .detail-card .detail-meta {
            font-size: 0.8rem;
            color: #7a8a9a;
            margin-bottom: 8px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
        }
        .detail-card .detail-desc {
            font-size: 0.86rem;
            color: #4d606e;
            line-height: 1.7;
        }
        .sidebar-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 20px 18px;
            box-shadow: var(--shadow);
        }
        .sidebar-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 14px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f2f5;
            letter-spacing: 0.4px;
        }
        .total-reads-box {
            text-align: center;
            padding: 10px 0;
        }
        .total-reads-num {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--accent-teal);
            letter-spacing: 1px;
            line-height: 1;
        }
        .total-reads-label {
            font-size: 0.85rem;
            color: #7a8a9a;
            margin-top: 4px;
        }
        .update-time {
            font-size: 0.76rem;
            color: #a0b0c0;
            margin-top: 6px;
        }
        .rank-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .rank-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            cursor: pointer;
            font-size: 0.88rem;
            color: #4a5568;
        }
        .rank-list li:hover {
            background: #f7fafa;
        }
        .rank-num {
            width: 26px;
            height: 26px;
            border-radius: 6px;
            background: #e8eaed;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.82rem;
            flex-shrink: 0;
            color: #4d606e;
        }
        .rank-list li:nth-child(1) .rank-num {
            background: #ff6b6b;
            color: #fff;
        }
        .rank-list li:nth-child(2) .rank-num {
            background: #ffa94d;
            color: #fff;
        }
        .rank-list li:nth-child(3) .rank-num {
            background: #ffd43b;
            color: #333;
        }
        .hot-star-mini {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .hot-star-mini .mini-star {
            display: flex;
            align-items: center;
            gap: 7px;
            background: #f7f8fa;
            border-radius: 20px;
            padding: 6px 12px 6px 6px;
            font-size: 0.82rem;
            font-weight: 500;
            color: #4a5568;
            transition: var(--transition);
            cursor: pointer;
        }
        .hot-star-mini .mini-star:hover {
            background: #e8f7f8;
            color: var(--accent-teal);
        }
        .hot-star-mini .mini-star img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }
        .stats-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .stat-box {
            flex: 1;
            min-width: 120px;
            text-align: center;
            background: #f7fafa;
            border-radius: var(--radius);
            padding: 18px 14px;
            border: 1px solid #e8f0f2;
        }
        .stat-box .stat-num {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-teal);
            line-height: 1;
        }
        .stat-box .stat-label {
            font-size: 0.82rem;
            color: #7a8a9a;
            margin-top: 4px;
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-item {
            background: #fafbfc;
            border-radius: var(--radius-sm);
            padding: 15px 17px;
            border: 1px solid #eef1f4;
            transition: var(--transition);
        }
        .comment-item:hover {
            border-color: #dde2e8;
            background: #f7fafa;
        }
        .comment-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }
        .comment-user {
            font-weight: 600;
            font-size: 0.88rem;
            color: #2c3e50;
        }
        .comment-time {
            font-size: 0.75rem;
            color: #a0b0c0;
            margin-left: auto;
            white-space: nowrap;
        }
        .comment-text {
            font-size: 0.84rem;
            color: #4d606e;
            line-height: 1.7;
        }
        .app-download-section {
            background: #fff;
            border-radius: var(--radius);
            padding: 28px 24px;
            box-shadow: var(--shadow);
            text-align: center;
            margin-bottom: 22px;
        }
        .app-download-section h2 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .app-download-section .download-subtitle {
            font-size: 0.9rem;
            color: #7a8a9a;
            margin-bottom: 20px;
        }
        .download-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }
        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 13px 22px;
            border-radius: 28px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.92rem;
            transition: var(--transition);
            border: 2px solid #e2e5ea;
            background: #fff;
            color: #4d606e;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .download-btn:hover {
            background: #f7fafa;
            border-color: var(--accent-teal);
            color: var(--accent-teal);
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(63, 186, 194, 0.2);
        }
        .download-btn .app-icon {
            flex-shrink: 0;
        }
        .site-footer {
            width: 100%;
            background: #ffffff;
            border-top: 1px solid #e8eaed;
            padding: 28px 20px 20px;
            margin-top: 10px;
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            align-items: center;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 22px;
            align-items: center;
        }
        .footer-links a {
            color: #4d606e;
            text-decoration: none;
            font-size: 0.86rem;
            transition: var(--transition);
            white-space: nowrap;
        }
        .footer-links a:hover {
            color: var(--accent-teal);
            text-decoration: underline;
        }
        .footer-copy {
            font-size: 0.82rem;
            color: #a0b0c0;
            white-space: nowrap;
        }
        .footer-brand-mobile {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #f7f8fa;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 500;
            font-size: 0.85rem;
            color: #4d606e;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid #e2e5ea;
        }
        .footer-brand-mobile:hover {
            background: #e8f7f8;
            border-color: var(--accent-teal);
            color: var(--accent-teal);
        }
        @media (max-width: 1100px) {
            .main-wrapper {
                flex-direction: column;
            }
            .sidebar {
                width: 100%;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 16px;
            }
            .sidebar-card {
                flex: 1;
                min-width: 260px;
            }
            .movie-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 14px;
            }
            .star-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 10px;
            }
            .banner-carousel {
                height: 320px;
            }
            .banner-overlay h2 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 768px) {
            .header-nav {
                display: none;
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 12px 20px;
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
                gap: 2px;
                border-top: 1px solid #e8eaed;
            }
            .header-nav.mobile-open {
                display: flex;
            }
            .header-nav a {
                padding: 10px 14px;
                border-radius: 8px;
                width: 100%;
                text-align: center;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .header-right .user-login-status span:last-child {
                display: none;
            }
            .user-login-status {
                padding: 7px 10px;
                gap: 4px;
            }
            .movie-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .star-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .banner-carousel {
                height: 240px;
            }
            .banner-overlay {
                padding: 20px 16px 18px;
            }
            .banner-overlay h2 {
                font-size: 1.15rem;
            }
            .banner-overlay p {
                font-size: 0.8rem;
            }
            .banner-arrow {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
            .banner-arrow.prev {
                left: 8px;
            }
            .banner-arrow.next {
                right: 8px;
            }
            .sidebar {
                flex-direction: column;
            }
            .sidebar-card {
                min-width: auto;
            }
            .plot-item {
                flex-direction: column;
            }
            .plot-item img {
                width: 100%;
                height: 160px;
            }
            .stats-row {
                gap: 10px;
            }
            .stat-box {
                min-width: 90px;
                padding: 12px 8px;
            }
            .stat-box .stat-num {
                font-size: 1.3rem;
            }
            .download-buttons {
                gap: 8px;
            }
            .download-btn {
                padding: 10px 15px;
                font-size: 0.8rem;
                gap: 5px;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
                gap: 14px;
            }
            .footer-links {
                justify-content: center;
            }
            .section-block {
                padding: 18px 14px;
            }
            .section-block h2 {
                font-size: 1.1rem;
            }
            .movie-card .movie-info {
                padding: 10px 10px 12px;
            }
            .movie-card .movie-title {
                font-size: 0.9rem;
            }
            .movie-card .movie-meta {
                font-size: 0.72rem;
                gap: 3px 6px;
            }
            .movie-card .movie-meta span {
                font-size: 0.7rem;
                padding: 2px 6px;
            }
        }
        @media (max-width: 480px) {
            .movie-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .star-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }
            .banner-carousel {
                height: 190px;
            }
            .banner-overlay h2 {
                font-size: 1rem;
            }
            .banner-section {
                padding: 0 10px;
                margin-top: 12px;
            }
            .main-wrapper {
                padding: 14px 10px 6px;
                gap: 14px;
            }
            .section-block {
                padding: 14px 10px;
                margin-bottom: 14px;
            }
            .header-inner {
                padding: 0 10px;
                gap: 8px;
            }
            .header-left h1 {
                font-size: 1.1rem;
            }
            .header-left .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }
            .star-card img {
                width: 64px;
                height: 64px;
            }
            .star-card .star-name {
                font-size: 0.82rem;
            }
            .comment-text {
                font-size: 0.78rem;
            }
            .detail-card {
                padding: 12px 14px;
            }
            .plot-item {
                padding: 10px;
            }
            .download-btn {
                padding: 10px 14px;
                font-size: 0.78rem;
            }
        }