/* 海特洛市新闻网 - 赛博朋克风格样式表 */

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

:root {
    --neon-purple: #a855f7;
    --neon-blue: #3b82f6;
    --neon-pink: #ec4899;
    --neon-cyan: #06b6d4;
    --dark-bg: #0a0a0f;
    --dark-card: rgba(15, 15, 25, 0.8);
    --glass-bg: rgba(20, 20, 35, 0.6);
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.5);
    --glow-blue: 0 0 20px rgba(59, 130, 246, 0.5);
}

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* 背景效果 */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg-city.jpg') center/cover no-repeat;
    z-index: -2;
}

.bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.85) 0%, rgba(20, 10, 30, 0.75) 50%, rgba(10, 15, 25, 0.85) 100%);
}

/* 扫描线效果 */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    z-index: 1000;
    opacity: 0.3;
}

/* 加载动画 */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
    margin-bottom: 2rem;
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    border-radius: 2px;
    animation: loading 2s ease-in-out forwards;
    box-shadow: var(--glow-purple);
}

.loader-text {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.8)); }
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-purple);
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.navbar-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--neon-cyan);
    text-shadow: var(--glow-blue);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

/* 主页 - 翻页卡片效果 */
.home-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.home-title {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease;
}

.home-title h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
}

.home-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    letter-spacing: 8px;
}

.cards-container {
    display: flex;
    gap: 2rem;
    perspective: 1500px;
    flex-wrap: wrap;
    justify-content: center;
}

.flip-card {
    width: 280px;
    height: 380px;
    perspective: 1000px;
    cursor: pointer;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.flip-card:nth-child(1) { animation-delay: 0.2s; }
.flip-card:nth-child(2) { animation-delay: 0.4s; }
.flip-card:nth-child(3) { animation-delay: 0.6s; }
.flip-card:nth-child(4) { animation-delay: 0.8s; }

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.flip-card-front {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.flip-card-front img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.flip-card-front h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.flip-card-front p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

.flip-card-back {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(6, 182, 212, 0.2));
    backdrop-filter: blur(20px);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.flip-card-back h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flip-card-back p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.enter-btn {
    padding: 0.8rem 2rem;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: var(--glow-purple);
}

.enter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.8);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 页面通用样式 */
.page-container {
    padding-top: 80px;
    min-height: 100vh;
    animation: pageEnter 0.6s ease;
}

@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.page-header {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), var(--neon-cyan), transparent);
}

.page-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* 新闻页面样式 */
.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.news-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-content {
    padding: 1.5rem;
}

.news-card-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    color: white;
}

.news-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.news-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.news-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* 呗果页面样式 */
.beeguo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.beeguo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.beeguo-logo {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.beeguo-info h2 {
    font-size: 1.5rem;
    color: var(--neon-pink);
    margin-bottom: 0.3rem;
}

.beeguo-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.beeguo-grid {
    columns: 4;
    column-gap: 1.5rem;
}

.beeguo-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(236, 72, 153, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.beeguo-item:hover {
    transform: scale(1.02);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}

.beeguo-item img {
    width: 100%;
    display: block;
}

.beeguo-item-content {
    padding: 1rem;
}

.beeguo-user {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.beeguo-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    font-weight: bold;
}

.beeguo-username {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.beeguo-caption {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.beeguo-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.beeguo-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* 治安管理局页面样式 */
.police-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.police-banner {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.police-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.police-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(6, 182, 212, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.police-banner-overlay h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.police-banner-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.police-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.police-news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.police-news-item {
    display: flex;
    gap: 1.5rem;
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.police-news-item:hover {
    border-color: var(--neon-blue);
    transform: translateX(10px);
}

.police-news-image {
    width: 200px;
    height: 130px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.police-news-content {
    flex: 1;
}

.police-news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.police-news-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.police-news-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* 富豪榜页面样式 */
.rich-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.rich-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.rich-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #eab308, var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.rich-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.rich-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rich-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(234, 179, 8, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.rich-item:hover {
    border-color: #eab308;
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.2);
    transform: scale(1.02);
}

.rich-item.top-1 {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(234, 179, 8, 0.05));
    border-color: rgba(234, 179, 8, 0.5);
}

.rich-item.top-2 {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
    border-color: rgba(192, 192, 192, 0.4);
}

.rich-item.top-3 {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.05));
    border-color: rgba(205, 127, 50, 0.4);
}

.rich-rank {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.top-1 .rich-rank {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    color: white;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.5);
}

.top-2 .rich-rank {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: white;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.top-3 .rich-rank {
    background: linear-gradient(135deg, #cd7f32, #b8860b);
    color: white;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.5);
}

.rich-rank.normal {
    background: var(--glass-bg);
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.rich-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(234, 179, 8, 0.3);
    flex-shrink: 0;
}

.rich-info {
    flex: 1;
}

.rich-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.rich-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rich-wealth {
    text-align: right;
    flex-shrink: 0;
}

.rich-wealth-number {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #eab308, var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rich-wealth-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.rich-change {
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.rich-change.up {
    color: #22c55e;
}

.rich-change.down {
    color: #ef4444;
}

/* 页脚 */
.footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    margin-top: 3rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer .neon-text {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .beeguo-grid {
        columns: 3;
    }
    
    .police-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .navbar-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .home-title h1 {
        font-size: 2rem;
    }
    
    .cards-container {
        gap: 1rem;
    }
    
    .flip-card {
        width: 250px;
        height: 340px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .beeguo-grid {
        columns: 2;
    }
    
    .police-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .police-news-item {
        flex-direction: column;
    }
    
    .police-news-image {
        width: 100%;
        height: 200px;
    }
    
    .rich-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .rich-avatar {
        width: 50px;
        height: 50px;
    }
    
    .rich-name {
        font-size: 1rem;
    }
    
    .rich-wealth-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .beeguo-grid {
        columns: 1;
    }
    
    .police-stats {
        grid-template-columns: 1fr;
    }
    
    .navbar-menu {
        display: none;
    }
}

/* ========== 首页改版样式 ========== */

/* 首页 - 角色全景区 */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.3) 0%,
        rgba(10, 10, 15, 0.5) 50%,
        rgba(10, 10, 15, 0.9) 100%
    );
}
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(
        ellipse at center,
        rgba(168, 85, 247, 0.15) 0%,
        rgba(6, 182, 212, 0.1) 40%,
        transparent 70%
    );
    animation: heroGlow 4s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: heroFadeIn 1.5s ease;
}
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-title {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.hero-title-line {
    display: block;
    color: white;
    text-shadow: 0 0 40px rgba(168, 85, 247, 0.8);
}
.hero-title-neon {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonPulse 3s ease-in-out infinite;
}
@keyframes neonPulse {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.8)); }
    50% { filter: drop-shadow(0 0 40px rgba(6, 182, 212, 0.8)); }
}
.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    letter-spacing: 6px;
    margin-bottom: 3rem;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 10;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 0.5rem auto 0;
    border-right: 2px solid var(--neon-cyan);
    border-bottom: 2px solid var(--neon-cyan);
    transform: rotate(45deg);
    box-shadow: 2px 2px 5px rgba(6, 182, 212, 0.5);
}

/* 角色动态光效 */
.character-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}
.neon-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: ringPulse 4s ease-in-out infinite;
}
.ring-1 {
    top: 20%;
    left: 15%;
    width: 200px;
    height: 200px;
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2), inset 0 0 30px rgba(168, 85, 247, 0.1);
    animation-delay: 0s;
}
.ring-2 {
    top: 30%;
    right: 20%;
    width: 150px;
    height: 150px;
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2), inset 0 0 30px rgba(6, 182, 212, 0.1);
    animation-delay: 1s;
}
.ring-3 {
    bottom: 25%;
    left: 30%;
    width: 180px;
    height: 180px;
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.2), inset 0 0 30px rgba(236, 72, 153, 0.1);
    animation-delay: 2s;
}
@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* 通用板块样式 */
.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.section-more {
    display: inline-block;
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.section-more:hover {
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
}

/* 滚动入场动画 */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 新闻预览板块 */
.news-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.news-preview-card {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}
.news-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}
.news-preview-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-preview-info {
    padding: 1.5rem;
}
.news-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    color: white;
}
.news-preview-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    line-height: 1.4;
}
.news-preview-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* 呗果预览板块 */
.beeguo-preview-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
.beeguo-preview-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}
.beeguo-preview-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}
.beeguo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.beeguo-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.8rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.beeguo-preview-item:hover .beeguo-preview-overlay {
    opacity: 1;
}

/* 治安管理局预览板块 */
.police-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.police-preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.police-stat-card {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}
.police-stat-card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}
.police-stat-number {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}
.police-stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
}
.police-preview-news {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.police-preview-item {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.police-preview-item:hover {
    border-color: var(--neon-blue);
    transform: translateX(10px);
}
.police-preview-item h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
}
.police-preview-item span {
    color: var(--text-secondary);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

/* 富豪榜预览板块 */
.rich-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.rich-preview-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(234, 179, 8, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}
.rich-preview-item:hover {
    border-color: #eab308;
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.2);
    transform: scale(1.02);
}
.rich-preview-item.top-1 {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(234, 179, 8, 0.05));
    border-color: rgba(234, 179, 8, 0.5);
}
.rich-preview-item.top-2 {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
    border-color: rgba(192, 192, 192, 0.4);
}
.rich-preview-item.top-3 {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.05));
    border-color: rgba(205, 127, 50, 0.4);
}
.rich-preview-rank {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}
.top-1 .rich-preview-rank {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    color: white;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.5);
}
.top-2 .rich-preview-rank {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: white;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}
.top-3 .rich-preview-rank {
    background: linear-gradient(135deg, #cd7f32, #b8860b);
    color: white;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.5);
}
.rich-preview-info {
    flex: 1;
}
.rich-preview-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}
.rich-preview-title {
    color: var(--text-secondary);
    font-size: 0.85rem;
}
.rich-preview-wealth {
    font-size: 1.3rem;
    font-weight: bold;
    background: linear-gradient(90deg, #eab308, var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

/* 首页响应式 */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .news-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beeguo-preview-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .police-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .section {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .news-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .beeguo-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .police-preview-stats {
        grid-template-columns: 1fr;
    }
    
    .rich-preview-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .rich-preview-rank {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .rich-preview-name {
        font-size: 1rem;
    }
    
    .rich-preview-wealth {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .beeguo-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== 自定义鼠标指针 ========== */

/* 隐藏原生鼠标指针 */
* {
    cursor: none !important;
}

/* 自定义鼠标指针 */
.custom-cursor {
    position: fixed;
    width: 48px;
    height: 48px;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-8px, -8px);
    transition: transform 0.1s ease;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.custom-cursor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* 鼠标悬停在可点击元素上的状态 */
.custom-cursor.hover {
    transform: translate(-8px, -8px) scale(1.2);
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.8));
}

/* 鼠标点击时的状态 */
.custom-cursor.click {
    transform: translate(-8px, -8px) scale(0.9);
}

/* 鼠标呼吸效果 */
@keyframes cursorBreath {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(168, 85, 247, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.6));
    }
}

.custom-cursor {
    animation: cursorBreath 2s ease-in-out infinite;
}

/* 移动端恢复原生鼠标 */
@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }
    
    .custom-cursor {
        display: none;
    }
}
