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

:root {
    --primary-color: #c41e3a;
    --secondary-color: #d4af37;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: rgba(212, 175, 55, 0.3);
    --gradient-red: linear-gradient(135deg, #c41e3a, #8b0000);
    --gradient-gold: linear-gradient(135deg, #d4af37, #ffd700);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-red: 0 0 30px rgba(196, 30, 58, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: var(--dark-bg) url('/img/bg-pattern.png') repeat;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 全局武侠风格 */
.wuxia-border {
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, var(--secondary-color), #8b4513, var(--secondary-color)) 1;
    box-shadow: var(--shadow-gold);
}

.wuxia-btn {
    background: var(--gradient-red);
    color: var(--text-primary);
    border: 2px solid var(--secondary-color);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.wuxia-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wuxia-btn:hover {
    background: linear-gradient(135deg, #dc143c, #a52a2a);
    box-shadow: var(--shadow-red);
    transform: translateY(-2px);
}

.wuxia-btn:hover::before {
    transform: rotate(45deg) translateX(100%);
}

/* 顶部导航 */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.05);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.1);
}

.nav-links a.active::after {
    width: 100%;
}

/* Banner和公告区域 */
.banner-notice-section {
    background: var(--dark-bg);
    padding: 40px 0;
}

.banner-notice-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.banner-left {
    flex: 0 0 70%;
    max-width: 70%;
    display: flex;
    align-items: stretch;
}

.notice-right {
    flex: 0 0 calc(30% - 30px);
    max-width: calc(30% - 30px);
    display: flex;
    align-items: stretch;
}

.latest-notice {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    height: 500px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.latest-notice .section-header {
    margin-bottom: 15px;
    flex-shrink: 0;
}

.latest-notice .section-icon {
    display: none;
}

.latest-notice .page-title {
    font-size: 22px !important;
    margin: 0 !important;
}

.latest-notice .page-title::after {
    display: none;
}

.latest-notice .notice-item {
    padding: 14px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.latest-notice .notice-item:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(4px);
    border-color: var(--border-color);
}

.notice-item-line {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.latest-notice .notice-type {
    flex-shrink: 0;
    padding: 3px 8px;
    font-size: 11px;
    border-radius: 3px;
}

.latest-notice .notice-title {
    flex: 1;
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.latest-notice .notice-meta {
    flex-shrink: 0;
    color: #999;
    font-size: 12px;
    white-space: nowrap;
}

.latest-notice .notice-title:hover {
    color: var(--primary-color);
}

.latest-notice .notice-excerpt {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Banner轮播 */
.banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    width: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.banner-slide.active {
    opacity: 1;
}

.banner-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 0.8s ease;
}

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

.banner-title {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 4px;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-weight: 300;
}

.download-btn-fixed {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 999;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.4);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* 通用区块头部 */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* 最新公告区 */
.latest-notice {
    padding-top: 100px;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border-radius: 12px;
    margin-bottom: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.notice-item:last-child {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.notice-item:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.notice-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    min-width: 120px;
}

.notice-main {
    flex: 1;
}

.notice-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

.notice-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-width: 100px;
}

.notice-arrow {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.notice-item:hover .notice-arrow {
    transform: translateX(4px);
}

/* 核心卖点 */
.features {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.features h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: all 0.6s ease;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-gold);
    border-color: var(--secondary-color);
}

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

.feature-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    position: relative;
}

.feature-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.feature-content {
    padding: 32px;
    text-align: center;
}

.feature-icon {
    font-size: 56px;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

/* 精彩截图区 */
.screenshots {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.screenshot-item {
    position: relative;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-gold);
}

.screenshot-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
}

/* 玩家评价区 */
.testimonials {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 32px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--secondary-color);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--secondary-color);
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-stars {
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
}

/* 公共页面样式 */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 3px;
    position: relative;
}

.page-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* 公告页面 */
.notice-list {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* 首页右侧公告列表滚动 */
.latest-notice .notice-list {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    background: transparent;
    border: none;
    padding-right: 10px;
}

/* 滚动条样式 */
.latest-notice .notice-list::-webkit-scrollbar {
    width: 6px;
}

.latest-notice .notice-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.latest-notice .notice-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.latest-notice .notice-list::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.notice-item {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    margin-bottom: 16px;
}

.notice-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.notice-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(8px);
}

.notice-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    margin-right: 16px;
    letter-spacing: 0.5px;
}

.notice-title {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.notice-title:hover {
    color: var(--primary-color);
}

.notice-meta {
    color: var(--text-secondary);
    font-size: 14px;
}

.notice-top {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 12px;
    background: rgba(196, 30, 58, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* 下载页面 */
.download-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 60px;
    text-align: center;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.download-btns {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
}

.download-btn {
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
}

/* 下载页面新样式 */
.download-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.download-info-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.download-info-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.download-info-icon {
    font-size: 48px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-info-content h4 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.download-info-content p {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
}

.download-btns {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
}

.download-btn {
    min-width: 280px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    padding: 24px 32px;
    text-decoration: none;
}

.download-icon {
    font-size: 40px;
}

.download-text {
    text-align: left;
}

.download-title {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
}

.download-subtitle {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    font-weight: 400;
}

.download-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.download-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.download-section-header {
    background: rgba(212, 175, 55, 0.05);
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 16px;
}

.download-section-icon {
    font-size: 32px;
}

.download-section-header h3 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.download-advantages {
    padding: 32px;
}

.download-advantages ul {
    list-style: none;
    margin: 0;
}

.download-advantages li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-primary);
    font-size: 15px;
}

.download-advantages li::before {
    content: '⚔';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.install-guide {
    padding: 32px;
}

.install-guide ol {
    margin-left: 24px;
    color: var(--text-secondary);
    line-height: 2;
}

/* 玩法介绍 */
.gameplay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.gameplay-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.gameplay-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.gameplay-img {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    position: relative;
}

.gameplay-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.gameplay-content {
    padding: 32px;
}

.gameplay-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.gameplay-title {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.gameplay-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 15px;
}

.gameplay-guide {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gameplay-guide::after {
    content: '→';
    transition: transform 0.3s ease;
}

.gameplay-card:hover .gameplay-guide::after {
    transform: translateX(4px);
}

/* 装备页面 */
.equipment-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary-color);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.equipment-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.equipment-card.quality-1 { border-color: #9e9e9e; }
.equipment-card.quality-2 { border-color: #4caf50; box-shadow: 0 0 20px rgba(76, 175, 80, 0.2); }
.equipment-card.quality-3 { border-color: #9c27b0; box-shadow: 0 0 20px rgba(156, 39, 176, 0.2); }
.equipment-card.quality-4 { border-color: #ff9800; box-shadow: 0 0 20px rgba(255, 152, 0, 0.3); }

.equipment-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-gold);
}

.equipment-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.equipment-type {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 600;
}

.equipment-attr {
    margin: 20px 0;
    color: var(--text-secondary);
    line-height: 2;
}

.equipment-effect {
    background: rgba(196, 30, 58, 0.1);
    border-left: 3px solid var(--primary-color);
    padding: 12px;
    color: var(--text-primary);
    font-size: 14px;
    margin-top: 20px;
    border-radius: 0 4px 4px 0;
}

/* 爆率页面 */
.drop-rate-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.drop-rate-table th,
.drop-rate-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drop-rate-table th {
    background: rgba(212, 175, 55, 0.05);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.drop-rate-table tr:hover {
    background: rgba(212, 175, 55, 0.03);
}

.high-rate {
    color: var(--primary-color);
    font-weight: 600;
}

.high-rate-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 4px;
    margin-left: 12px;
    font-weight: 600;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.page-btn {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 10px 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 500;
}

.page-btn.active,
.page-btn:hover {
    border-color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary-color);
}

/* 底部 */
footer {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 60px 40px;
    margin-top: 120px;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.copyright {
    color: #666;
    font-size: 14px;
}

/* 背景图案 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* 移动端适配 */
@media (max-width: 1200px) {
    .banner-notice-container {
        flex-direction: column;
    }
    
    .banner-left,
    .notice-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .banner {
        height: 400px;
    }
    
    .latest-notice {
        height: auto;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 24px;
        padding: 16px 20px;
    }
    
    .banner-notice-section {
        padding: 20px 0;
    }
    
    .banner-notice-container {
        padding: 0 20px;
        gap: 20px;
    }
    
    .banner {
        height: 350px;
    }
    
    .latest-notice {
        height: auto;
    }
    
    .latest-notice {
        padding: 24px 20px;
    }
    
    .latest-notice .section-icon {
        font-size: 36px;
    }
    
    .latest-notice .section-title {
        font-size: 24px;
    }
    
    .latest-notice .notice-item {
        padding: 14px;
    }
    
    .nav-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .banner {
        height: 500px;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .banner-subtitle {
        font-size: 18px;
    }
    
    .banner-content {
        padding: 0 20px;
    }
    
    /* 公告移动端 */
    .notice-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px;
    }
    
    .notice-left {
        flex-direction: row;
        gap: 12px;
        min-width: auto;
    }
    
    .notice-right {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-width: auto;
    }
    
    .download-btns {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .download-btn {
        width: 100%;
        max-width: 320px;
    }
    
    .download-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .download-info-grid {
        grid-template-columns: 1fr;
    }
    
    .gameplay-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .drop-rate-table {
        display: block;
        overflow-x: auto;
    }
    
    .download-btn-fixed {
        right: 20px;
        bottom: 20px;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .features h2, .page-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .download-advantages ul {
        columns: 1;
    }
    
    /* 截图移动端 */
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .screenshot-item {
        height: 160px;
    }
    
    /* 评价移动端 */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        flex-direction: column;
        padding: 32px 24px;
    }
}
