/* 变量定义 */
:root { --primary-color: #ff6b81; --secondary-color: #ff4757; --light-card: #ffffff; --light-background: #f8f9fa; --medium-gray: #e9ecef; --dark-text: #333; --light-text: #777; --medium-text: #495057; --light-gray: #6c757d; --trend-up: #23c8aa; --trend-down: #ff7777; --rank-1: #ffbb3d; --rank-2: #a9b2d9; --rank-3: #e0965a; --border-radius: 14px; --box-shadow: 0 5px 20px rgba(0,0,0,0.08); --box-shadow-light: 0 3px 10px rgba(0,0,0,0.05); --transition: all 0.3s ease; }

/* 基础样式与通用设置 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI','Microsoft YaHei', sans-serif; background: var(--light-background); color: var(--dark-text); min-height: 100vh; overflow-x: hidden; padding-bottom: 10px; line-height: 1.6; font-size: 16px; }
a { text-decoration: none; color: inherit; }
img.lazyload { opacity: 0; transition: opacity 0.5s ease; }
img.lazyload.loaded { opacity: 1; }
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }

/* 导航栏样式 */
header.navbar { background: linear-gradient(135deg, #ff6b81, #ff4757); padding: 0; box-shadow: var(--box-shadow); position: sticky; top: 0; z-index: 1000; }
.navbar-container { display: flex; justify-content: space-between; align-items: center; max-width: 1350px; margin: 0 auto; padding: 0 25px; height: 70px; }
.logo { color: white; font-size: 1.7rem; font-weight: 800; display: flex; align-items: center; gap: 12px; }
.logo i { font-size: 1.8rem; animation: pulse 2s infinite; }
nav ul { display: flex; list-style: none; gap: 1.8rem; }
nav a { color: white; font-weight: 700; transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1); position: relative; padding: 8px 0; font-size: 1.05rem; display: flex; align-items: center; gap: 6px; }
nav a:hover { color: #f0f0f0; transform: translateY(-3px); }
nav a::after { content: ''; position: absolute; width: 0; height: 3px; bottom: 0; left: 0; background-color: white; transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1); border-radius: 3px; }
nav a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 15px; }
.menu-toggle { display: none; flex-direction: column; cursor: pointer; width: 36px; height: 36px; justify-content: center; align-items: center; gap: 5px; z-index: 1000; }
.menu-toggle span { width: 26px; height: 3px; background-color: white; margin: 2px 0; transition: all 0.4s cubic-bezier(0.25,0.8,0.25,0.8); border-radius: 3px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px,-7px); }

/* 搜索相关样式 */
.search-toggle { color: white; font-size: 1.4rem; cursor: pointer; transition: transform 0.3s; }
.search-toggle:hover { transform: scale(1.1); }
.search-container { display: none; position: absolute; top: 70px; left: 0; right: 0; background: white; padding: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); z-index: 999; }
.search-container.active { display: block; animation: fadeIn 0.3s ease; }
.search-box { position: relative; max-width: 800px; margin: 0 auto; }
#search-input { width: 100%; padding: 12px 50px 12px 20px; border: 1px solid #e0e0e0; border-radius: 40px; font-size: 1.05rem; outline: none; transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1); background: rgba(255,255,255,0.9); color: var(--dark-text); box-shadow: var(--box-shadow-light); }
#search-input:focus { background: white; box-shadow: var(--box-shadow); }
#search-input::placeholder { color: rgba(0,0,0,0.4); }
#search-div { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; padding: 0; outline: none; color: var(--primary-color); font-size: 1.2rem; transition: transform 0.3s; }
#search-div:hover { transform: translateY(-50%) scale(1.12); }

/* 用户菜单样式 */
.user-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: transform 0.3s; }
.user-avatar:hover { transform: scale(1.05); }
.user-menu-container { position: relative; display: inline-block; }
.user-dropdown { position: absolute; right: 0; top: 100%; margin-top: 8px; background: white; border-radius: var(--border-radius); box-shadow: var(--box-shadow); width: 200px; overflow: hidden; transform-origin: top right; transform: scale(0.9); opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1000; }
.user-dropdown.active { transform: scale(1); opacity: 1; visibility: visible; }
.user-dropdown::before { content: ''; position: absolute; top: -10px; right: 15px; border-width: 0 10px 10px 10px; border-style: solid; border-color: transparent transparent white transparent; }
.dropdown-item { padding: 12px 15px; display: flex; align-items: center; gap: 10px; color: var(--dark-text); transition: background 0.3s; }
.dropdown-item:hover { background: #f1f3f5; }
.dropdown-divider { height: 1px; background: #e9ecef; margin: 5px 0; }

/* 主内容区基础样式 */
main { max-width: 1350px; margin: 15px auto; padding: 0 15px; }
.content-wrapper { display: flex; gap: 20px; margin-bottom: 25px; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.section-title { font-size: 1.6rem; color: var(--primary-color); font-weight: 700; }
.view-all { color: var(--primary-color); font-weight: 600; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.view-all:hover { color: var(--secondary-color); transform: translateX(3px); }

/* 轮播图样式 */
.carousel-section { flex: 1; background: white; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--box-shadow); position: relative; height: 320px; background-size: cover; background-position: center; transition: background-image 0.5s ease; }
.slides-container { position: relative; height: 100%; overflow: hidden; touch-action: pan-y; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.6s ease; background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 25px; color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.slide.active { opacity: 1; z-index: 2; }
.slide-content { max-width: 600px; background: rgba(0,0,0,0.5); padding: 20px; border-radius: var(--border-radius); }
.slide-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
.slide-description { font-size: 1.05rem; margin-bottom: 20px; line-height: 1.6; }
.slide-div { background: var(--primary-color); color: white; border: none; padding: 10px 25px; border-radius: 30px; font-size: 1.05rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.slide-div:hover { background: var(--secondary-color); transform: translateY(-3px); }
.carousel-nav { position: absolute; bottom: 15px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 5; }
.nav-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition); position: relative; }
.nav-dot::after { content: ''; position: absolute; top: -8px; left: -8px; right: -8px; bottom: -8px; }

/* 问答区样式 */
.qa-section { flex: 1; background: white; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--box-shadow); display: flex; flex-direction: column; height: 320px; }
.tabs-container { display: flex; background: #f1f3f5; border-radius: 12px; margin: 8px; padding: 5px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.tabs-container::-webkit-scrollbar { display: none; }
.tabs-wrapper { display: flex; min-width: max-content; }
.tab-item { text-align: center; padding: 10px 16px; cursor: pointer; font-weight: 700; font-size: 0.95rem; color: var(--medium-text); position: relative; transition: all 0.3s ease; border-radius: 8px; margin: 0 3px; flex-shrink: 0; white-space: nowrap; }
.tab-item:hover { background: rgba(0,0,0,0.05); }
.tab-item.active { color: var(--primary-color); background: rgba(255,107,129,0.15); box-shadow: 0 6px 20px -4px rgba(255,107,129,0.4); }
.tab-item i { font-size: 1.05rem; margin-right: 6px; }
.tab-content { padding: 8px; flex: 1; overflow-y: auto; }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.4s ease; }
.question-item { background: #ffffff; border-radius: var(--border-radius); padding: 7px; margin-bottom: 8px; box-shadow: var(--box-shadow-light); border-left: 3px solid rgba(255,107,129,0.2); transition: var(--transition); cursor: pointer; }
.question-item:hover { transform: translateY(-3px); box-shadow: var(--box-shadow); border-left-color: var(--primary-color); }
.question-top-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.question-title { font-size: 0.95rem; font-weight: 600; color: var(--dark-text); flex: 1; }
.reward { background: linear-gradient(135deg, #ffd166 0%, #f4a261 100%); color: #333; padding: 4px 10px; border-radius: 18px; font-size: 12px; font-weight: 600; min-width: 80px; text-align: center; }
.reward.solved { background: rgba(35,200,170,0.15); color: var(--trend-up); border-color: rgba(35,200,170,0.3); }
.question-bottom-row { display: flex; justify-content: space-between; align-items: center; color: var(--light-gray); font-size: 0.9rem; }
.question-meta { display: flex; align-items: center; gap: 12px; }
.question-user { display: flex; align-items: center; gap: 6px; }
.media-footer img, .user-avatar-small { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.question-answers { display: flex; align-items: center; gap: 5px; }
.question-date { font-size: 0.85rem; }

/* 媒体内容区样式 */
.multimedia-section { background: white; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--box-shadow); margin-bottom: 15px; padding: 10px; }
.tabs-container-media { display: flex; background: #f1f3f5; border-radius: 12px; margin-bottom: 20px; padding: 8px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.tabs-container-media::-webkit-scrollbar { display: none; }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 10px; }
.media-card { background: white; border-radius: var(--border-radius); overflow: hidden; transition: var(--transition); box-shadow: var(--box-shadow-light); border: 1px solid #e9ecef; }
.media-card:hover { transform: translateY(-5px); box-shadow: var(--box-shadow); }
.media-thumbnail { height: 160px; width: 100%; position: relative; overflow: hidden; background-color: #f1f3f5; }
.media-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, opacity 0.3s ease; opacity: 0; }
.media-thumbnail img.loaded { opacity: 1; }
.media-thumbnail img.error { opacity: 1; background: #f1f3f5; }
.media-card:hover .media-thumbnail img { transform: scale(1.05); }
.media-type { position: absolute; top: 12px; right: 12px; padding: 5px 10px; border-radius: 18px; font-weight: 600; font-size: 0.8rem; z-index: 2; }
.video-type { background: #ff6b81; color: white; }
.image-type { background: #4285f4; color: white; }
.audio-type { background: #23c8aa; color: white; }
.game-type { background: #797af9; color: white; }
.podcast-type { background: #ffb347; color: white; }
.media-content { padding: 12px; }
.media-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--dark-text); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.media-meta { display: flex; justify-content: space-between; color: var(--light-gray); font-size: 0.9rem; margin-top: 8px; }
.media-stats { display: flex; align-items: center; gap: 15px; }
.media-stats span { display: flex; align-items: center; gap: 5px; }
.media-footer { padding: 10px 12px; display: flex; align-items: center; gap: 12px; background: #f9fafb; border-top: 1px solid #f0f0f0; }
.creator-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid #f0f0f0; }
.creator-name { font-weight: 600; color: var(--dark-text); }
.creator-card { background: rgba(255,255,255,0.9); border-radius: 14px; padding: 14px; height: 100%; position: relative; overflow: hidden; border: 1px solid #e9ecef; transition: all 0.4s cubic-bezier(0.215,0.61,0.355,1); display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--box-shadow-light); z-index: 1; }
.creator-card:hover { transform: translateY(-8px); box-shadow: var(--box-shadow); border-color: #ddd; background: white; }
.featured-tag { position: absolute; top: 5px; right: 5px; width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #ffc107, #ff9800); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.9rem; box-shadow: 0 4px 10px rgba(255,193,7,0.3); }
.card-header { display: flex; align-items: flex-start; }
.avatar { width: 55px; height: 55px; border-radius: 50%; border: 2px solid #e9ecef; background: #f8f9fa; margin-right: 10px; overflow: hidden; flex-shrink: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.3s ease; }
.avatar img.loaded { opacity: 1; }
.avatar img.error { opacity: 1; background: #f1f3f5; }
.creator-info { flex-grow: 1; }
.name-tag-container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.creator-tag { font-size: 0.55rem; background: linear-gradient(to right, #4285f4, #1a73e8); color: white; padding: 3px 10px; border-radius: 30px; font-weight: 600; }
.creator-description { color: var(--medium-text); font-size: 0.8rem; line-height: 1.6; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; text-overflow: ellipsis; text-align: left; }
.card-footer { display: flex; justify-content: space-between; margin-top: 1px; font-size: 0.88rem; }
.post-date { color: var(--light-gray); display: flex; align-items: center; gap: 6px; }
.fans-count { color: var(--trend-up); font-weight: 600; display: flex; align-items: center; gap: 6px; }

/* 排名区样式 */
.ranking-section { background: white; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--box-shadow); padding: 10px; margin-bottom: 15px; }
.ranking-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.ranking-card { background: white; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--box-shadow-light); border: 1px solid #e9ecef; transition: var(--transition); height: 480px; display: flex; flex-direction: column; }
.ranking-card:hover { transform: translateY(-5px); box-shadow: var(--box-shadow); }
.ranking-header { padding: 15px; color: white; min-height: 70px; }
.ranking-1 .ranking-header { background: linear-gradient(135deg, #ff5e8d, #ff3d7a); }
.ranking-2 .ranking-header { background: linear-gradient(135deg, #797af9, #5d60ef); }
.ranking-3 .ranking-header { background: linear-gradient(135deg, #00d1d2, #00a8a9); }
.ranking-4 .ranking-header { background: linear-gradient(135deg, #ffb347, #ff9a3d); }
.ranking-title { font-size: 1.15rem; font-weight: 700; }
.ranking-items { padding: 10px; overflow-y: auto; flex: 1; }
.ranking-item { display: flex; align-items: center; padding: 10px; margin-bottom: 12px; border-radius: 12px; background: #f8f9fa; transition: all 0.3s; }
.ranking-item:hover { background: #e9ecef; }
.rank-badge { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; background: rgba(0,0,0,0.05); color: var(--dark-text); margin-right: 8px; flex-shrink: 0; }
.rank-1 .rank-badge { background: var(--rank-1); color: #1a2a4a; }
.rank-2 .rank-badge { background: var(--rank-2); color: #1a2a4a; }
.rank-3 .rank-badge { background: var(--rank-3); color: #1a2a4a; }
.ranking-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; margin-right: 8px; border: 2px solid rgba(0,0,0,0.05); opacity: 0; transition: opacity 0.3s ease; }
.ranking-avatar.loaded { opacity: 1; }
.ranking-avatar.error { opacity: 1; background: #f1f3f5; }
.ranking-info { flex-grow: 1; }
.ranking-name { font-weight: 700; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 0.95rem; }
.ranking-stats { font-size: 0.8rem; color: var(--light-gray); display: flex; align-items: center; }
.trend { font-weight: 700; border-radius: 12px; text-align: center; margin-left: 6px; display: inline-block; padding: 2px 6px; font-size: 0.8rem; }
.trend.up { background: rgba(35,200,170,0.15); color: var(--trend-up); }
.trend.down { background: rgba(255,100,100,0.15); color: var(--trend-down); }
.view-all-btn { display: block; text-align: center; padding: 12px; background: #f8f9fa; color: #007bff; font-weight: 700; text-decoration: none; font-size: 0.95rem; transition: background 0.3s; border-top: 1px solid #e9ecef; }
.view-all-btn:hover { background: #e9ecef; }

/* 底部导航和指示器 */
footer { text-align: center; padding: 15px; color: var(--light-gray); font-size: 0.9rem; max-width: 1350px; width: 100%; margin: 15px auto 0; border-top: 1px solid #e9ecef; }
.scroll-indicator { position: fixed; top: 0; left: 0; width: 100%; height: 5px; background: rgba(255, 255, 255, 0.3); z-index: 1000; display: flex; justify-content: center; align-items: center; }
.indicator-bar { height: 100%; width: 0; background: linear-gradient(90deg, #ff8a00, #e52e71); }
.indicator-text { position: absolute; top: 8px; color: white; font-size: 0.8rem; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; opacity: 0; transition: opacity 0.3s ease; }
.bottom-nav { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); display: flex; justify-content: space-around; padding: 5px 0; box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); z-index: 1000; transform: translateY(0); transition: transform 0.3s ease; }
.nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 8px 15px; border-radius: 20px; cursor: pointer; color: #777; font-size: 0.8rem; transition: all 0.2s ease; }
.nav-item i { font-size: 1.4rem; margin-bottom: 5px; transition: color 0.2s ease; }
.nav-item.active { color: #1a2a6c; }
.nav-item.active i { color: #1a2a6c; }
.nav-item:hover { background-color: rgba(26, 42, 108, 0.1); }
.nav-item span { font-size: 0.9rem; font-weight: 500; }

/* 关键词链接样式 */
.keyword-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; padding: 15px; background: var(--light-background); border-radius: var(--border-radius); }
.keyword-item { padding: 6px 10px; background: white; border-radius: 12px; font-size: 0.9rem; color: var(--medium-text); border: 1px solid #e9ecef; transition: var(--transition); }
.keyword-item:hover { background: var(--primary-color); color: white; border-color: var(--primary-color); transform: translateY(-2px); }

/* 页脚基础样式 */
.four-line-footer { background-color: #f8f9fa; border-top: 1px solid #e9ecef; padding: 15px 0; margin-top: 10px; color: #6c757d; font-size: 14px; }
.footer-container { max-width: 1350px; margin: 0 auto; padding: 0 20px; }
.footer-line { width: 100%; padding: 8px 0; text-align: center; }
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; }
.footer-nav a { color: #6c757d; text-decoration: none; transition: color 0.3s ease; }
.footer-nav a:hover { color: #007bff; }
.footer-icp { font-size: 13px; }
.footer-icp a { color: #6c757d; text-decoration: none; }
.footer-icp a:hover { color: #007bff; }
.footer-contact { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.footer-contact span { display: flex; align-items: center; }
.footer-contact i { margin-right: 6px; color: #007bff; width: 16px; }
.footer-copyright { font-size: 13px; color: #868e96; }

/* 滚动条样式 */
.ranking-items, .tab-content { scrollbar-width: thin; scrollbar-color: #d1d5db #f1f3f5; }
.ranking-items::-webkit-scrollbar, .tab-content::-webkit-scrollbar { width: 6px; height: 6px; }
.ranking-items::-webkit-scrollbar-track, .tab-content::-webkit-scrollbar-track { background: #f8f9fa; border-radius: 8px; }
.ranking-items::-webkit-scrollbar-thumb, .tab-content::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 8px; transition: background 0.3s ease; }
.ranking-items::-webkit-scrollbar-thumb:hover, .tab-content::-webkit-scrollbar-thumb:hover { background: #b4bcc8; }

/* 动画关键帧 */
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* 响应式样式 */
@media (max-width: 992px) { .navbar-container { padding: 0 18px; height: 65px; } nav ul { position: fixed; top: 65px; left: 0; background: linear-gradient(135deg, #ff6b81, #ff4757); width: 100%; height: 0; overflow: hidden; flex-direction: column; align-items: center; gap: 0; transition: all 0.5s ease; z-index: 900; padding-top: 0; } nav ul.active { height: auto; box-shadow: var(--box-shadow); padding: 20px 0 15px; } nav li { width: 100%; text-align: center; } nav a { display: block; padding: 15px; font-size: 1.1rem; justify-content: center; } .menu-toggle { display: flex; } .search-container { top: 65px; } .content-wrapper { flex-direction: column; } .carousel-section, .qa-section { height: auto; min-height: 280px; } .slide-title { font-size: 1.3rem; } .slide-description { font-size: 0.9rem; } .slide-div { font-size: 0.9rem; padding: 8px 18px; } .slide-content { padding: 15px; width: 90%; max-width: 90%; } .ranking-grid { grid-template-columns: 1fr; } body { font-size: 14px; } .logo { font-size: 1.5rem; } .logo i { font-size: 1.6rem; } .section-title { font-size: 1.4rem; } .question-title, .media-title { font-size: 0.95rem; } .creator-name { font-size: 0.9rem; } .ranking-title { font-size: 1.05rem; } .carousel-section { aspect-ratio: 16/9; } .carousel-nav { bottom: 20px; } .nav-dot { width: 12px; height: 12px; } }
@media (max-width: 768px) { .media-grid { grid-template-columns: repeat(2, 1fr); } .section-title { font-size: 1.3rem; } .carousel-section { min-height: 240px; } .slide-content { padding: 12px; } .slide-title { font-size: 1.1rem; } .slide-description { font-size: 0.85rem; margin-bottom: 12px; } .slide-div { font-size: 0.85rem; padding: 8px 16px; } .bottom-nav { display: flex; } .scroll-indicator { display: block; } h1 { font-size: 2rem; } .footer-line { padding: 6px 0; } .footer-nav, .footer-contact { gap: 12px; } .navbar-container, .search-container { display: none !important; } }
@media (min-width: 768px) and (max-width: 992px) { .ranking-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .section-title { font-size: 1.2rem; } .carousel-section { min-height: 200px; } .slide-content { padding: 10px; } .slide-title { font-size: 1rem; } .carousel-nav { bottom: 15px; } .nav-item { padding: 8px 10px; } .nav-item i { font-size: 1.2rem; } .nav-item span { font-size: 0.75rem; } }
@media (min-width: 769px) { .bottom-nav, .scroll-indicator { display: none !important; } }
