
:root {
    --bg-dark: #311d3f;
    --bg-mid: #522546;
    --accent-mid: #88304e;
    --accent-bright: #e23e57;
    --text-light: #f0e6f0;
    --text-muted: #c4b0c8;
    --white: #ffffff;
    --bg-card: #fff;
    --bg-page: #f9f5f9;
    --shadow-sm: 0 2px 8px rgba(49, 29, 63, 0.08);
    --shadow-md: 0 4px 16px rgba(49, 29, 63, 0.12);
    --shadow-lg: 0 8px 32px rgba(49, 29, 63, 0.18);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-page);
    color: #2c1a30;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.top-nav {
    width: 100%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #3d1f4a 50%, var(--bg-dark) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(31, 14, 35, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.top-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 64px;
    gap: 16px;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}
.nav-left h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.nav-left h1::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-bright);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.nav-left h1:hover::after {
    width: 100%;
}
.nav-links {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 20px;
    transition: var(--transition);
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.btn-login {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 22px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.5px;
}
.btn-login:hover {
    border-color: var(--accent-bright);
    color: #fff;
    background: rgba(226, 62, 87, 0.15);
}
.btn-read-now {
    background: var(--accent-bright);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 22px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(226, 62, 87, 0.4);
}
.btn-read-now:hover {
    background: #f04a62;
    box-shadow: 0 6px 22px rgba(226, 62, 87, 0.55);
    transform: translateY(-1px);
}
.btn-read-now:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(226, 62, 87, 0.35);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}
.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 28px;
    padding: 28px 24px;
    min-height: 60vh;
}
.content-area {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.sidebar {
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 92px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c4b0c8 transparent;
}
.sidebar::-webkit-scrollbar {
    width: 4px;
}
.sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
    background: #c4b0c8;
    border-radius: 4px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--bg-dark);
    position: relative;
    padding-left: 16px;
    letter-spacing: 1px;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 24px;
    background: var(--accent-bright);
    border-radius: 3px;
}
.section-more {
    color: var(--accent-mid);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 6px 14px;
    border-radius: 16px;
    border: 1px solid transparent;
}
.section-more:hover {
    color: var(--accent-bright);
    border-color: var(--accent-bright);
    background: rgba(226, 62, 87, 0.04);
}

.comic-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.comic-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    position: relative;
}
.comic-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(226, 62, 87, 0.25);
}
.comic-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f0e6f0;
}
.comic-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    loading: lazy;
}
.comic-card:hover .comic-card-img-wrap img {
    transform: scale(1.08);
}
.comic-card-type-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-bright);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(226, 62, 87, 0.4);
}
.comic-card-info {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.comic-card-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.5px;
}
.comic-card-info .meta-row {
    font-size: 0.72rem;
    color: #7a6b80;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.comic-card-info .meta-row span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.comic-card-info .meta-divider {
    width: 3px;
    height: 3px;
    background: #c4b0c8;
    border-radius: 50%;
    flex-shrink: 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.featured-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}
.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(136, 48, 78, 0.3);
}
.featured-card-img-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f0e6f0;
}
.featured-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    loading: lazy;
}
.featured-card:hover .featured-card-img-wrap img {
    transform: scale(1.06);
}
.featured-card-info {
    padding: 14px 16px;
}
.featured-card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.featured-card-info .feat-meta {
    font-size: 0.78rem;
    color: #7a6b80;
}

.comic-detail-block {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.comic-detail-cover {
    flex-shrink: 0;
    width: 200px;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #f0e6f0;
}
.comic-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    loading: lazy;
}
.comic-detail-text {
    flex: 1;
    min-width: 260px;
}
.comic-detail-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.comic-detail-text .detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #5a4a60;
}
.comic-detail-text .detail-meta strong {
    color: var(--accent-mid);
}
.comic-detail-text .detail-desc {
    font-size: 0.9rem;
    color: #4a3a50;
    line-height: 1.7;
}
.comic-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.comic-detail-tags .tag {
    background: linear-gradient(135deg, #fdf2f4, #fce8ec);
    color: var(--accent-mid);
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid rgba(226, 62, 87, 0.2);
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.character-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}
.character-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(136, 48, 78, 0.2);
}
.character-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    background: #f0e6f0;
    box-shadow: 0 4px 14px rgba(49, 29, 63, 0.15);
}
.character-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    loading: lazy;
}
.character-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 4px;
}
.character-card .char-role {
    font-size: 0.75rem;
    color: var(--accent-mid);
    font-weight: 500;
    margin-bottom: 6px;
}
.character-card .char-desc {
    font-size: 0.75rem;
    color: #7a6b80;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.comment-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.comment-item:hover {
    border-left-color: var(--accent-bright);
    box-shadow: var(--shadow-md);
}
.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.comment-user {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--bg-dark);
}
.comment-time {
    font-size: 0.72rem;
    color: #a894b0;
    margin-left: auto;
}
.comment-body {
    font-size: 0.85rem;
    color: #4a3a50;
    line-height: 1.65;
}

.platform-intro-block {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.platform-intro-img {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: #f0e6f0;
    box-shadow: var(--shadow-sm);
}
.platform-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    loading: lazy;
}
.platform-intro-text {
    flex: 1;
    min-width: 240px;
}
.platform-intro-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.platform-intro-text p {
    font-size: 0.9rem;
    color: #5a4a60;
    line-height: 1.7;
}

.app-download-block {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #3d1f4a 40%, var(--bg-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: var(--shadow-lg);
    color: var(--text-light);
}
.app-download-icon {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.app-download-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    loading: lazy;
}
.app-download-text {
    flex: 1;
    min-width: 200px;
}
.app-download-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.app-download-text p {
    font-size: 0.88rem;
    opacity: 0.85;
    line-height: 1.6;
}
.app-download-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.btn-download {
    background: var(--accent-bright);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(226, 62, 87, 0.45);
    white-space: nowrap;
}
.btn-download:hover {
    background: #f04a62;
    box-shadow: 0 6px 24px rgba(226, 62, 87, 0.6);
    transform: translateY(-2px);
}
.btn-download-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 10px 22px;
    border-radius: 24px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-download-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0e6f0;
}
.sidebar-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5eaf5;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-card h3 .icon-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-bright);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.rank-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    background: #fefcfe;
}
.rank-item:hover {
    background: #fdf2f4;
}
.rank-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.78rem;
    flex-shrink: 0;
    color: #fff;
}
.rank-num.top1 { background: var(--accent-bright); }
.rank-num.top2 { background: #f0627e; }
.rank-num.top3 { background: #f090a0; }
.rank-num.normal { background: #c4b0c8; color: #4a3a50; }
.rank-info {
    flex: 1;
    min-width: 0;
}
.rank-info .rank-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bg-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rank-info .rank-sub {
    font-size: 0.7rem;
    color: #a894b0;
}
.rank-change {
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}
.rank-change.up { color: #e23e57; }
.rank-change.down { color: #888; }

.total-read-count {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-bright);
    text-align: center;
    letter-spacing: 1px;
    margin: 8px 0;
}
.total-read-label {
    text-align: center;
    font-size: 0.78rem;
    color: #a894b0;
    margin-bottom: 4px;
}
.update-time {
    text-align: center;
    font-size: 0.7rem;
    color: #b8a4be;
}

.stats-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.stat-item {
    flex: 1;
    min-width: 70px;
    text-align: center;
    padding: 12px 8px;
    background: #fefcfe;
    border-radius: var(--radius-sm);
}
.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-mid);
}
.stat-label {
    font-size: 0.7rem;
    color: #a894b0;
    margin-top: 2px;
}

.bottom-nav {
    width: 100%;
    background: var(--bg-dark);
    color: var(--text-muted);
    padding: 32px 24px 20px;
    margin-top: 20px;
}
.bottom-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: flex-start;
}
.bottom-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.bottom-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    padding: 3px 0;
    transition: var(--transition);
}
.bottom-col a:hover {
    color: var(--accent-bright);
}
.bottom-copyright {
    text-align: center;
    width: 100%;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: #8a7a90;
}

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-bright);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(226, 62, 87, 0.5);
    z-index: 900;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #f04a62;
    box-shadow: 0 6px 22px rgba(226, 62, 87, 0.65);
    transform: translateY(-3px);
}

@media (max-width: 1400px) {
    .comic-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; }
    .sidebar { width: 300px; }
}
@media (max-width: 1200px) {
    .comic-grid { grid-template-columns: repeat(4, 1fr); }
    .character-grid { grid-template-columns: repeat(3, 1fr); }
    .featured-grid { grid-template-columns: repeat(3, 1fr); }
    .sidebar { width: 280px; }
    .nav-links { gap: 2px; }
    .nav-links a { font-size: 0.8rem; padding: 6px 10px; }
}
@media (max-width: 992px) {
    .main-container { flex-direction: column; }
    .sidebar { width: 100%; position: static; max-height: none; flex-direction: row; flex-wrap: wrap; gap: 14px; }
    .sidebar-card { flex: 1; min-width: 240px; }
    .comic-grid { grid-template-columns: repeat(3, 1fr); }
    .character-grid { grid-template-columns: repeat(3, 1fr); }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .top-nav-inner { gap: 10px; }
    .comic-detail-block { flex-direction: column; align-items: center; text-align: center; }
    .comic-detail-cover { width: 160px; }
}
@media (max-width: 768px) {
    .comic-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .character-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sidebar { flex-direction: column; }
    .sidebar-card { min-width: auto; }
    .top-nav-inner { padding: 0 14px; height: 56px; }
    .nav-left h1 { font-size: 1.3rem; }
    .btn-read-now, .btn-login { font-size: 0.78rem; padding: 6px 14px; }
    .main-container { padding: 16px 10px; gap: 18px; }
    .content-area { gap: 22px; }
    .section-title { font-size: 1.1rem; }
    .comic-detail-cover { width: 140px; }
    .platform-intro-block { flex-direction: column; text-align: center; }
    .app-download-block { flex-direction: column; text-align: center; padding: 22px 16px; }
    .app-download-btns { justify-content: center; }
    .stats-row { gap: 6px; }
    .bottom-nav-inner { flex-direction: column; gap: 16px; }
    .back-to-top { bottom: 20px; right: 14px; width: 38px; height: 38px; font-size: 1rem; }
}
@media (max-width: 480px) {
    .comic-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .character-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .featured-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .comic-card-info { padding: 8px 10px; }
    .comic-card-info h3 { font-size: 0.8rem; }
    .comic-card-info .meta-row { font-size: 0.65rem; }
    .nav-right { gap: 6px; }
    .btn-login { padding: 6px 10px; font-size: 0.7rem; }
    .btn-read-now { padding: 7px 14px; font-size: 0.75rem; }
    .nav-left h1 { font-size: 1.1rem; letter-spacing: 1px; }
    .stat-value { font-size: 1.1rem; }
}
