
:root {
    --color-blue: #c5e3f6;
    --color-pink: #fc5c9c;
    --color-light-pink: #fccde2;
    --color-bg: #fcefee;
    --color-white: #ffffff;
    --color-text: #2d3436;
    --color-text-light: #636e72;
    --color-border: #e8e8e8;
    --color-star: #f9a825;
    --color-green: #3ddc84;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1320px;
    --nav-height: 64px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
    background-color: #fafafa;
    color: var(--color-text);
    line-height: 1.6;
    min-width: 320px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.top-nav {
    width: 100%;
    height: var(--nav-height);
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

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

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-pink);
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin: 0;
    cursor: pointer;
    transition: var(--transition);
}
.nav-brand h1:hover {
    color: #e04880;
    transform: scale(1.03);
}
.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}
.nav-links li a {
    display: inline-block;
    padding: 8px 14px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 20px;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}
.nav-links li a:hover,
.nav-links li a.active {
    color: var(--color-pink);
    background-color: var(--color-light-pink);
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 18px;
    height: 2.5px;
    background: var(--color-pink);
    border-radius: 2px;
    transition: transform 0.25s ease;
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 7px 16px;
    border-radius: 22px;
    background: var(--color-bg);
    transition: var(--transition);
    white-space: nowrap;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1.5px solid transparent;
}
.nav-user:hover {
    border-color: var(--color-pink);
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.nav-user .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color-blue);
    flex-shrink: 0;
}
.nav-user .login-text {
    color: var(--color-text);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--color-text);
    border-radius: 3px;
    transition: var(--transition);
}

.banner-section {
    width: 100%;
    background: linear-gradient(135deg, #fcefee 0%, #fccde2 40%, #c5e3f6 100%);
    padding: 40px 20px 50px;
    position: relative;
    overflow: hidden;
}
.banner-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: rgba(252, 92, 156, 0.07);
    border-radius: 50%;
    pointer-events: none;
}
.banner-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -50px;
    width: 240px;
    height: 240px;
    background: rgba(197, 227, 246, 0.25);
    border-radius: 50%;
    pointer-events: none;
}
.banner-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.banner-text {
    flex: 1 1 400px;
    min-width: 280px;
}
.banner-text .banner-badge {
    display: inline-block;
    background: var(--color-pink);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    animation: pulse-badge 2.5s ease-in-out infinite;
}
@keyframes pulse-badge {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(252, 92, 156, 0.4);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(252, 92, 156, 0);
    }
}
.banner-text h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.banner-text h2 span {
    color: var(--color-pink);
}
.banner-text p {
    font-size: 1.08rem;
    color: var(--color-text-light);
    margin-bottom: 22px;
    max-width: 480px;
    line-height: 1.7;
}
.banner-text .banner-cta {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
}
.banner-text .btn-primary {
    display: inline-block;
    padding: 13px 28px;
    background: var(--color-pink);
    color: #fff;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(252, 92, 156, 0.35);
}
.banner-text .btn-primary:hover {
    background: #e04880;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(252, 92, 156, 0.45);
}
.banner-text .btn-outline {
    display: inline-block;
    padding: 13px 28px;
    background: transparent;
    color: var(--color-pink);
    border: 2px solid var(--color-pink);
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.3px;
}
.banner-text .btn-outline:hover {
    background: var(--color-pink);
    color: #fff;
    transform: translateY(-2px);
}
.banner-image {
    flex: 1 1 380px;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: block;
}
.banner-image img:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.section {
    padding: 50px 20px;
}
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.section-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 50px;
    height: 3.5px;
    background: var(--color-pink);
    border-radius: 3px;
}
.section-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 28px;
}

.two-col {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.two-col .col-main {
    flex: 1 1 65%;
    min-width: 0;
}
.two-col .col-sidebar {
    flex: 0 0 330px;
    max-width: 360px;
    min-width: 280px;
}

.platform-intro-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.intro-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}
.intro-card:hover {
    border-color: var(--color-light-pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.intro-card .intro-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    display: block;
    background: var(--color-bg);
    padding: 10px;
}
.intro-card h4 {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-text);
}
.intro-card p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.movie-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}
.movie-card:hover {
    border-color: var(--color-light-pink);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.movie-card .movie-poster {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    background: var(--color-blue);
    flex-shrink: 0;
}
.movie-card .movie-info {
    padding: 16px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.movie-card .movie-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.3;
}
.movie-card .movie-meta {
    font-size: 0.8rem;
    color: var(--color-text-light);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.movie-card .movie-meta span {
    background: var(--color-bg);
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
    font-size: 0.75rem;
}
.movie-card .movie-tag {
    display: inline-block;
    background: var(--color-light-pink);
    color: var(--color-pink);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}
.movie-card .movie-site-tag {
    display: inline-block;
    background: #fc5c9c;
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}
.movie-card .movie-detail-row {
    font-size: 0.78rem;
    color: var(--color-text-light);
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
}

.star-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.star-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}
.star-card:hover {
    border-color: var(--color-light-pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.star-card .star-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    display: block;
    background: var(--color-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.star-card .star-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
}
.star-card .star-role {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 2px;
}

.plot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.plot-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--color-pink);
    cursor: pointer;
}
.plot-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(3px);
}
.plot-card h4 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}
.plot-card p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.detail-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    gap: 14px;
    padding: 14px;
    align-items: flex-start;
    border: 2px solid transparent;
}
.detail-card:hover {
    border-color: var(--color-light-pink);
    box-shadow: var(--shadow-md);
}
.detail-card .detail-poster {
    width: 100px;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    background: var(--color-blue);
}
.detail-card .detail-content h4 {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text);
    font-size: 0.95rem;
}
.detail-card .detail-content p {
    font-size: 0.78rem;
    color: var(--color-text-light);
    line-height: 1.5;
}
.detail-card .detail-content .detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}
.detail-card .detail-content .detail-meta span {
    background: var(--color-bg);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    white-space: nowrap;
}

.sidebar-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    border: 2px solid transparent;
    transition: var(--transition);
}
.sidebar-card:hover {
    border-color: var(--color-light-pink);
}
.sidebar-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
    font-size: 1.05rem;
    position: relative;
    padding-left: 14px;
}
.sidebar-card h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 18px;
    background: var(--color-pink);
    border-radius: 2px;
}
.sidebar-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-pink);
    line-height: 1;
}
.sidebar-card .stat-label {
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin-top: 2px;
}
.sidebar-card .update-time {
    font-size: 0.75rem;
    color: #999;
    margin-top: 8px;
}
.rank-list {
    list-style: none;
    padding: 0;
}
.rank-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: var(--transition);
    cursor: pointer;
}
.rank-list li:hover {
    background: #fef9fb;
    padding-left: 6px;
    border-radius: 6px;
}
.rank-list li:last-child {
    border-bottom: none;
}
.rank-list .rank-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    color: #fff;
}
.rank-list .rank-num.top1 {
    background: #fc5c9c;
}
.rank-list .rank-num.top2 {
    background: #f9a825;
}
.rank-list .rank-num.top3 {
    background: #ff8a65;
}
.rank-list .rank-num.normal {
    background: #b2bec3;
}
.rank-list .rank-thumb {
    width: 44px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
    background: var(--color-blue);
}
.rank-list .rank-info {
    font-size: 0.82rem;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.3;
    min-width: 0;
}
.rank-list .rank-info small {
    display: block;
    color: var(--color-text-light);
    font-weight: 400;
    font-size: 0.7rem;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.comment-item {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}
.comment-item:hover {
    border-color: var(--color-light-pink);
}
.comment-item .comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.comment-item .comment-user {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}
.comment-item .comment-time {
    font-size: 0.72rem;
    color: #aaa;
    margin-left: auto;
    white-space: nowrap;
}
.comment-item .comment-body {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
}

.download-section {
    background: linear-gradient(135deg, #c5e3f6 0%, #fcefee 50%, #fccde2 100%);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    margin-top: 10px;
}
.download-section h3 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
    font-size: 1.4rem;
}
.download-section .download-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 18px;
}
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    background: #fff;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    white-space: nowrap;
}
.download-btn:hover {
    border-color: var(--color-pink);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.download-btn .app-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
}
.download-btn.android:hover {
    background: #e8f5e9;
    border-color: #3ddc84;
}
.download-btn.ios:hover {
    background: #f5f5f5;
    border-color: #000;
}
.download-btn.pc:hover {
    background: #eef2f5;
    border-color: #52616b;
}
.download-btn.mac:hover {
    background: #f0f0f0;
    border-color: #555;
}

.footer-nav {
    width: 100%;
    background: #2d3436;
    color: #ccc;
    padding: 36px 20px 20px;
    margin-top: 20px;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.footer-col h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1rem;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 6px;
}
.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--color-pink);
}
.footer-bottom {
    width: 100%;
    max-width: var(--max-width);
    margin: 20px auto 0;
    padding-top: 16px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}
.footer-bottom a {
    color: var(--color-light-pink);
    text-decoration: none;
    font-weight: 500;
}
.footer-bottom a:hover {
    color: var(--color-pink);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .movie-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .star-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .two-col .col-sidebar {
        flex: 0 0 280px;
        max-width: 300px;
    }
    .detail-grid {
        grid-template-columns: 1fr 1fr;
    }
    .plot-grid {
        grid-template-columns: 1fr 1fr;
    }
    .banner-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 16px 20px;
        box-shadow: var(--shadow-md);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        gap: 2px;
        z-index: 999;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li a {
        display: block;
        padding: 11px 16px;
        border-radius: 8px;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-user .login-text {
        display: none;
    }
    .nav-user {
        padding: 6px 10px;
    }

    .banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .banner-text h2 {
        font-size: 1.7rem;
    }
    .banner-text p {
        max-width: 100%;
        margin: 0 auto 18px;
    }
    .banner-text .banner-cta {
        justify-content: center;
    }
    .banner-image img {
        max-width: 340px;
    }

    .movie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .star-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .plot-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .two-col {
        flex-direction: column;
    }
    .two-col .col-sidebar {
        flex: 1 1 auto;
        max-width: 100%;
        order: -1;
    }
    .platform-intro-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .section-title {
        font-size: 1.35rem;
    }
    .download-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }
    .rank-list .rank-thumb {
        width: 36px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .movie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .movie-card .movie-info {
        padding: 10px 8px;
    }
    .movie-card .movie-title {
        font-size: 0.9rem;
    }
    .movie-card .movie-meta span {
        font-size: 0.68rem;
        padding: 2px 7px;
    }
    .star-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .star-card .star-avatar {
        width: 70px;
        height: 70px;
    }
    .platform-intro-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .banner-text h2 {
        font-size: 1.4rem;
    }
    .banner-text p {
        font-size: 0.9rem;
    }
    .detail-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .detail-card .detail-poster {
        width: 80px;
        height: 110px;
    }
    .section {
        padding: 30px 12px;
    }
    .top-nav {
        padding: 0 10px;
    }
    .nav-brand h1 {
        font-size: 1.2rem;
    }
    .download-btns {
        gap: 8px;
    }
    .download-btn {
        padding: 10px 14px;
        font-size: 0.75rem;
        gap: 5px;
    }
    .download-btn .app-icon {
        width: 18px;
        height: 18px;
    }
}
