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

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    background:
        radial-gradient(circle at 25% 25%, #ff6b9d 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #c44569 0%, transparent 50%),
        linear-gradient(135deg, #ff9a9e 0%, #fecfef 25%, #fad0c4 50%, #ff9a9e 75%, #fecfef 100%);
    color: #333333;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { background-position: 0% 0%, 100% 100%, 0% 0%; }
    50% { background-position: 100% 100%, 0% 0%, 100% 100%; }
}

/* 复杂背景装饰层 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 182, 193, 0.2) 0%, transparent 60%),
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    pointer-events: none;
    z-index: -2;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(20px) translateY(-10px) rotate(1deg); }
    50% { transform: translateX(-10px) translateY(20px) rotate(-1deg); }
    75% { transform: translateX(10px) translateY(10px) rotate(0.5deg); }
}

/* 多层浮动装饰元素 */
body::after {
    content: '🌸 ⭐ 💎 🎀 🌟 ✨ 🦋 🌺 💫 🎊 🌙 🎭 🎪 🎨 🎯 🎲 🎮 🎵 🎶 🎤';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 18px;
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
    animation: complexFloat 25s infinite linear;
    white-space: pre;
    line-height: 80px;
    letter-spacing: 50px;
}

@keyframes complexFloat {
    0% { transform: translateY(100vh) rotate(0deg) scale(0.8); }
    50% { transform: translateY(50vh) rotate(180deg) scale(1.2); }
    100% { transform: translateY(-100px) rotate(360deg) scale(0.8); }
}

.container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0;
    background: transparent;
    position: relative;
    border-radius: 0;
}

/* 主内容区域 */
.main-content {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 250, 0.9) 100%),
        radial-gradient(circle at top right, rgba(255, 182, 193, 0.1), transparent);
    border-radius: 30px;
    padding: 50px;
    margin: 20px;
    box-shadow:
        0 25px 50px rgba(255, 182, 193, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 0 1px rgba(255, 182, 193, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        conic-gradient(from 0deg, #ff9a9e, #fecfef, #fad0c4, #ff6b9d, #ff9a9e);
    border-radius: 50%;
    z-index: -2;
    animation: rotateBackground 20s linear infinite;
    opacity: 0.1;
}

.main-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 182, 193, 0.3) 0%, transparent 50%);
    border-radius: 30px;
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

header {
    text-align: center;
    padding: 80px 50px;
    background:
        linear-gradient(135deg, rgba(255, 182, 193, 0.4), rgba(255, 192, 203, 0.6)),
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 40px;
    margin: 30px 20px 50px 20px;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(255, 182, 193, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* 复杂的装饰边框 */
header::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef, #fad0c4, #ff6b9d, #ff9a9e);
    border-radius: 43px;
    z-index: -1;
    animation: borderRotate 8s linear infinite;
}

/* 顶部装饰条 */
header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg,
        transparent,
        #ff9a9e 20%,
        #fecfef 40%,
        #fad0c4 60%,
        #ff6b9d 80%,
        transparent);
    border-radius: 40px 40px 0 0;
    animation: shimmerTop 3s ease-in-out infinite;
}

/* 浮动装饰元素 */
.header-decoration {
    position: absolute;
    font-size: 35px;
    opacity: 0.6;
    animation: floatDecoration 4s ease-in-out infinite;
}

.header-decoration:nth-child(1) {
    content: '👑';
    top: 20px;
    left: 30px;
    animation-delay: 0s;
}

.header-decoration:nth-child(2) {
    content: '🌟';
    top: 20px;
    right: 30px;
    animation-delay: 1s;
}

.header-decoration:nth-child(3) {
    content: '💎';
    bottom: 20px;
    left: 50px;
    animation-delay: 2s;
}

.header-decoration:nth-child(4) {
    content: '🎭';
    bottom: 20px;
    right: 50px;
    animation-delay: 3s;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shimmerTop {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

@keyframes floatDecoration {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-10px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(0) rotate(180deg) scale(1); }
    75% { transform: translateY(-5px) rotate(270deg) scale(1.05); }
}

h1 {
    font-size: 2.8em;
    background: linear-gradient(45deg, #ff6b9d, #c44569, #f8b500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(255, 182, 193, 0.3);
    position: relative;
}

h1::before {
    content: '👑';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-60%) scale(1.1); }
}

h2 {
    font-size: 1.8em;
    color: #2c2c2c;
    margin: 30px 0 20px 0;
    font-weight: 400;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.3em;
    color: #444444;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin: 60px 0;
    padding: 20px;
}

.nav-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 245, 0.95)),
        radial-gradient(circle at top left, rgba(255, 182, 193, 0.1), transparent);
    border: 3px solid transparent;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow:
        0 15px 35px rgba(255, 182, 193, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* 复杂的边框动画 */
.nav-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef, #fad0c4, #ff6b9d);
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 内部光效 */
.nav-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 0;
}

.nav-card:hover::before {
    opacity: 1;
    animation: borderPulse 2s ease-in-out infinite;
}

.nav-card:hover::after {
    width: 200px;
    height: 200px;
}

.nav-card:hover {
    transform: translateY(-12px) scale(1.05) rotateX(5deg);
    box-shadow:
        0 25px 50px rgba(255, 182, 193, 0.4),
        0 0 0 1px rgba(255, 182, 193, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* 卡片内容层级 */
.nav-card > * {
    position: relative;
    z-index: 1;
}

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

.nav-card a {
    text-decoration: none;
    color: #333333;
    font-size: 1.1em;
    font-weight: 500;
    display: block;
}

.nav-card a h3 {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3em;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
}

.nav-card a h3::before {
    content: '🎮';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    filter: hue-rotate(0deg);
    transition: filter 0.3s ease;
}

.nav-card:hover a h3::before {
    filter: hue-rotate(180deg);
}

.nav-card a p {
    color: #666666;
    font-size: 0.95em;
    font-weight: 400;
    margin: 0;
}

.nav-card:hover a {
    color: #1a1a1a;
}

.nav-card:hover a h3 {
    color: #000000;
}

.nav-card:hover a p {
    color: #333333;
}

.content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 250, 0.9));
    border-radius: 20px;
    padding: 50px;
    margin: 40px 0;
    border: 2px solid rgba(255, 182, 193, 0.2);
    box-shadow: 0 15px 35px rgba(255, 182, 193, 0.15);
    position: relative;
    backdrop-filter: blur(5px);
}

.content::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.back-nav {
    text-align: center;
    margin: 20px 0;
}

.back-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-size: 1em;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.back-btn::before {
    content: '← ';
    font-weight: bold;
}

.back-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.back-btn:hover::after {
    left: 100%;
}

.back-btn:hover {
    background: linear-gradient(135deg, #c44569, #ff6b9d);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 107, 157, 0.4);
}

.highlight {
    color: #1a1a1a;
    font-weight: 600;
}

.important {
    background: #fff5f5;
    border-left: 4px solid #e53e3e;
    padding: 20px;
    margin: 20px 0;
    border-radius: 6px;
    border: 1px solid #fed7d7;
}

.feature-box {
    background: linear-gradient(135deg, rgba(255, 248, 250, 0.9), rgba(255, 240, 245, 0.8));
    border: 2px solid rgba(255, 182, 193, 0.3);
    border-radius: 18px;
    padding: 35px;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 10px 25px rgba(255, 182, 193, 0.1);
    backdrop-filter: blur(5px);
}

.feature-box::before {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    opacity: 0.6;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.boss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.boss-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 248, 0.9));
    border: 2px solid rgba(255, 182, 193, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 182, 193, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.boss-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 182, 193, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.boss-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.boss-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(255, 182, 193, 0.25);
    border-color: rgba(255, 182, 193, 0.6);
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.pet-stats {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 20px;
    margin: 15px 0;
    font-family: "SF Mono", "Monaco", "Consolas", monospace;
    font-size: 0.9em;
    overflow-x: auto;
}

.price-table {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}

.warning {
    background: #fff8e1;
    border: 1px solid #ffcc02;
    border-left: 4px solid #ff9800;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .nav-grid {
        grid-template-columns: 1fr;
    }
    
    .content {
        padding: 20px;
    }
}

.video-container {
    text-align: center;
    margin: 30px 0 40px 0;
    padding: 0;
}

.video-container video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.video-container video:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.image-container {
    text-align: center;
    margin: 20px 0;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.image-container img:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.table-container {
    overflow-x: auto;
    margin: 20px 0;
}

.pet-stats-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pet-stats-table th {
    background: #f8f9fa;
    color: #333333;
    font-weight: 600;
    padding: 12px 8px;
    text-align: center;
    border-bottom: 2px solid #e9ecef;
    font-size: 0.95em;
}

.pet-stats-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9em;
}

.pet-stats-table tr:hover {
    background: #f8f9fa;
}

.pet-stats-table .highlight-row {
    background: #fff3cd;
    font-weight: 500;
}

.pet-stats-table .highlight-row:hover {
    background: #ffeaa7;
}

.boss-card img {
    transition: transform 0.3s ease;
}

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

.footer {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 192, 203, 0.3));
    border-radius: 20px;
    padding: 40px 30px;
    margin-top: 50px;
    text-align: center;
    border: 2px solid rgba(255, 182, 193, 0.3);
    position: relative;
    overflow: hidden;
    color: #666666;
    font-size: 1em;
}

.footer::before {
    content: '🌸 ✨ 🎮 ✨ 🌸';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    opacity: 0.6;
    animation: sparkleMove 3s ease-in-out infinite;
}

.footer p {
    margin: 10px 0;
    position: relative;
    z-index: 1;
}

.footer p:first-of-type {
    font-weight: 600;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1em;
}

@keyframes sparkleMove {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

/* 顶部装饰条样式 */
.top-decoration {
    position: relative;
    height: 60px;
    margin-bottom: 20px;
    overflow: hidden;
}

.decoration-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        #ff9a9e 20%,
        #fecfef 40%,
        #fad0c4 60%,
        #ff6b9d 80%,
        transparent);
    animation: lineFlow 4s ease-in-out infinite;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.icon-float {
    font-size: 24px;
    opacity: 0.7;
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-float:nth-child(1) { animation-delay: 0s; }
.icon-float:nth-child(2) { animation-delay: 0.6s; }
.icon-float:nth-child(3) { animation-delay: 1.2s; }
.icon-float:nth-child(4) { animation-delay: 1.8s; }
.icon-float:nth-child(5) { animation-delay: 2.4s; }

/* 标题容器样式 */
.title-container {
    position: relative;
    margin-bottom: 30px;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #ff9a9e, #fecfef, #fad0c4);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

.subtitle-container {
    margin: 30px 0;
}

.main-subtitle {
    font-size: 1.4em;
    color: #ff6b9d;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(255, 182, 193, 0.3);
    margin-bottom: 15px;
}

.secondary-subtitle {
    color: #c44569;
    font-size: 1.1em;
    font-style: italic;
    margin-bottom: 20px;
}

.header-icons {
    font-size: 28px;
    margin: 25px 0;
    animation: bounce 2s ease-in-out infinite;
}

/* 粒子效果 */
.header-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ff9a9e, transparent);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 1.6s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 3.2s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 4.8s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 6.4s;
}

@keyframes lineFlow {
    0%, 100% { transform: scaleX(1); opacity: 0.6; }
    50% { transform: scaleX(1.2); opacity: 1; }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

@keyframes underlineGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 154, 158, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 154, 158, 0.8); }
}

@keyframes particleFloat {
    0% { transform: translateY(100px) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* 内容区域样式 */
.content-section {
    margin: 60px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    background: linear-gradient(45deg, #ff6b9d, #c44569, #ff9a9e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.title-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.decoration-line-small {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff9a9e, #fecfef, #fad0c4);
    animation: lineShimmer 3s ease-in-out infinite;
}

.section-subtitle {
    color: #ff6b9d;
    font-size: 1.2em;
    font-weight: 500;
    margin-top: 15px;
}

/* 底部装饰区域 */
.bottom-decoration {
    position: relative;
    height: 80px;
    margin-top: 60px;
    overflow: hidden;
}

.decoration-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(90deg,
        rgba(255, 154, 158, 0.3),
        rgba(254, 207, 239, 0.4),
        rgba(250, 208, 196, 0.3));
    border-radius: 50px 50px 0 0;
    animation: waveFlow 4s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.float-element {
    font-size: 20px;
    opacity: 0.6;
    animation: elementFloat 4s ease-in-out infinite;
}

.float-element:nth-child(1) { animation-delay: 0s; }
.float-element:nth-child(2) { animation-delay: 1s; }
.float-element:nth-child(3) { animation-delay: 2s; }
.float-element:nth-child(4) { animation-delay: 3s; }

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
}

@keyframes lineShimmer {
    0%, 100% { transform: scaleX(1); opacity: 0.7; }
    50% { transform: scaleX(1.2); opacity: 1; }
}

@keyframes waveFlow {
    0%, 100% { transform: translateX(0) scaleY(1); }
    50% { transform: translateX(20px) scaleY(1.1); }
}

@keyframes elementFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* ===== 超级复杂高级布局样式 ===== */

/* 统计面板 */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    padding: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 250, 0.9) 100%);
    border-radius: 25px;
    border: 2px solid rgba(255, 182, 193, 0.2);
    box-shadow: 0 20px 40px rgba(255, 182, 193, 0.15);
    position: relative;
    overflow: hidden;
}

.stats-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.1), transparent);
    animation: dashboardSweep 3s ease-in-out infinite;
}

.stat-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 240, 245, 0.95) 100%);
    border: 2px solid rgba(255, 182, 193, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 182, 193, 0.5);
    box-shadow: 0 15px 30px rgba(255, 182, 193, 0.3);
}

.stat-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    animation: iconBounce 2s ease-in-out infinite;
}

.stat-number {
    font-size: 2.2em;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: #666;
    font-size: 0.9em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef, #fad0c4, #ff6b9d);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: glowRotate 4s linear infinite;
}

.stat-card:hover .stat-glow {
    opacity: 0.6;
}

/* 主要内容网格 */
.ultra-complex-layout {
    margin: 60px 0;
    position: relative;
}

.main-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    margin-top: 40px;
}

/* 主要区域 */
.primary-section {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* 信息面板 */
.info-panel {
    grid-column: 2;
    grid-row: 1;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 250, 0.9) 100%);
    border: 2px solid rgba(255, 182, 193, 0.2);
    border-radius: 25px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(255, 182, 193, 0.15);
    position: sticky;
    top: 20px;
    height: fit-content;
}

.panel-header-complex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 182, 193, 0.1);
}

.panel-header-complex h4 {
    font-size: 1.4em;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 600;
}

.panel-controls {
    display: flex;
    gap: 8px;
}

.control-btn {
    background: rgba(255, 182, 193, 0.1);
    border: 1px solid rgba(255, 182, 193, 0.3);
    border-radius: 12px;
    padding: 6px 12px;
    font-size: 0.8em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.control-btn.active,
.control-btn:hover {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* 数据可视化 */
.data-visualization {
    margin: 25px 0;
}

.chart-container {
    display: flex;
    justify-content: space-between;
    align-items: end;
    height: 120px;
    padding: 20px;
    background: rgba(255, 182, 193, 0.05);
    border-radius: 15px;
    gap: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #ff6b9d, #fecfef);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: chartGrow 1s ease-out;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

.chart-bar:hover {
    transform: scaleY(1.1);
    filter: brightness(1.2);
}

.chart-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7em;
    color: #666;
    font-weight: 500;
}

.chart-value {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8em;
    color: #ff6b9d;
    font-weight: 600;
    background: white;
    padding: 2px 6px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 182, 193, 0.2);
}

/* 热门话题 */
.trending-topics {
    margin-top: 30px;
}

.trending-topics h5 {
    font-size: 1.2em;
    color: #ff6b9d;
    margin-bottom: 15px;
    font-weight: 600;
}

.topic-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 182, 193, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.topic-item:hover {
    background: rgba(255, 182, 193, 0.1);
    transform: translateX(5px);
}

.topic-rank {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8em;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.topic-text {
    flex: 1;
    font-weight: 500;
    color: #333;
}

.topic-heat {
    font-size: 0.9em;
    color: #ff6b9d;
    font-weight: 600;
}

/* 右侧边栏增强 */
.sidebar-section-enhanced {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* 底部全宽区域 */
.bottom-section-ultra {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 50px;
}

/* 游戏核心区域 */
.core-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 英雄卡片 - 大型主要卡片 */
.hero-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 240, 245, 0.95) 100%),
        radial-gradient(circle at top left, rgba(255, 182, 193, 0.15), transparent 70%);
    border: 3px solid transparent;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow:
        0 25px 50px rgba(255, 182, 193, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef, #fad0c4, #ff6b9d, #ff9a9e);
    border-radius: 33px;
    z-index: -1;
    animation: heroGlow 4s ease-in-out infinite;
}

.hero-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 35px 70px rgba(255, 182, 193, 0.4),
        0 0 0 1px rgba(255, 182, 193, 0.6);
}

/* 特色卡片行 */
.feature-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* 中等卡片 */
.medium-card {
    min-height: 200px;
}

/* 装备与战斗区域 */
.combat-section {
    background:
        linear-gradient(135deg, rgba(255, 248, 250, 0.9) 0%, rgba(255, 240, 245, 0.8) 100%);
    border: 2px solid rgba(255, 182, 193, 0.2);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(255, 182, 193, 0.15);
}

.section-title-bar {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.section-title-bar h4 {
    font-size: 1.8em;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 600;
}

.title-decoration-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, #ff9a9e, #fecfef, transparent);
    border-radius: 2px;
    animation: lineFlow 3s ease-in-out infinite;
}

/* 战斗网格 */
.combat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
}

.combat-card {
    min-height: 180px;
}

.wide-card {
    grid-column: 1 / -1;
    min-height: 200px;
}

/* 边栏面板 */
.economy-panel,
.activity-panel {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 250, 0.9) 100%);
    border: 2px solid rgba(255, 182, 193, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(255, 182, 193, 0.15);
    position: relative;
    overflow: hidden;
}

.panel-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.panel-header h4 {
    font-size: 1.5em;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 600;
}

.panel-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff9a9e, #fecfef);
    border-radius: 1px;
}

/* 边栏卡片 */
.sidebar-card {
    margin-bottom: 20px;
    min-height: 150px;
    padding: 25px 20px;
}

.sidebar-card.featured {
    border: 3px solid rgba(255, 182, 193, 0.4);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 240, 245, 0.95) 100%),
        radial-gradient(circle at center, rgba(255, 182, 193, 0.1), transparent);
}

/* 底部工具卡片 */
.utility-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.utility-card {
    min-height: 180px;
}

/* 卡片头部 */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
}

.card-header h3 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
}

/* 卡片徽章 */
.card-badge {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.card-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-card:hover .card-badge::before {
    left: 100%;
}

/* 特殊徽章颜色 */
.card-badge.special {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: #333;
}

.card-badge.combat {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.card-badge.boss {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.card-badge.economy {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.card-badge.shop {
    background: linear-gradient(135deg, #10b981, #059669);
}

.card-badge.vip {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.card-badge.pet {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.card-badge.event {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.card-badge.lucky {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.card-badge.warning {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.card-badge.rule {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.card-badge.download {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* 主要描述文本 */
.main-desc {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
}

/* 子项目列表 */
.sub-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.sub-item {
    background: rgba(255, 182, 193, 0.1);
    color: #666;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 500;
    border: 1px solid rgba(255, 182, 193, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sub-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.3), transparent);
    transition: left 0.4s ease;
}

.nav-card:hover .sub-item {
    background: rgba(255, 182, 193, 0.2);
    color: #444;
    border-color: rgba(255, 182, 193, 0.4);
    transform: translateY(-2px);
}

.nav-card:hover .sub-item::before {
    left: 100%;
}

/* 卡片发光效果 */
.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef, #fad0c4, #ff6b9d);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: glowRotate 4s linear infinite;
}

.nav-card:hover .card-glow {
    opacity: 0.6;
}

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

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .advanced-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sidebar-section {
        position: static;
        grid-row: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .bottom-section {
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .advanced-layout {
        margin: 30px 0;
    }

    .feature-cards-row {
        grid-template-columns: 1fr;
    }

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

    .utility-cards {
        grid-template-columns: 1fr;
    }

    .sidebar-section {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 30px 25px;
    }

    .combat-section {
        padding: 25px;
    }

    .economy-panel,
    .activity-panel {
        padding: 20px;
    }
}

/* ===== 新增复杂组件样式 ===== */

/* 快速导航面板 */
.quick-nav-panel {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 250, 0.9) 100%);
    border: 2px solid rgba(255, 182, 193, 0.2);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(255, 182, 193, 0.15);
    margin-bottom: 25px;
}

.nav-indicator {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff9a9e, #fecfef);
    border-radius: 2px;
    animation: indicatorPulse 2s ease-in-out infinite;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.quick-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 182, 193, 0.05);
    border: 1px solid rgba(255, 182, 193, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.quick-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.2), transparent);
    transition: left 0.5s ease;
}

.quick-nav-item:hover::before {
    left: 100%;
}

.quick-nav-item:hover {
    background: rgba(255, 182, 193, 0.1);
    border-color: rgba(255, 182, 193, 0.3);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 182, 193, 0.2);
}

.nav-icon {
    font-size: 1.2em;
    width: 30px;
    text-align: center;
}

.quick-nav-item span {
    flex: 1;
    font-size: 0.9em;
    font-weight: 500;
}

.nav-arrow {
    font-size: 1.1em;
    color: #ff6b9d;
    transition: transform 0.3s ease;
}

.quick-nav-item:hover .nav-arrow {
    transform: translateX(5px);
}

/* 活动横幅 */
.activity-banner {
    background:
        linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #ff9a9e 100%);
    border-radius: 25px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.3);
    margin-bottom: 40px;
}

.activity-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: bannerShimmer 4s ease-in-out infinite;
}

.banner-content {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 25px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banner-icon {
    font-size: 3em;
    animation: iconSpin 3s ease-in-out infinite;
}

.banner-text h4 {
    color: white;
    font-size: 1.5em;
    margin: 0 0 8px 0;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.banner-countdown {
    display: flex;
    gap: 15px;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-number {
    display: block;
    font-size: 1.8em;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: numberFlip 1s ease-in-out infinite;
}

.countdown-label {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-cta {
    background: white;
    color: #ff6b9d;
    border: none;
    border-radius: 15px;
    padding: 15px 25px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.2), transparent);
    transition: left 0.5s ease;
}

.banner-cta:hover::before {
    left: 100%;
}

.banner-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.particle-item {
    position: absolute;
    font-size: 1.5em;
    opacity: 0.7;
    animation: particleDance 6s ease-in-out infinite;
}

.particle-item:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-item:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 1.5s;
}

.particle-item:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 3s;
}

.particle-item:nth-child(4) {
    bottom: 20%;
    right: 25%;
    animation-delay: 4.5s;
}

/* 动画定义 */
@keyframes dashboardSweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes chartGrow {
    0% { height: 0; }
    100% { height: var(--height, 100%); }
}

@keyframes indicatorPulse {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

@keyframes bannerShimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

@keyframes numberFlip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

@keyframes particleDance {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.7; }
    25% { transform: translateY(-20px) rotate(90deg) scale(1.2); opacity: 1; }
    50% { transform: translateY(0) rotate(180deg) scale(1); opacity: 0.7; }
    75% { transform: translateY(-10px) rotate(270deg) scale(1.1); opacity: 1; }
}

/* ===== 炫酷子页面样式 ===== */

/* 页面英雄区域 */
.page-hero {
    position: relative;
    background:
        linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #ff9a9e 100%);
    border-radius: 30px;
    padding: 60px 40px;
    margin: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.3);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: heroShimmer 6s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    font-size: 2em;
    opacity: 0.3;
    animation: heroParticleFloat 8s ease-in-out infinite;
}

.hero-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles .particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 1.6s;
}

.hero-particles .particle:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 3.2s;
}

.hero-particles .particle:nth-child(4) {
    bottom: 40%;
    right: 25%;
    animation-delay: 4.8s;
}

.hero-particles .particle:nth-child(5) {
    bottom: 20%;
    left: 30%;
    animation-delay: 6.4s;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 1em;
    opacity: 0.9;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.separator {
    margin: 0 10px;
    opacity: 0.6;
}

.current {
    color: white;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5em;
    margin: 20px 0;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.3);
}

.hero-stat .stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stat .stat-label {
    font-size: 0.9em;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* 页面内容包装器 */
.page-content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin: 40px 20px;
}

/* 侧边导航 */
.sidebar-nav {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 250, 0.9) 100%);
    border: 2px solid rgba(255, 182, 193, 0.2);
    border-radius: 25px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(255, 182, 193, 0.15);
}

.nav-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 182, 193, 0.1);
}

.nav-header h3 {
    font-size: 1.3em;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 182, 193, 0.05);
    border: 1px solid rgba(255, 182, 193, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
    left: 100%;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(255, 182, 193, 0.1);
    border-color: rgba(255, 182, 193, 0.3);
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(255, 182, 193, 0.2);
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(196, 69, 105, 0.1));
    border-color: rgba(255, 182, 193, 0.4);
}

.nav-icon {
    font-size: 1.2em;
    width: 25px;
    text-align: center;
}

.nav-text {
    font-weight: 500;
    font-size: 0.95em;
}

.nav-footer {
    text-align: center;
}

.progress-indicator {
    background: rgba(255, 182, 193, 0.1);
    border-radius: 10px;
    height: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    height: 100%;
    width: 0%;
    border-radius: 10px;
    transition: width 0.3s ease;
    animation: progressPulse 2s ease-in-out infinite;
}

.progress-text {
    font-size: 0.8em;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* 主要内容区域 */
.main-content-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 内容卡片 */
.content-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 240, 245, 0.95) 100%);
    border: 2px solid rgba(255, 182, 193, 0.2);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(255, 182, 193, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 182, 193, 0.2);
}

.card-header-fancy {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.card-icon {
    font-size: 2.5em;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 3s ease-in-out infinite;
}

.card-header-fancy h2 {
    flex: 1;
    font-size: 2em;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 600;
}

.card-decoration {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff9a9e, #fecfef);
    border-radius: 2px;
    animation: decorationGlow 2s ease-in-out infinite;
}

/* 动画定义 */
@keyframes heroShimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes heroParticleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) rotate(90deg) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(0) rotate(180deg) scale(1); opacity: 0.3; }
    75% { transform: translateY(-15px) rotate(270deg) scale(1.1); opacity: 0.6; }
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3); }
    50% { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.5); }
}

@keyframes progressPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes decorationGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 154, 158, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 154, 158, 0.8); }
}

/* ===== 垂直目录式布局样式 ===== */

/* 目录布局容器 */
.directory-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* 目录列表 */
.directory-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

/* 目录项 */
.directory-item {
    display: grid;
    grid-template-columns: 80px 80px 1fr 60px;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 240, 245, 0.95) 100%);
    border: 3px solid transparent;
    border-radius: 25px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(255, 182, 193, 0.2);
}

/* 目录项悬浮效果 */
.directory-item::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef, #fad0c4, #ff6b9d, #ff9a9e);
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderFlow 4s linear infinite;
}

.directory-item:hover::before {
    opacity: 1;
}

.directory-item:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(255, 182, 193, 0.3),
        0 0 0 1px rgba(255, 182, 193, 0.4);
}

/* 项目编号 */
.item-number {
    font-size: 2.5em;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
}

.item-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #ff9a9e, #fecfef);
    border-radius: 2px;
    animation: numberGlow 2s ease-in-out infinite;
}

/* 项目图标 */
.item-icon {
    font-size: 3em;
    text-align: center;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(255, 182, 193, 0.3));
}

/* 项目内容 */
.item-content {
    padding: 0 20px;
}

.item-content a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.item-content h3 {
    font-size: 1.8em;
    margin: 0 0 10px 0;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    transition: all 0.3s ease;
}

.item-content p {
    color: #666;
    margin: 0 0 15px 0;
    font-size: 1.1em;
    line-height: 1.5;
}

/* 标签列表 */
.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(255, 182, 193, 0.1);
    color: #666;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: 500;
    border: 1px solid rgba(255, 182, 193, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.3), transparent);
    transition: left 0.5s ease;
}

.directory-item:hover .tag {
    background: rgba(255, 182, 193, 0.2);
    color: #444;
    border-color: rgba(255, 182, 193, 0.4);
    transform: translateY(-2px);
}

.directory-item:hover .tag::before {
    left: 100%;
}

/* 箭头指示器 */
.item-arrow {
    font-size: 2em;
    color: #ff6b9d;
    text-align: center;
    transition: all 0.3s ease;
    animation: arrowPulse 2s ease-in-out infinite;
}

.directory-item:hover .item-arrow {
    transform: translateX(10px) scale(1.2);
    color: #c44569;
}

/* 装饰元素 */
.item-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    overflow: hidden;
}

.deco-line {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff9a9e, #fecfef);
    transform: translateY(-50%);
    animation: decoLineFlow 3s ease-in-out infinite;
}

.deco-dots {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
}

.deco-dots span {
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.deco-dots span:nth-child(1) { animation-delay: 0s; }
.deco-dots span:nth-child(2) { animation-delay: 0.3s; }
.deco-dots span:nth-child(3) { animation-delay: 0.6s; }

/* 分类颜色 */
.directory-item[data-category="core"] {
    border-left: 5px solid #ff6b9d;
}

.directory-item[data-category="special"] {
    border-left: 5px solid #ff9a9e;
}

.directory-item[data-category="progress"] {
    border-left: 5px solid #fecfef;
}

.directory-item[data-category="combat"] {
    border-left: 5px solid #c44569;
}

.directory-item[data-category="boss"] {
    border-left: 5px solid #8b5cf6;
}

.directory-item[data-category="economy"] {
    border-left: 5px solid #fbbf24;
}

.directory-item[data-category="shop"] {
    border-left: 5px solid #10b981;
}

.directory-item[data-category="pet"] {
    border-left: 5px solid #ec4899;
}

.directory-item[data-category="event"] {
    border-left: 5px solid #8b5cf6;
}

.directory-item[data-category="vip"] {
    border-left: 5px solid #f59e0b;
}

.directory-item[data-category="warning"] {
    border-left: 5px solid #ef4444;
}

.directory-item[data-category="rule"] {
    border-left: 5px solid #6b7280;
}

.directory-item[data-category="download"] {
    border-left: 5px solid #3b82f6;
}

.directory-item[data-category="lucky"] {
    border-left: 5px solid #06b6d4;
}

/* 目录底部装饰 */
.directory-footer {
    margin-top: 60px;
    text-align: center;
}

.footer-decoration {
    position: relative;
    height: 80px;
    overflow: hidden;
}

/* 动画定义 */
@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes numberGlow {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-8px) rotate(5deg) scale(1.05); }
    50% { transform: translateY(0) rotate(0deg) scale(1); }
    75% { transform: translateY(-4px) rotate(-3deg) scale(1.02); }
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes decoLineFlow {
    0%, 100% { opacity: 0.6; transform: translateY(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateY(-50%) scaleX(1.2); }
}

/* 响应式设计 - 移动端优化 */
@media (max-width: 768px) {
    /* 容器调整 */
    .container {
        padding: 10px !important;
        margin: 15px auto !important;
    }

    .main-content {
        margin: 10px !important;
        padding: 25px 20px !important;
        border-radius: 20px !important;
    }

    /* 统计面板 - 手机端改为2x2网格 */
    .stats-dashboard {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 20px 15px !important;
        margin-bottom: 30px !important;
    }

    .stat-card {
        padding: 18px 12px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        text-align: center !important;
        min-height: auto !important;
    }

    .stat-icon {
        font-size: 2em !important;
        margin-bottom: 0 !important;
    }

    .stat-content {
        width: 100% !important;
    }

    .stat-number {
        font-size: 1.4em !important;
        margin-bottom: 4px !important;
    }

    .stat-label {
        font-size: 0.75em !important;
    }

    /* 目录布局调整 */
    .directory-layout {
        padding: 15px !important;
    }

    .directory-list {
        gap: 15px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    /* 目录项 - 手机端紧凑布局 */
    .directory-item {
        grid-template-columns: 50px 1fr 35px !important;
        grid-template-rows: auto !important;
        padding: 18px 15px !important;
        gap: 12px !important;
        text-align: left !important;
        align-items: center !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .item-number {
        font-size: 1.6em !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
        margin-bottom: 0 !important;
        text-align: center !important;
        width: 40px !important;
    }

    .item-number::after {
        display: none !important; /* 手机端隐藏装饰线 */
    }

    .item-icon {
        display: none !important; /* 手机端隐藏图标节省空间 */
    }

    .item-content {
        grid-column: 2 !important;
        grid-row: 1 !important;
        padding: 0 !important;
        text-align: left !important;
        min-width: 0 !important;
    }

    .item-content h3 {
        font-size: 1.1em !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }

    .item-content p {
        font-size: 0.8em !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
        color: #777 !important;
        word-wrap: break-word !important;
    }

    .item-tags {
        justify-content: flex-start !important;
        gap: 4px !important;
        flex-wrap: wrap !important;
    }

    .tag {
        font-size: 0.7em !important;
        padding: 3px 6px !important;
        border-radius: 8px !important;
    }

    .item-arrow {
        grid-column: 3 !important;
        grid-row: 1 !important;
        font-size: 1.2em !important;
        text-align: center !important;
        width: 25px !important;
    }

    .item-decoration {
        display: none !important; /* 手机端隐藏装饰 */
    }

    .directory-item:hover {
        transform: translateX(5px) scale(1.01) !important;
    }

    /* 头部调整 */
    header {
        margin: 15px 10px 25px 10px !important;
        padding: 40px 25px !important;
        border-radius: 25px !important;
    }

    h1 {
        font-size: 2em !important;
    }

    h1::before {
        left: -35px !important;
        font-size: 0.7em !important;
    }
}
