/* 密桃视频网页版 - 柔粉奶油色小清新风格 */
/* 字体引入 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&family=Ma+Shan+Zheng&display=swap');

/* ===== 全局变量 ===== */
:root {
    --pink-main: #ffd1dc;
    --pink-deep: #ff85a2;
    --pink-mid: #ffb6c1;
    --cream-bg: #fff8f0;
    --text-dark: #444444;
    --text-mid: #888888;
    --white: #ffffff;
    --pink-gradient: linear-gradient(135deg, #ffd1dc 0%, #ff85a2 100%);
    --soft-shadow: 0 4px 20px rgba(255, 133, 162, 0.15);
    --card-radius: 18px;
}

/* ===== 基础重置 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: var(--cream-bg);
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 400;
}

h1, h2, h3, h4 {
    font-family: 'Ma Shan Zheng', cursive;
    font-weight: normal;
    color: var(--pink-deep);
}

a {
    text-decoration: none;
    color: var(--pink-deep);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-dark);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ===== 顶部导航 ===== */
.site-header {
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(255, 182, 193, 0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 28px;
    color: var(--pink-deep);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--pink-gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--pink-gradient);
    color: var(--white);
}

.nav-search {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 25px;
    padding: 6px 14px;
    border: 1px solid var(--pink-mid);
}

.nav-search input {
    border: none;
    outline: none;
    background: transparent;
    padding: 6px;
    font-size: 14px;
    width: 140px;
    font-family: inherit;
}

.nav-search button {
    background: none;
    border: none;
    color: var(--pink-deep);
    cursor: pointer;
    font-size: 16px;
}

/* ===== 主容器 ===== */
.main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 24px;
}

/* ===== Hero 大Banner ===== */
.hero-banner {
    background: var(--pink-gradient);
    border-radius: 24px;
    padding: 50px 40px;
    margin-bottom: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 30%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 16px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero-desc {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 24px;
}

.hero-btn {
    display: inline-block;
    background: var(--white);
    color: var(--pink-deep);
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--pink-deep);
}

/* ===== 章节标题 ===== */
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-title h2 {
    font-size: 28px;
    position: relative;
    padding-left: 20px;
}

.section-title h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 28px;
    background: var(--pink-gradient);
    border-radius: 4px;
}

.section-title .more {
    font-size: 14px;
    color: var(--pink-deep);
}

/* ===== 话题标签导航 ===== */
.topic-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 16px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--soft-shadow);
}

.topic-nav a {
    padding: 6px 16px;
    background: var(--pink-main);
    color: var(--white);
    border-radius: 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.topic-nav a:hover {
    background: var(--pink-deep);
    transform: translateY(-2px);
}

/* ===== Masonry 瀑布流布局 ===== */
.masonry {
    column-count: 4;
    column-gap: 20px;
}

@media (max-width: 1100px) {
    .masonry { column-count: 3; }
}
@media (max-width: 768px) {
    .masonry { column-count: 2; column-gap: 14px; }
}
@media (max-width: 480px) {
    .masonry { column-count: 1; }
}

/* ===== 视频卡片 ===== */
.video-card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 133, 162, 0.25);
}

.video-thumb {
    position: relative;
    overflow: hidden;
    background: var(--pink-main);
}

.video-thumb img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--white);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
}

.video-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--pink-deep);
    color: var(--white);
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
}

.video-body {
    padding: 14px 16px 16px;
}

.video-title {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    font-family: 'Noto Sans SC', sans-serif;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-mid);
}

.video-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--pink-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.video-likes {
    color: var(--pink-deep);
    font-weight: 500;
}

/* ===== 分类导航栏 ===== */
.category-nav {
    display: flex;
    gap: 8px;
    background: var(--white);
    padding: 14px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: var(--soft-shadow);
    overflow-x: auto;
    flex-wrap: wrap;
}

.category-nav a {
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.category-nav a.active,
.category-nav a:hover {
    background: var(--pink-gradient);
    color: var(--white);
}

/* ===== 双栏布局(发现页) ===== */
.layout-two-col {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
}

@media (max-width: 900px) {
    .layout-two-col {
        grid-template-columns: 1fr;
    }
}

.sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--soft-shadow);
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px dashed var(--pink-mid);
}

.hot-topic-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f0e8;
    font-size: 14px;
}

.hot-topic-list li:last-child {
    border-bottom: none;
}

.hot-topic-list .rank {
    width: 22px;
    height: 22px;
    background: var(--pink-main);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
}

.hot-topic-list li:nth-child(1) .rank { background: #ff4d6d; }
.hot-topic-list li:nth-child(2) .rank { background: #ff85a2; }
.hot-topic-list li:nth-child(3) .rank { background: #ffb6c1; }

.hot-topic-list .topic-name {
    flex: 1;
    color: var(--text-dark);
}

.hot-topic-list .topic-count {
    color: var(--text-mid);
    font-size: 12px;
}

/* ===== 排行榜 ===== */
.ranking-list {
    background: var(--white);
    border-radius: 16px;
    padding: 10px 20px;
    box-shadow: var(--soft-shadow);
}

.ranking-item {
    display: grid;
    grid-template-columns: 60px 140px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f5f0e8;
}

.ranking-item:last-child {
    border-bottom: none;
}

@media (max-width: 700px) {
    .ranking-item {
        grid-template-columns: 50px 1fr;
        gap: 14px;
    }
    .ranking-item .rank-thumb { display: none; }
    .ranking-item .rank-stats { display: none; }
}

.rank-num {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 36px;
    color: var(--pink-mid);
    text-align: center;
}

.ranking-item:nth-child(1) .rank-num { color: #ff4d6d; }
.ranking-item:nth-child(2) .rank-num { color: #ff85a2; }
.ranking-item:nth-child(3) .rank-num { color: #ffa1b8; }

.rank-thumb img {
    width: 140px;
    height: 84px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-info h4 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 17px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 6px;
}

.rank-info .rank-author {
    font-size: 13px;
    color: var(--text-mid);
}

.rank-stats {
    text-align: right;
    font-size: 13px;
    color: var(--text-mid);
}

.rank-stats .plays {
    color: var(--pink-deep);
    font-weight: 700;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.trend-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
}

.trend-tag.hot {
    background: #ffe0e9;
    color: #ff4d6d;
}

.trend-tag.new {
    background: #e0f7ff;
    color: #1f9aff;
}

/* ===== 创作者卡片 ===== */
.creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.creator-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease;
}

.creator-card:hover {
    transform: translateY(-5px);
}

.creator-avatar-lg {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: var(--pink-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 36px;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(255, 133, 162, 0.3);
    overflow: hidden;
}

.creator-avatar-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-name {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Noto Sans SC', sans-serif;
}

.creator-cat {
    font-size: 12px;
    color: var(--pink-deep);
    background: #ffe8ee;
    padding: 3px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 12px;
}

.creator-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--text-mid);
}

.creator-stats strong {
    display: block;
    color: var(--pink-deep);
    font-size: 16px;
}

.creator-bio {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 42px;
}

.creator-btn {
    display: inline-block;
    padding: 8px 24px;
    background: var(--pink-gradient);
    color: var(--white);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.creator-btn:hover {
    color: var(--white);
    opacity: 0.9;
}

/* ===== 话题列表 ===== */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.topic-card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.topic-card:hover {
    transform: translateY(-5px);
}

.topic-card-img {
    height: 160px;
    overflow: hidden;
    position: relative;
    background: var(--pink-mid);
}

.topic-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topic-card-img .topic-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--pink-deep);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.topic-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.topic-card-body h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.topic-card-desc {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 14px;
    flex: 1;
}

.topic-card-stats {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-mid);
    padding-top: 12px;
    border-top: 1px dashed var(--pink-mid);
}

.topic-card-stats span strong {
    color: var(--pink-deep);
    font-size: 15px;
}

.topic-challenge {
    background: var(--pink-gradient);
    color: var(--white);
    padding: 30px;
    border-radius: var(--card-radius);
    margin: 30px 0;
    text-align: center;
}

.topic-challenge h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 10px;
}

.topic-challenge p {
    margin-bottom: 16px;
    opacity: 0.95;
}

/* ===== 关于页面 ===== */
.about-hero {
    background: var(--pink-gradient);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 40px;
}

.about-hero h1 {
    color: var(--white);
    font-size: 44px;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 16px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.about-section {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: var(--soft-shadow);
}

.about-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
}

.about-section p {
    color: var(--text-dark);
    margin-bottom: 12px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--pink-main);
}

.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--pink-deep);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--pink-main);
}

.timeline-item .year {
    font-family: 'Ma Shan Zheng', cursive;
    color: var(--pink-deep);
    font-size: 20px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.value-item {
    text-align: center;
    padding: 20px;
    background: var(--cream-bg);
    border-radius: 14px;
}

.value-item .icon {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--pink-deep);
}

.value-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-family: 'Noto Sans SC', sans-serif;
}

/* ===== 联系表单 ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--soft-shadow);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 26px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--pink-mid);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    background: var(--cream-bg);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--pink-deep);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--pink-gradient);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 133, 162, 0.4);
}

.contact-info-card {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: var(--soft-shadow);
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px dashed var(--pink-mid);
}

.contact-info-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid #f5f0e8;
}

.contact-info-card ul li:last-child {
    border-bottom: none;
}

.social-list {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--pink-gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.social-list a:hover {
    transform: translateY(-3px);
    color: var(--white);
}

/* ===== 页面标题区 ===== */
.page-header {
    background: var(--pink-gradient);
    color: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.95;
    font-size: 15px;
}

/* ===== 投票区 ===== */
.poll-section {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: var(--soft-shadow);
}

.poll-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.poll-item {
    margin-bottom: 14px;
}

.poll-bar-bg {
    background: #f5f0e8;
    border-radius: 12px;
    overflow: hidden;
    height: 38px;
    position: relative;
}

.poll-bar-fill {
    height: 100%;
    background: var(--pink-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding-left: 14px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: width 0.6s ease;
}

.poll-bar-pct {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 700;
}

/* ===== 页脚 ===== */
.site-footer {
    background: #2a1f25;
    color: #d9c5cc;
    padding: 50px 24px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-col h4 {
    color: var(--pink-mid);
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 700;
}

.footer-col p,
.footer-col li {
    font-size: 13px;
    margin-bottom: 8px;
    color: #b9a3aa;
}

.footer-col a {
    color: #b9a3aa;
}

.footer-col a:hover {
    color: var(--pink-main);
}

.footer-logo {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 24px;
    color: var(--pink-main);
    margin-bottom: 12px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #4a3540;
    text-align: center;
    font-size: 13px;
    color: #8a7077;
}

/* ===== 响应式调整 ===== */
@media (max-width: 768px) {
    .nav-container {
        padding: 12px 16px;
    }
    .nav-search {
        display: none;
    }
    .nav-menu {
        width: 100%;
        justify-content: center;
        gap: 4px;
    }
    .nav-menu a {
        padding: 6px 10px;
        font-size: 13px;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-banner {
        padding: 30px 20px;
    }
    .main-container {
        padding: 20px 14px;
    }
    .ranking-item {
        padding: 14px 0;
    }
}
