/* ============================================
   动漫次元站 - 主样式表
   CSS/ID前缀: ani-
   配色方案: #00BFFF / #FFD700 / #FF69B4 / #333 / #1E90FF
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700;900&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Microsoft YaHei', sans-serif;
    color: #333333;
    background-color: #f0f8ff;
    line-height: 1.8;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: #1E90FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00BFFF;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

ul, ol {
    list-style: none;
}

/* ---- Jammer Block (Hidden) ---- */
.jammer-block {
    display: none !important;
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ---- Container ---- */
.ani-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .ani-container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .ani-container {
        padding: 0 60px;
    }
}

/* ============================================
   Navigation Bar - 导航栏
   ============================================ */
#ani-header {
    width: 100%;
    background: rgba(240, 248, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(0, 191, 255, 0.2);
    z-index: 100;
    /* 禁止 sticky/fixed */
    position: relative;
}

.ani-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 20px;
}

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

.ani-logo img {
    height: 48px;
    width: auto;
}

.ani-logo-text {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00BFFF, #FF69B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Nav */
.ani-nav-links {
    display: none;
    gap: 8px;
}

@media (min-width: 1024px) {
    .ani-nav-links {
        display: flex;
    }
}

.ani-nav-links a {
    position: relative;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ani-nav-links a::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
    transition: transform 0.3s ease;
}

.ani-nav-links a:hover {
    color: #00BFFF;
    background: rgba(0, 191, 255, 0.08);
    padding-left: 26px;
}

.ani-nav-links a:hover::before {
    transform: translateY(-50%) scale(1);
}

/* Hamburger Menu */
.ani-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

@media (min-width: 1024px) {
    .ani-hamburger {
        display: none;
    }
}

.ani-hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.ani-hamburger.ani-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.ani-hamburger.ani-active span:nth-child(2) {
    opacity: 0;
}

.ani-hamburger.ani-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Sidebar */
.ani-mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: rgba(240, 248, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 150;
    padding: 80px 30px 30px;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.ani-mobile-nav.ani-open {
    right: 0;
}

.ani-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 4px;
    font-size: 1rem;
    color: #333;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ani-mobile-nav a:hover,
.ani-mobile-nav a.ani-active-link {
    background: rgba(0, 191, 255, 0.1);
    color: #00BFFF;
}

.ani-mobile-nav .ani-nav-icon {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.ani-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 140;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ani-overlay.ani-visible {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Hero Banner - 幻彩入口
   ============================================ */
#ani-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628, #1a0a3e, #0d2137);
}

.ani-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: opacity 1s ease;
}

.ani-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ani-hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 191, 255, 0.4);
    animation: ani-float 6s ease-in-out infinite;
}

@keyframes ani-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.8; }
}

.ani-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
}

.ani-hero-logo {
    max-width: 320px;
    margin: 0 auto 24px;
    filter: drop-shadow(0 4px 20px rgba(0, 191, 255, 0.5));
}

.ani-hero-slogan {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 191, 255, 0.6);
    margin-bottom: 16px;
}

.ani-hero-sub {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
}

.ani-hero-cta {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #00BFFF, #FF69B4);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.4);
    text-decoration: none;
}

.ani-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.6);
    color: #fff;
}

/* ============================================
   Section Common Styles
   ============================================ */
.ani-section {
    padding: 60px 0;
}

.ani-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 12px;
    position: relative;
}

.ani-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00BFFF, #FF69B4);
    margin: 12px auto 0;
    border-radius: 2px;
}

.ani-section-desc {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Weekly New Releases - 每周新番
   ============================================ */
.ani-weekly-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.ani-weekly-tab {
    padding: 8px 20px;
    background: rgba(0, 191, 255, 0.08);
    border: 2px solid transparent;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

.ani-weekly-tab:hover,
.ani-weekly-tab.ani-tab-active {
    background: rgba(0, 191, 255, 0.15);
    border-color: #00BFFF;
    color: #00BFFF;
}

.ani-weekly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

@media (min-width: 768px) {
    .ani-weekly-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* ============================================
   Card Styles - 卡片
   ============================================ */
.ani-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 191, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.ani-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 191, 255, 0.2);
    border-color: #00BFFF;
}

.ani-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.ani-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ani-card:hover .ani-card-img img {
    transform: scale(1.08);
}

.ani-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF69B4, #FFD700);
    color: #fff;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.ani-card-info {
    padding: 14px;
}

.ani-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ani-card-meta {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ani-card-ep {
    color: #00BFFF;
    font-weight: 500;
}

.ani-card-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================
   Characters Wall - 人气角色墙
   ============================================ */
.ani-chars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

@media (min-width: 768px) {
    .ani-chars-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

.ani-char-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.ani-char-item:hover {
    transform: translateY(-6px);
}

.ani-char-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    border: 3px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: border-color 0.3s ease;
}

.ani-char-item:hover .ani-char-avatar {
    border-color: #FF69B4;
}

.ani-char-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
}

.ani-char-anime {
    font-size: 0.78rem;
    color: #888;
}

/* ============================================
   Binge-Watching - 补番推荐
   ============================================ */
.ani-binge-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.ani-binge-tag {
    padding: 6px 18px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ani-binge-tag-hot { background: rgba(255, 69, 0, 0.1); color: #ff4500; border: 1px solid rgba(255, 69, 0, 0.3); }
.ani-binge-tag-cry { background: rgba(30, 144, 255, 0.1); color: #1E90FF; border: 1px solid rgba(30, 144, 255, 0.3); }
.ani-binge-tag-brain { background: rgba(148, 0, 211, 0.1); color: #9400D3; border: 1px solid rgba(148, 0, 211, 0.3); }
.ani-binge-tag-heal { background: rgba(0, 191, 255, 0.1); color: #00BFFF; border: 1px solid rgba(0, 191, 255, 0.3); }

.ani-binge-tag:hover {
    transform: scale(1.05);
}

.ani-binge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* ============================================
   News Express - 动漫资讯速递
   ============================================ */
.ani-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .ani-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ani-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ani-news-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 191, 255, 0.1);
    transition: all 0.3s ease;
}

.ani-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.15);
}

.ani-news-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.ani-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.ani-news-body {
    padding: 16px;
}

.ani-news-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 105, 180, 0.1);
    color: #FF69B4;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 8px;
}

.ani-news-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ani-news-excerpt {
    font-size: 0.85rem;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.ani-news-date {
    font-size: 0.78rem;
    color: #aaa;
}

/* ============================================
   Moonlight Theater - 月光剧场
   ============================================ */
#ani-moonlight {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0520, #1a0a3e, #0d0825);
}

.ani-moonlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.ani-moonlight-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ani-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: ani-twinkle 3s ease-in-out infinite;
}

@keyframes ani-twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.ani-moonlight-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 20px;
}

.ani-moon-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 0 80px rgba(255, 215, 0, 0.2);
    animation: ani-glow 4s ease-in-out infinite;
}

@keyframes ani-glow {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 0 80px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 0 60px rgba(255, 215, 0, 0.7), 0 0 120px rgba(255, 215, 0, 0.3); }
}

.ani-moonlight-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #FFD700;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.ani-moonlight-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

.ani-moonlight-btn {
    display: inline-block;
    padding: 12px 36px;
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ani-moonlight-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

/* ============================================
   Music Chart - 主题音乐榜
   ============================================ */
.ani-music-list {
    max-width: 800px;
    margin: 0 auto;
}

.ani-music-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.ani-music-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 191, 255, 0.2);
    transform: translateX(4px);
}

.ani-music-rank {
    font-size: 1.4rem;
    font-weight: 900;
    color: #ccc;
    min-width: 36px;
    text-align: center;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.ani-music-item:nth-child(1) .ani-music-rank { color: #FFD700; }
.ani-music-item:nth-child(2) .ani-music-rank { color: #C0C0C0; }
.ani-music-item:nth-child(3) .ani-music-rank { color: #CD7F32; }

.ani-music-cover {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.ani-music-info {
    flex: 1;
    min-width: 0;
}

.ani-music-name {
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ani-music-artist {
    font-size: 0.8rem;
    color: #888;
}

.ani-music-type {
    padding: 3px 10px;
    background: rgba(0, 191, 255, 0.1);
    color: #00BFFF;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 8px;
    flex-shrink: 0;
}

/* ============================================
   Accreditation - 认证信息
   ============================================ */
#ani-accreditation {
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(0, 191, 255, 0.1);
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
}

.ani-accred-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.ani-accred-logo {
    height: 60px;
    width: auto;
}

.ani-accred-text {
    font-size: 0.88rem;
    color: #666;
    max-width: 500px;
}

/* ============================================
   Friend Links - 友情链接
   ============================================ */
.ani-friends-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.ani-friend-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.1);
    transition: all 0.3s ease;
}

.ani-friend-link:hover {
    border-color: #00BFFF;
    transform: translateY(-2px);
}

.ani-friend-link img {
    height: 28px;
    width: auto;
}

.ani-friend-link span {
    font-size: 0.85rem;
    color: #555;
}

/* ============================================
   Footer - 页脚
   ============================================ */
#ani-footer {
    background: linear-gradient(180deg, #1a1a2e, #16213e);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 0;
}

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

@media (min-width: 768px) {
    .ani-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ani-footer-col h4 {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.ani-footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 0;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.ani-footer-col a:hover {
    color: #00BFFF;
}

.ani-social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.ani-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.ani-social-links a:hover {
    background: rgba(0, 191, 255, 0.3);
    transform: translateY(-3px);
}

.ani-social-links img {
    width: 22px;
    height: 22px;
}

.ani-footer-email {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.ani-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.ani-footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
    line-height: 1.6;
}

.ani-footer-accred {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Inner Page Styles - 内页
   ============================================ */
.ani-page-banner {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628, #1a0a3e);
}

@media (min-width: 768px) {
    .ani-page-banner {
        height: 360px;
    }
}

.ani-page-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.ani-page-banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
}

.ani-page-banner h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 191, 255, 0.5);
    margin-bottom: 10px;
}

.ani-page-banner p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.ani-breadcrumb {
    padding: 16px 0;
    font-size: 0.85rem;
    color: #888;
}

.ani-breadcrumb a {
    color: #1E90FF;
}

.ani-breadcrumb span {
    margin: 0 8px;
    color: #ccc;
}

/* Inner Page Content */
.ani-page-content {
    padding: 40px 0 60px;
}

.ani-article {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 191, 255, 0.1);
}

@media (max-width: 767px) {
    .ani-article {
        padding: 20px 16px;
        border-radius: 12px;
    }
}

.ani-article h2 {
    font-size: 1.4rem;
    margin: 28px 0 14px;
    color: #00BFFF;
    border-left: 4px solid #FFD700;
    padding-left: 12px;
}

.ani-article h3 {
    font-size: 1.15rem;
    margin: 20px 0 10px;
    color: #333;
}

.ani-article p {
    margin-bottom: 16px;
    text-align: justify;
}

.ani-article img {
    border-radius: 12px;
    margin: 20px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   APP Download Page - APP下载页
   ============================================ */
#ani-app-page {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, #f8e8f0, #e8f0ff, #f0f8ff);
    overflow: hidden;
}

.ani-sakura {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.ani-sakura-petal {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255, 183, 197, 0.7);
    border-radius: 50% 0 50% 50%;
    animation: ani-sakura-fall linear infinite;
}

@keyframes ani-sakura-fall {
    0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 0.3; }
}

.ani-app-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 60px 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .ani-app-content {
        flex-direction: row;
        text-align: left;
        gap: 60px;
    }
}

.ani-app-info h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    background: linear-gradient(135deg, #FF69B4, #00BFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.ani-app-info .ani-app-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 32px;
}

.ani-app-downloads {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .ani-app-downloads {
        justify-content: flex-start;
    }
}

.ani-app-dl-item {
    text-align: center;
}

.ani-app-dl-item img {
    width: 140px;
    height: 140px;
    margin-bottom: 10px;
    border-radius: 12px;
    border: 2px solid rgba(0, 191, 255, 0.2);
}

.ani-app-dl-btn {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #00BFFF, #1E90FF);
    color: #fff;
    font-weight: 700;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.ani-app-dl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
    color: #fff;
}

.ani-app-mockup {
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Ura-Sekai (里世界) Styles
   ============================================ */
.ani-ura-body {
    background: linear-gradient(180deg, #0a0520, #1a0a3e, #0d0825);
    color: rgba(255, 255, 255, 0.8);
    min-height: 100vh;
}

.ani-ura-body a {
    color: #FFD700;
}

.ani-ura-body a:hover {
    color: #FF69B4;
}

.ani-ura-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.ani-ura-warning-box {
    max-width: 480px;
    background: linear-gradient(180deg, #1a0a3e, #0d0825);
    border: 2px solid #FFD700;
    border-radius: 20px;
    padding: 40px 30px;
}

.ani-ura-warning h2 {
    color: #FFD700;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.ani-ura-warning p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.8;
}

.ani-ura-btn-enter {
    display: inline-block;
    padding: 12px 36px;
    background: linear-gradient(135deg, #FFD700, #FF69B4);
    color: #1a0a3e;
    font-weight: 700;
    border-radius: 25px;
    margin: 0 8px;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.ani-ura-btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.ani-ura-btn-leave {
    display: inline-block;
    padding: 12px 36px;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ani-ura-btn-leave:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.8);
}

.ani-ura-nav {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.ani-ura-nav-item {
    display: block;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.ani-ura-nav-item:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: #FFD700;
    transform: translateY(-4px);
}

.ani-ura-nav-item h3 {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.ani-ura-nav-item p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Ranking Page - 热门排行
   ============================================ */
.ani-ranking-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.ani-ranking-table tr {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ani-ranking-table tr:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
}

.ani-ranking-table td {
    padding: 12px 16px;
    vertical-align: middle;
}

.ani-ranking-table td:first-child {
    border-radius: 12px 0 0 12px;
    font-weight: 900;
    font-size: 1.2rem;
    text-align: center;
    width: 50px;
}

.ani-ranking-table td:last-child {
    border-radius: 0 12px 12px 0;
}

.ani-rank-1 td:first-child { color: #FFD700; }
.ani-rank-2 td:first-child { color: #C0C0C0; }
.ani-rank-3 td:first-child { color: #CD7F32; }

.ani-ranking-poster {
    width: 50px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.ani-ranking-info {
    flex: 1;
}

.ani-ranking-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.ani-ranking-genre {
    font-size: 0.78rem;
    color: #888;
}

.ani-ranking-score {
    font-size: 1.1rem;
    font-weight: 900;
    color: #FFD700;
}

/* ============================================
   Form Styles - 表单
   ============================================ */
.ani-form {
    max-width: 600px;
    margin: 0 auto;
}

.ani-form-group {
    margin-bottom: 20px;
}

.ani-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.ani-form-group input,
.ani-form-group textarea,
.ani-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 191, 255, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease;
    outline: none;
}

.ani-form-group input:focus,
.ani-form-group textarea:focus {
    border-color: #00BFFF;
}

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

.ani-form-submit {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #00BFFF, #FF69B4);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ani-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.4);
}

/* ============================================
   Utilities
   ============================================ */
.ani-text-center { text-align: center; }
.ani-mt-20 { margin-top: 20px; }
.ani-mb-20 { margin-bottom: 20px; }
.ani-mt-40 { margin-top: 40px; }
.ani-mb-40 { margin-bottom: 40px; }

/* Loading Animation */
.ani-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 40px;
}

.ani-loader-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: ani-bounce 1.4s ease-in-out infinite;
}

.ani-loader-dot:nth-child(1) { background: #00BFFF; animation-delay: 0s; }
.ani-loader-dot:nth-child(2) { background: #FFD700; animation-delay: 0.2s; }
.ani-loader-dot:nth-child(3) { background: #FF69B4; animation-delay: 0.4s; }

@keyframes ani-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f8ff;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00BFFF, #FF69B4);
    border-radius: 4px;
}

/* Selection */
::selection {
    background: rgba(0, 191, 255, 0.3);
    color: #333;
}

/* ============================================
   Responsive Breakpoints
   360px / 768px / 1024px / 1440px
   ============================================ */
@media (max-width: 360px) {
    html { font-size: 14px; }
    .ani-hero-slogan { font-size: 1.4rem; }
    .ani-card-info { padding: 10px; }
}

@media (min-width: 361px) and (max-width: 767px) {
    .ani-weekly-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ani-chars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .ani-weekly-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1440px) {
    .ani-container {
        max-width: 1400px;
    }
}
