
:root {
    --deep-purple: #521262;
    --purple: #6639a6;
    --blue: #3490de;
    --cyan: #6fe7dd;
    --dark-bg: #1a0a24;
    --card-bg: #1e1030;
    --sidebar-bg: #1a0d2b;
    --text-primary: #e8e0f0;
    --text-secondary: #b8a8cc;
    --text-muted: #8a7a9e;
    --border-color: #2a1540;
    --hover-bg: #2a1840;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --transition: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
    background-color: #12061a;
    background-image:
        radial-gradient(ellipse at 20% 15%, rgba(102, 57, 166, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 30%, rgba(52, 144, 222, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 70%, rgba(111, 231, 221, 0.06) 0%, transparent 50%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.top-nav {
    width: 100%;
    background: linear-gradient(135deg, #3c0d4a 0%, #521262 40%, #3c1058 100%);
    border-bottom: 2px solid rgba(111, 231, 221, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(82, 18, 98, 0.5);
    backdrop-filter: blur(10px);
}
.top-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 64px;
    gap: 20px;
}
.nav-brand h1 {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    background: linear-gradient(135deg, #ffffff 30%, #6fe7dd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: var(--transition);
}
.nav-brand h1:hover {
    filter: brightness(1.2);
    transform: scale(1.03);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
}
.nav-links a {
    color: #d8c8f0;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.5px;
}
.nav-links a:hover {
    background: rgba(111, 231, 221, 0.15);
    color: #6fe7dd;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.btn-watch-now {
    padding: 9px 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, #3490de, #6fe7dd);
    border: none;
    color: #0a0414;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(52, 144, 222, 0.35);
}
.btn-watch-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(52, 144, 222, 0.5);
    filter: brightness(1.08);
}

.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: 26px;
    height: 3px;
    background: #e8d8f8;
    border-radius: 3px;
    transition: var(--transition);
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    padding: 24px 20px;
}
.content-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.sidebar-right {
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 88px;
    align-self: flex-start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #6639a6 transparent;
}
.sidebar-right::-webkit-scrollbar {
    width: 5px;
}
.sidebar-right::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar-right::-webkit-scrollbar-thumb {
    background: #6639a6;
    border-radius: 10px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    padding-left: 16px;
    border-left: 4px solid #6fe7dd;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title .icon-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6fe7dd;
    box-shadow: 0 0 12px rgba(111, 231, 221, 0.6);
    flex-shrink: 0;
}

.hot-comics-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.comic-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}
.comic-card:hover {
    transform: translateY(-6px);
    border-color: #6fe7dd;
    box-shadow: 0 12px 36px rgba(111, 231, 221, 0.2);
    background: var(--hover-bg);
}
.comic-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #1a0a28;
}
.comic-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.comic-card:hover .comic-card-img-wrap img {
    transform: scale(1.08);
}
.comic-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #3490de, #6fe7dd);
    color: #0a0414;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    z-index: 2;
}
.comic-card-info {
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}
.comic-card-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.5px;
}
.comic-card-info .meta-row {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    line-height: 1.4;
}
.comic-card-info .meta-row span {
    background: rgba(102, 57, 166, 0.3);
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 0.68rem;
    white-space: nowrap;
}
.comic-type-tag {
    display: inline-block;
    background: rgba(52, 144, 222, 0.25) !important;
    color: #6fe7dd !important;
    font-weight: 600;
    font-size: 0.66rem !important;
}
.comic-site-tag {
    display: inline-block;
    background: rgba(111, 231, 221, 0.2) !important;
    color: #6fe7dd !important;
    font-weight: 700;
    font-size: 0.66rem !important;
    letter-spacing: 0.5px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.featured-card {
    background: linear-gradient(160deg, #1e1030 0%, #1a0d28 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid rgba(102, 57, 166, 0.5);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.featured-card:hover {
    border-color: #6fe7dd;
    box-shadow: 0 16px 44px rgba(111, 231, 221, 0.25);
    transform: translateY(-4px);
}
.featured-card-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #1a0a28;
}
.featured-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.featured-card:hover .featured-card-img-wrap img {
    transform: scale(1.06);
}
.featured-card-info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.featured-card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.featured-card-info .meta-row {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
}
.featured-card-info .meta-row span {
    background: rgba(102, 57, 166, 0.3);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
}
.featured-ribbon {
    position: absolute;
    top: 12px;
    right: -28px;
    background: linear-gradient(135deg, #3490de, #6fe7dd);
    color: #0a0414;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 32px;
    transform: rotate(40deg);
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.comic-detail-block {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.comic-detail-cover {
    width: 200px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #1a0a28;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}
.comic-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.comic-detail-text {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.comic-detail-text h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}
.comic-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.comic-detail-meta strong {
    color: #6fe7dd;
    margin-right: 4px;
}
.comic-detail-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag-item {
    background: rgba(102, 57, 166, 0.4);
    color: #d8c8f0;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(111, 231, 221, 0.2);
}
.tag-site {
    background: rgba(111, 231, 221, 0.18);
    color: #6fe7dd;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(111, 231, 221, 0.4);
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.character-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    box-shadow: var(--shadow);
}
.character-card:hover {
    transform: translateY(-4px);
    border-color: #6fe7dd;
    box-shadow: 0 10px 30px rgba(111, 231, 221, 0.2);
}
.character-card-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #1a0a28;
}
.character-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.character-card:hover .character-card-img-wrap img {
    transform: scale(1.1);
}
.character-card-info {
    padding: 10px 8px;
}
.character-card-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}
.character-card-info .role-tag {
    font-size: 0.7rem;
    color: #6fe7dd;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.character-card-info .role-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.4;
}

.sidebar-card {
    background: var(--sidebar-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    padding: 18px;
    box-shadow: var(--shadow);
}
.sidebar-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(102, 57, 166, 0.5);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-card h3 .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6fe7dd;
    box-shadow: 0 0 8px rgba(111, 231, 221, 0.5);
}
.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;
    background: rgba(30, 16, 48, 0.5);
}
.rank-list li:hover {
    background: rgba(102, 57, 166, 0.3);
}
.rank-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
    color: #fff;
}
.rank-num.top1 {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1a0a24;
    font-size: 0.8rem;
    box-shadow: 0 0 14px rgba(245, 158, 11, 0.5);
}
.rank-num.top2 {
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
    color: #1a0a24;
    box-shadow: 0 0 10px rgba(148, 163, 184, 0.4);
}
.rank-num.top3 {
    background: linear-gradient(135deg, #cd7836, #e8a87c);
    color: #1a0a24;
    box-shadow: 0 0 10px rgba(205, 120, 54, 0.4);
}
.rank-num.normal {
    background: rgba(102, 57, 166, 0.5);
}
.rank-info {
    flex: 1;
    min-width: 0;
}
.rank-info .rank-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #e0d8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rank-info .rank-sub {
    font-size: 0.68rem;
    color: var(--text-muted);
}
.rank-change {
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}
.rank-change.up {
    color: #4ade80;
}
.rank-change.down {
    color: #f87171;
}

.total-reads-display {
    text-align: center;
    padding: 10px 0;
}
.total-reads-number {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #6fe7dd, #3490de);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.total-reads-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.update-time {
    font-size: 0.7rem;
    color: #6fe7dd;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.stats-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.stat-item {
    flex: 1;
    min-width: 70px;
    text-align: center;
    background: rgba(30, 16, 48, 0.6);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    border: 1px solid rgba(102, 57, 166, 0.3);
}
.stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #6fe7dd;
}
.stat-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.comment-item {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 16px 18px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.comment-item:hover {
    border-color: rgba(111, 231, 221, 0.3);
    background: var(--hover-bg);
}
.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.comment-user {
    font-weight: 700;
    font-size: 0.85rem;
    color: #e0d8f0;
}
.comment-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: auto;
}
.comment-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.platform-intro {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    line-height: 1.8;
}
.platform-intro h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 1px;
}
.platform-intro p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.platform-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}
.highlight-item {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 16px;
    background: rgba(102, 57, 166, 0.2);
    border-radius: var(--radius);
    border: 1px solid rgba(111, 231, 221, 0.15);
}
.highlight-item .hl-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #6fe7dd;
}
.highlight-item .hl-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.app-download-section {
    background: linear-gradient(160deg, #1a0d2b 0%, #1e1030 60%, #1a0a28 100%);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1.5px solid rgba(102, 57, 166, 0.5);
    box-shadow: var(--shadow-lg);
}
.app-download-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-align: center;
}
.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.download-card {
    text-align: center;
    padding: 20px 14px;
    border-radius: var(--radius);
    background: rgba(30, 16, 48, 0.6);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.download-card:hover {
    border-color: #6fe7dd;
    background: rgba(102, 57, 166, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(111, 231, 221, 0.2);
}
.download-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}
.download-icon.android {
    background: linear-gradient(135deg, #3ddc84, #00c853);
}
.download-icon.ios {
    background: linear-gradient(135deg, #8e8e93, #636366);
}
.download-icon.pc {
    background: linear-gradient(135deg, #3490de, #1e6fbf);
}
.download-icon.mac {
    background: linear-gradient(135deg, #a284e0, #7c5cbf);
}
.download-card .dl-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}
.download-card .dl-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.bottom-nav {
    width: 100%;
    background: linear-gradient(135deg, #2a0d36 0%, #521262 50%, #2a0d36 100%);
    border-top: 2px solid rgba(111, 231, 221, 0.2);
    padding: 24px 20px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(82, 18, 98, 0.4);
}
.bottom-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 28px;
}
.bottom-nav a {
    color: #c8b8e0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 14px;
}
.bottom-nav a:hover {
    color: #6fe7dd;
    background: rgba(111, 231, 221, 0.1);
}
.bottom-nav .mobile-link {
    background: rgba(52, 144, 222, 0.25);
    color: #6fe7dd;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(111, 231, 221, 0.4);
}
.bottom-nav .mobile-link:hover {
    background: rgba(52, 144, 222, 0.4);
    box-shadow: 0 0 18px rgba(111, 231, 221, 0.3);
}
.copyright {
    color: var(--text-muted);
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
    .hot-comics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .characters-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .download-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .sidebar-right {
        width: 280px;
    }
}
@media (max-width: 992px) {
    .main-container {
        flex-direction: column;
        padding: 16px 12px;
    }
    .sidebar-right {
        width: 100%;
        position: static;
        max-height: none;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
    .sidebar-card {
        flex: 1 1 200px;
        min-width: 180px;
    }
    .hot-comics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .characters-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .download-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .comic-detail-block {
        flex-direction: column;
        align-items: center;
    }
    .comic-detail-cover {
        width: 160px;
    }
}
@media (max-width: 640px) {
    .hot-comics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .characters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .top-nav-inner {
        padding: 0 12px;
        height: 56px;
    }
    .nav-brand h1 {
        font-size: 1.3rem;
    }
    .btn-watch-now {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    .section-title {
        font-size: 1.2rem;
    }
    .comic-detail-cover {
        width: 130px;
    }
    .sidebar-right {
        flex-direction: column;
    }
    .sidebar-card {
        flex: 1 1 auto;
        min-width: auto;
    }
    .bottom-nav-inner {
        gap: 10px 14px;
    }
}
