/* Modern Premium Style for Manqu (漫趣) */
/* 使用系统自带的中文字体，确保离线可用 */
@font-face {
    font-family: 'Noto Sans SC Local';
    src: local('PingFang SC'), local('Hiragino Sans GB'), local('Microsoft YaHei'),
         local('Segoe UI'), local('Roboto'), local('Helvetica Neue'), local('Arial');
}

:root {
    /* Brand Colors */
    --primary: #FA4A25;
    --primary-hover: #e63e1c;
    --primary-soft: rgba(250, 74, 37, 0.08);

    /* Semantic Colors */
    --text-main: #1d1d1f;
    --text-muted: #86868b;
    --bg-main: #ffffff;
    --bg-soft: #fbfbfd;
    --border-light: rgba(0, 0, 0, 0.05);

    /* Design Tokens */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --radius-md: 12px;
    --radius-lg: 18px;
    --container-max: 1200px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Noto Sans SC Local', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* 内容可见性优化：跳过非首屏内容的渲染，提升性能 */
.section-features,
.section-reading,
.section-reviews,
.section-journey,
.section-logs,
.section-cta,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

body {
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Animations */
.bg-animations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

/* Star sparkle effect */
.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 3s infinite ease-in-out;
}

.star-1 { top: 15%; left: 20%; animation-delay: 0s; }
.star-2 { top: 25%; left: 75%; animation-delay: 0.5s; }
.star-3 { top: 45%; left: 10%; animation-delay: 1s; }
.star-4 { top: 35%; left: 85%; animation-delay: 1.5s; }
.star-5 { top: 60%; left: 30%; animation-delay: 2s; }
.star-6 { top: 70%; left: 70%; animation-delay: 0.3s; }
.star-7 { top: 80%; left: 50%; animation-delay: 0.8s; }
.star-8 { top: 90%; left: 15%; animation-delay: 1.2s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1); }
}

.floatie {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.05;
    background: var(--primary);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") no-repeat center;
    animation: float 10s infinite linear;
}

.f-1 {
    top: 20%;
    left: 10%;
    transform: rotate(15deg);
}

.f-2 {
    top: 60%;
    right: 15%;
    animation-duration: 15s;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E");
}

.f-3 {
    bottom: 20%;
    left: 20%;
    animation-duration: 12s;
    rotate: -20deg;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.05;
    }

    80% {
        opacity: 0.05;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

h1,
h2,
h3 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Navigation System */
/* Lazy loading image styles */
img[data-src] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.loaded,
img:not([data-src]) {
    opacity: 1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    height: 72px;
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    line-height: 1;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text small {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 400;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--bg-soft);
    border-radius: 100px;
    padding: 4px 4px 4px 16px;
    transition: var(--transition);
}

.search-bar:focus-within {
    background: #ffffff;
    box-shadow: 0 0 0 2px var(--primary-soft);
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.85rem;
    width: 140px;
}

.search-bar button {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 100px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 74, 37, 0.25);
}

.btn-outline {
    background: white;
    color: var(--text-main);
    border: 1.5px solid #e1e1e1;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-black {
    background: #000;
    color: white;
}

.btn-black:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Showcase Section */
.top-showcase {
    padding: 120px 0 60px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
}

.carousel-nav {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.carousel-viewport {
    overflow: hidden;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.comic-card {
    flex: 0 0 calc(16.666% - 17px);
    /* Shows roughly 6 items */
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.comic-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.comic-card:hover img {
    transform: scale(1.04);
}

.card-info {
    padding: 16px 4px;
}

.card-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.card-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    padding: calc(72px + 60px) 0 80px; /* 导航栏高度 72px + 与导航的间距 60px */
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.hero-deco {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 1;
}

.hd-left {
    left: 28%;
}

.hd-right {
    right: 28%;
}

.deco-item {
    position: absolute;
    animation: floatItems 8s infinite ease-in-out;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.05));
}

.deco-bubble {
    background: white;
    padding: 10px 20px;
    border-radius: 20px;
    border: 3px solid #333;
    font-weight: 800;
    font-size: 1.1rem;
    color: #333;
    left: 20%;
    top: 10%;
    transform-origin: bottom right;
}

.deco-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 20px;
    border-width: 15px 15px 0 0;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.bubble-alt {
    left: auto;
    right: 20%;
    top: 30%;
    animation-delay: -2s;
}

.deco-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.di-1 {
    left: 10%;
    top: 50%;
    animation-delay: -4s;
}

.di-2 {
    right: 10%;
    top: 60%;
    animation-delay: -1s;
}

.deco-star {
    width: 30px;
    height: 30px;
    left: 40%;
    top: 80%;
    background: var(--primary);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E") no-repeat center;
    opacity: 0.3;
}

.deco-heart {
    width: 30px;
    height: 30px;
    right: 30%;
    top: 10%;
    background: var(--primary);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E") no-repeat center;
    opacity: 0.3;
    animation-delay: -3s;
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 20px 0;
    letter-spacing: -3px;
}

.hero-text .highlight {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
}

.cta-ops {
    display: flex;
    gap: 16px;
    justify-content: center;
}

@keyframes floatItems {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(20px, -30px) rotate(5deg) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) rotate(-5deg) scale(0.95);
    }
}

/* Manga Marquee Section */
.manga-marquee {
    width: 100%;
    background: transparent;
    padding: 0;
    position: relative;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.marquee-viewport {
    overflow: hidden;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    width: calc(420px * 6);
    animation: marqueeSlide 30s linear infinite;
    gap: 20px;
}

.marquee-card {
    flex: 0 0 400px;
    height: 220px;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.marquee-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    opacity: 0.8;
}

.marquee-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    color: white;
}

.m-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.marquee-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
}

.marquee-card:hover {
    filter: brightness(1.1);
}

@keyframes marqueeSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-420px * 3));
    }
}

.banner-strip {
    padding: 32px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.strip-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.strip-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.strip-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

.strip-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.strip-divider {
    height: 32px;
    width: 1px;
    background: #ddd;
}

/* Section Generic */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
}

/* Features Bento Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.f-card {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.f-card:hover {
    border-color: var(--primary-soft);
    transform: scale(1.02);
}

.f-icon {
    margin-bottom: 24px;
    color: var(--primary);
}

.f-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.f-card p {
    color: var(--text-muted);
}

/* Reading Section */
.reading-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    margin: 0 auto;
    position: relative;
    background: #111;
    border-radius: 40px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
}

.pm-bezel {
    border: 2px solid #333;
    height: 100%;
    border-radius: 32px;
    padding: 8px;
    background: #000;
}

.pm-screen {
    background: white;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.reading-img {
    height: 100%;
    background-image: url('1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.reading-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    padding: 0;
}

.danmaku {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    width: fit-content;
    margin: 8px 10px;
}

.d2 {
    margin-left: 40px;
}

.d3 {
    margin-left: 20px;
    margin-top: 40px;
}

/* Danmaku rain (animated) */
.reading-overlay.danmaku-rain {
    /* travel distance beyond screen edge */
    --travel: 360px;
}

.reading-overlay.danmaku-rain .danmaku {
    position: absolute;
    left: 100%;
    top: var(--y, 50%);
    margin: 0;
    white-space: nowrap;
    will-change: transform;
    opacity: var(--alpha, 0.9);
    transform: translateX(0) translateY(-50%) scale(var(--scale, 1));
    animation: danmakuMove var(--dur, 9s) linear var(--delay, 0s) infinite;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.reading-overlay.danmaku-rain .danmaku:nth-child(3n) {
    background: rgba(250, 74, 37, 0.75);
}

.reading-overlay.danmaku-rain .danmaku:nth-child(4n) {
    background: rgba(0, 0, 0, 0.5);
}

@keyframes danmakuMove {
    from {
        transform: translateX(24px) translateY(-50%) scale(var(--scale, 1));
    }

    to {
        /* move fully across the screen and past the left edge */
        transform: translateX(calc(-100% - var(--travel))) translateY(-50%) scale(var(--scale, 1));
    }
}

@media (prefers-reduced-motion: reduce) {
    .reading-overlay.danmaku-rain .danmaku {
        animation: none;
    }
}

.reading-info .sub-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reading-info h2 {
    font-size: 2.5rem;
    margin: 12px 0 24px;
}

.reading-info p {
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.reading-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.perk-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* Reviews */
/* Reviews carousel */
.reviews-carousel-viewport {
    overflow: hidden;
}

.reviews-grid {
    display: flex;
    gap: 24px;
    animation: marqueeReviewSlide 15s linear infinite;
    will-change: transform;
}

.review-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f4f4f4;
    flex: 0 0 calc(100% / 3 - 16px);
    min-width: calc(100% / 3 - 16px);
}

@keyframes marqueeReviewSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

.r-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.r-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(250, 74, 37, 0.25), rgba(0, 0, 0, 0.06));
}

.review-card:nth-child(2) .r-avatar {
    background: linear-gradient(135deg, rgba(255, 140, 109, 0.28), rgba(0, 0, 0, 0.06));
}

.review-card:nth-child(3) .r-avatar {
    background: linear-gradient(135deg, rgba(255, 207, 196, 0.55), rgba(0, 0, 0, 0.06));
}

.review-card:nth-child(4) .r-avatar {
    background: linear-gradient(135deg, rgba(250, 74, 37, 0.18), rgba(255, 140, 109, 0.22));
}

.review-card:nth-child(5) .r-avatar {
    background: linear-gradient(135deg, rgba(255, 207, 196, 0.45), rgba(250, 74, 37, 0.12));
}

.review-card:nth-child(6) .r-avatar {
    background: linear-gradient(135deg, rgba(255, 140, 109, 0.22), rgba(255, 207, 196, 0.35));
}

.r-name {
    font-weight: 700;
    display: block;
}

.r-tag {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

/* Timeline Journey */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px white;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.t-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Release Logs */
.logs-container {
    max-width: 700px;
    margin: 0 auto;
}

.log-item {
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}

.log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
}

.log-v {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.log-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.log-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.log-list {
    list-style: none;
}

.log-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: var(--text-muted);
}

.log-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

/* Enhanced CTA Section */
.section-cta {
    padding: 120px 0;
    background: #111;
    color: white;
    overflow: hidden;
    position: relative;
}

.cta-flex {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.section-cta h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-cta .highlight {
    color: var(--primary);
}

.section-cta p {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 48px;
    max-width: 500px;
}

.cta-badges {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-qr {
    text-align: center;
}

.qr-placeholder {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-qr span {
    font-size: 0.8rem;
    color: #888;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.install-guide {
    width: 320px;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top, rgba(250, 74, 37, 0.15), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
    color: white;
}

.install-guide h3 {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    margin-top: 20px;
    margin-bottom: 8px;
    text-align: center;
}

.install-guide p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.guide-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.guide-logo-wrap:hover {
    transform: scale(1.05);
}

.guide-logo-wrap:hover .guide-logo {
    box-shadow: 0 0 20px rgba(250, 74, 37, 0.5);
}

.guide-logo {
    width: 86px;
    height: 86px;
    border-radius: 24px;
}

.guide-steps {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.85rem;
}

.guide-steps span {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.guide-steps span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 6px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #000;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.f-brand .logo {
    margin-bottom: 20px;
}

.f-brand p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.f-links h4,
.f-download h4 {
    margin-bottom: 24px;
    font-size: 1rem;
    color: white;
}

.f-links a {
    display: block;
    margin-bottom: 12px;
    color: #888;
    font-size: 0.9rem;
}

.f-links a:hover {
    color: var(--primary);
}

.dl-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.f-download .btn-black {
    background: #FA4A25;
    padding: 14px 24px;
}

.f-download .btn-black:hover {
    background: #e03d1b;
    opacity: 1;
}

.f-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.f-icp {
    margin-top: 4px;
}

.f-icp a {
    color: #888;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.f-icp a:hover {
    color: var(--primary);
}

.f-disclaimer {
    margin-top: 12px;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .cta-ops {
        justify-content: center;
    }

    .hero-visually {
        display: none;
    }

    .comic-card {
        flex: 0 0 calc(33.333% - 14px);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reading-flex {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reading-visual {
        order: 2;
    }

    .reading-info {
        text-align: center;
    }

    /* 横向手机模拟器 */
    .phone-mockup {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 16px;
        padding: 6px;
    }

    .pm-bezel {
        border-radius: 12px;
        padding: 4px;
    }

    .pm-screen {
        border-radius: 8px;
    }

    .reading-overlay {
        padding: 6px;
    }

    .danmaku {
        font-size: 9px;
        padding: 2px 6px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        text-align: left !important;
    }

    .timeline-dot {
        left: 32px !important;
        right: auto !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .cta-flex {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-flex p {
        margin: 0 auto 40px;
    }

    .cta-badges {
        justify-content: center;
        flex-direction: column;
    }

    .cta-visual {
        display: block;
        height: auto;
    }

    .install-guide {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .deco-img,
    .di-1,
    .di-2,
    .deco-bubble,
    .bubble-alt {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: calc(72px + 32px) 16px 60px;
    }

    .hero-grid {
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .hero-deco {
        display: block;
        width: 100%;
        height: 180px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
    }

    .deco-bubble {
        padding: 8px 14px;
        font-size: 0.9rem;
        border-width: 2px;
    }

    .deco-bubble::after {
        display: block;
    }

    .deco-img {
        display: none;
    }

    .deco-star,
    .deco-heart {
        width: 24px;
        height: 24px;
    }

    .di-1,
    .di-2 {
        display: none;
    }

    .deco-bubble {
        left: -25%;
        top: 20%;
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .bubble-alt {
        right: -25%;
        left: auto;
        top: 20%;
    }

    .deco-star {
        left: -30%;
        top: 60%;
    }

    .deco-heart {
        right: -30%;
        top: 60%;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-ops {
        flex-direction: column;
        gap: 12px;
    }

    .btn-lg {
        width: 100%;
    }

    .banner-strip {
        padding: 24px 0;
    }

    .nav-links,
    .search-bar {
        display: none;
    }

    .comic-card {
        flex: 0 0 160px;
    }

    .strip-inner {
        flex-direction: column;
        gap: 20px;
    }

    .strip-divider {
        display: none;
    }

    .review-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}