/* 全局样式 */
:root {
    --primary-color: #6a3de8;
    --secondary-color: #ff6b6b;
    --accent-color: #ff006e;
    --light-color: #ffffff;
    --dark-color: #222;
    --gray-color: #f8f9fa;
    --text-color: #333;
    --light-text: #ffffff;
    --dark-text: #222;
    --bg-color: #f5f5f5;
    --dark-bg: #222;
    --card-bg: #ffffff;
    --border-radius: 8px;
    --gradient-primary: linear-gradient(135deg, #3a86ff, #8338ec);
    --gradient-secondary: linear-gradient(135deg, #ff006e, #ff9e00);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* 添加新的颜色变量 */
    --site-blue: #3498db;
    --site-green: #2ecc71;
    --site-blue-light: #e3f2fd;
    --site-green-light: #e8f8f2;
    --site-blue-lighter: #eaf7fe;
    --site-green-lighter: #f0faf5;
    --site-blue-dark: #2980b9;
    --site-green-dark: #27ae60;
    --site-gradient: linear-gradient(135deg, var(--site-blue), var(--site-green));
    --card-bg-light: rgba(255, 255, 255, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--site-blue-light);
    background-image: linear-gradient(to bottom, var(--site-blue-light), var(--site-green-light));
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1rem;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--site-blue);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);
}

.btn-secondary {
    background-color: var(--site-green);
    color: var(--light-text);
}

.btn-secondary:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--site-blue);
    color: var(--site-blue);
}

.btn-outline:hover {
    background: var(--site-gradient);
    color: var(--light-color);
}

.btn-text {
    color: var(--site-blue);
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.btn-text i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-text:hover {
    color: #5a30d1;
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* 轮播图样式 */
.slider-container {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 500px;
    overflow: hidden;
    margin-top: 80px;
    border-bottom: 5px solid var(--site-green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.slider {
    height: 100%;
    display: flex;
    width: 300%;
    transition: all 0.5s ease;
}

.slide {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.slide.active img {
    filter: brightness(1);
    transform: scale(1.02);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10%;
    background: linear-gradient(to right, rgba(30, 39, 46, 0.8) 0%, rgba(52, 152, 219, 0.4) 60%, rgba(0,0,0,0) 100%);
    color: var(--light-color);
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 600px;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.3s;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-content .btn {
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
    background: var(--site-gradient);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--light-color);
    transform: scale(1.3);
}

/* 通用卡片样式 */
.card {
    background-color: var(--card-bg-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 游戏介绍部分 */
.game-intro {
    background-color: var(--site-green-light);
    position: relative;
    overflow: hidden;
}

.game-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: var(--site-green);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(100px, -150px);
}

.game-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: var(--site-blue);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(-50px, 50px);
}

.game-intro h2 {
    color: var(--site-blue);
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.game-intro h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--site-gradient);
    border-radius: 2px;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.intro-text, .intro-image {
    flex: 1;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.intro-image img {
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

/* 游戏特色部分 */
.features {
    background-color: var(--site-blue-light);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background-color: var(--site-blue);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(-100px, -100px);
}

.features::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 350px;
    height: 350px;
    background-color: var(--site-green);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(150px, 150px);
}

.features h2 {
    color: var(--site-green);
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--site-gradient);
    border-radius: 2px;
}

.feature-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--card-bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.feature-card p {
    padding: 0 20px 20px;
    color: #666;
}

/* 最新活动部分 */
.latest-events {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(52, 152, 219, 0.1)), url('../images/event-bg.jpg') center/cover no-repeat;
    position: relative;
    color: var(--dark-text);
}

.latest-events:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.latest-events .section-title,
.latest-events .event-box {
    position: relative;
    z-index: 2;
}

.latest-events .section-title h2,
.latest-events .section-title p {
    color: var(--light-color);
}

.event-box {
    display: flex;
    background: var(--card-bg-light);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.event-image {
    flex: 1;
    min-width: 300px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.event-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.event-date {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.event-desc {
    margin-bottom: 25px;
    line-height: 1.7;
}

.event-features {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.event-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* 社区部分 */
.community {
    background-color: var(--site-green-light);
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: var(--site-green);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.community::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: var(--site-blue);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(-100px, 100px);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.community-card {
    background-color: var(--card-bg-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.community-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.community-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.community-card p {
    color: #666;
}

.community-cta {
    text-align: center;
}

.community-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--card-bg-light);
    color: var(--site-blue);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.social-link:hover {
    background: var(--site-gradient);
    color: var(--light-color);
    transform: translateY(-5px);
}

/* 页脚样式 */
footer {
    text-align: center;
    padding: 40px 0 20px;
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 30px;
    width: 100%;
}

.footer-column h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
    margin: 5px 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .slide-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .slider-container {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .intro-content {
        flex-direction: column;
    }
    
    .event-box {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .slide-content {
        align-items: center;
        text-align: center;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%);
        padding: 0 5%;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .slider-container {
        height: 400px;
        margin-top: 60px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .feature-card {
        min-width: 100%;
    }
}

/* 下载部分 */
.download-section {
    background: linear-gradient(135deg, var(--site-blue-light), var(--site-green-light));
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.download-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--site-blue);
    opacity: 0.1;
    border-radius: 50%;
}

.download-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: var(--site-green);
    opacity: 0.1;
    border-radius: 50%;
}

.download-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.download-text {
    flex: 1;
    min-width: 300px;
}

.download-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.download-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.download-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--card-bg-light);
    padding: 12px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.download-btn i {
    font-size: 2rem;
    color: var(--site-blue);
}

.download-btn span {
    display: flex;
    flex-direction: column;
}

.download-btn small {
    font-size: 0.8rem;
    color: #666;
}

.download-btn strong {
    font-size: 1.2rem;
    color: var(--dark-text);
}

.download-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.download-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 新闻资讯部分 */
.news-section {
    background-color: var(--site-blue-light);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.news-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--site-blue);
    opacity: 0.1;
    border-radius: 50%;
}

.news-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--site-green);
    opacity: 0.1;
    border-radius: 50%;
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.news-header h2 {
    font-size: 2.5rem;
    color: var(--site-blue-dark);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.news-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--site-gradient);
    border-radius: 2px;
}

.news-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.news-card {
    background: var(--card-bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.news-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--site-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-date i {
    color: var(--site-blue);
}

.news-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-text);
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: var(--site-blue);
}

.news-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.news-link {
    display: inline-flex;
    align-items: center;
    color: var(--site-blue);
    font-weight: 500;
    gap: 5px;
    transition: all 0.3s ease;
}

.news-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.news-link:hover {
    color: var(--site-green);
}

.news-link:hover i {
    transform: translateX(3px);
}

.news-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.news-author span {
    font-size: 0.9rem;
    color: #666;
}

/* 新闻分页 */
.news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 5px;
}

.page-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg-light);
    border-radius: 8px;
    color: var(--dark-text);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-item:hover, .page-item.active {
    background: var(--site-gradient);
    color: white;
}

.page-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 新闻详情页 */
.news-detail {
    background: var(--card-bg-light);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.news-detail-header {
    margin-bottom: 30px;
}

.news-detail-title {
    font-size: 2.2rem;
    color: var(--dark-text);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #666;
    font-size: 0.95rem;
}

.news-detail-meta div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-detail-meta i {
    color: var(--site-blue);
}

.news-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-detail-content {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-content h3 {
    font-size: 1.6rem;
    color: var(--dark-text);
    margin: 30px 0 15px;
    font-weight: 600;
}

.news-detail-content h4 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin: 25px 0 15px;
    font-weight: 600;
}

.news-detail-content ul, .news-detail-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.news-detail-content li {
    margin-bottom: 10px;
}

.news-detail-content blockquote {
    border-left: 4px solid var(--site-blue);
    padding: 15px 20px;
    background-color: rgba(52, 152, 219, 0.05);
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.news-detail-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

/* 游戏图库样式 */
.gallery-section {
    background-color: var(--site-blue-light);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--site-blue);
    opacity: 0.1;
    border-radius: 50%;
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--site-green);
    opacity: 0.1;
    border-radius: 50%;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: var(--site-blue-dark);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.gallery-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--site-gradient);
    border-radius: 2px;
}

.gallery-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.gallery-filter {
    padding: 8px 20px;
    background-color: var(--card-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 0.95rem;
    color: var(--dark-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.gallery-filter.active {
    background: var(--site-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 250px;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.gallery-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--site-gradient);
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-icon:hover {
    transform: scale(1.1) rotate(10deg);
}

.load-more-container {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--site-gradient);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.load-more-btn:hover::before {
    left: 100%;
}

.load-more-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: rotate(180deg);
}

.load-more-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.load-more-btn.loading i {
    animation: spin 1s linear infinite;
}

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