:root {
    --primary-color: #00f0ff;
    --secondary-color: #8b00ff;
    --accent-color: #ff003c;
    --dark-bg: #0c0c14;
    --darker-bg: #080810;
    --card-bg: rgba(16, 16, 30, 0.6);
    --text-color: #e6e6ff;
    --text-secondary: #9393b8;
    --success-color: #00ff66;
    --glow-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    --border-glow: 1px solid rgba(0, 240, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

/* 网格背景效果 */
.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(16, 16, 40, 0.8), var(--darker-bg)),
                url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDAsIDI0MCwgMjU1LCAwLjA1KSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9zdmc+');
    z-index: -1;
}

/* 标题与文本 */
h1, h2, h3, h4 {
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.15;
    z-index: -1;
}

/* 添加以下内容限制区域宽度 */
.container {
    width: 100%;
    max-width: 1400px; /* 限制最大宽度 */
    margin: 0 auto;
    padding: 0 20px;
}

/* 完整重写导航条样式，确保美化效果都存在 */
header {
    position: sticky;
    top: 0;
    background: rgba(8, 8, 16, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: var(--border-glow);
    width: 100%;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-master {
    color: var(--text-secondary);
    font-weight: 300;
    margin-left: 2px;
}

/* 导航菜单样式 */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    display: inline-block;
}

/* 下划线动画效果 */
nav ul li a:not(.download-nav-btn):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: all 0.3s ease;
}

nav ul li a:not(.download-nav-btn):hover {
    color: var(--primary-color);
}

nav ul li a:not(.download-nav-btn):hover:after {
    width: 100%;
}

/* 下载按钮特殊样式 */
.download-nav-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--darker-bg) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: var(--glow-shadow);
    transition: all 0.3s ease;
}

.download-nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.7);
}

/* 确保移动设备上导航正确显示 */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .download-nav-btn {
        margin-top: 0.5rem;
    }
}

/* 修改主图区域，限制宽度 */
.hero {
    display: flex;
    min-height: 90vh;
    padding: 5rem 0;
    gap: 4rem;
    align-items: center;
}

.hero > .container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.primary-btn, .secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    box-shadow: var(--glow-shadow);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.secondary-btn:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hwid-display {
    width: 100%;
    max-width: 600px;
    background-color: var(--darker-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.15),
                0 0 60px rgba(139, 0, 255, 0.1);
    border: var(--border-glow);
    position: relative;
    z-index: 2;
}

.display-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.display-title {
    margin-left: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-family: 'Consolas', monospace;
}

.display-content {
    padding: 1.5rem;
}

.hwid-item {
    display: flex;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    font-family: 'Consolas', monospace;
}

.hwid-label {
    color: var(--text-secondary);
    min-width: 140px;
}

.hwid-value {
    color: #ff003c;
    margin-right: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.hwid-new {
    color: var(--success-color);
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.hwid-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.status-indicator {
    display: flex;
    align-items: center;
}

.pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--success-color);
    margin-right: 10px;
    animation: statusPulse 1.5s infinite;
}

@keyframes statusPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}

.status-text {
    color: var(--success-color);
    font-weight: 600;
}

.apply-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--darker-bg);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow-shadow);
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
}

.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(139, 0, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 50% 70%, rgba(255, 0, 60, 0.05) 0%, transparent 30%);
    filter: blur(30px);
    z-index: 1;
    pointer-events: none;
}

/* 修改功能部分，限制宽度 */
.features {
    padding: 5rem 0;
    background-color: rgba(8, 8, 16, 0.6);
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: var(--border-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(139, 0, 255, 0.05));
    z-index: -1;
    transition: all 0.5s ease;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 240, 255, 0.4);
}

.feature-card:hover:before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.feature-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* 修改工作原理部分，限制宽度 */
.how-it-works {
    padding: 5rem 0;
    text-align: center;
}

.process-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.process-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: var(--border-glow);
    width: 250px;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15),
                0 0 15px rgba(0, 240, 255, 0.2);
}

.process-number {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--darker-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--glow-shadow);
}

.process-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.process-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.tech-diagram {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: var(--border-glow);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
}

.tech-diagram img {
    width: 100%;
    display: block;
    opacity: 0.7;
}

.diagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.diagram-point {
    position: absolute;
    display: inline-block;
    padding: 5px 10px;
    background-color: rgba(0, 240, 255, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-color);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    animation: pointPulse 2s infinite alternate;
}

@keyframes pointPulse {
    0% { box-shadow: 0 0 5px rgba(0, 240, 255, 0.3); }
    100% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.8); }
}

/* 修改价格部分，限制宽度 */
.pricing {
    padding: 5rem 0;
    background-color: rgba(8, 8, 16, 0.6);
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: var(--border-glow);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(0, 240, 255, 0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15),
                0 0 20px rgba(0, 240, 255, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--darker-bg);
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-features {
    padding: 2rem;
    list-style: none;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pricing-features i {
    margin-right: 10px;
    font-size: 1rem;
}

.pricing-features .fa-check {
    color: var(--success-color);
}

.pricing-features .fa-times {
    color: var(--accent-color);
}

.pricing-btn {
    display: block;
    margin: 0 2rem 2rem;
    padding: 0.8rem;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--darker-bg);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--glow-shadow);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

/* 修改FAQ部分，限制宽度 */
.faq {
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: var(--border-glow);
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-bg);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* 修改下载部分，限制宽度 */
.download {
    padding: 5rem 0;
    background: linear-gradient(rgba(8, 8, 16, 0.8), rgba(8, 8, 16, 0.8)),
                url('download-bg.jpg') center/cover no-repeat fixed;
    text-align: center;
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
}

.download-content h2 {
    margin-bottom: 1.5rem;
}

.download-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.download-options {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--darker-bg);
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.download-btn i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.download-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-small {
    font-size: 0.8rem;
    font-weight: 400;
}

.btn-large {
    font-size: 1.2rem;
    font-weight: 700;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

.version-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.version-info span {
    display: flex;
    align-items: center;
}

.version-info i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* 页脚容器 */
footer {
    background-color: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: var(--border-glow);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-logo p {
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    flex: 1;
    min-width: 300px;
}

.footer-contact h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-contact h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* 微信链接样式 */
.contact-link.wechat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-color);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(16, 16, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    flex-grow: 1;
    max-width: 200px;
}

.contact-link.wechat i {
    font-size: 1.8rem;
    color: #09BB07;
}

.contact-link.wechat:hover {
    transform: translateY(-3px);
    background: rgba(9, 187, 7, 0.1);
    border-color: rgba(9, 187, 7, 0.3);
    box-shadow: 0 0 15px rgba(9, 187, 7, 0.15);
}

/* 二维码样式 */
.qrcode-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qrcode-img {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 10px;
    padding: 5px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

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

/* 二维码闪光效果 */
.qrcode-flash {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0)
    );
    transform: rotate(30deg);
    animation: flashQRCode 3s infinite;
    pointer-events: none;
}

@keyframes flashQRCode {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .contact-link.wechat {
        max-width: 250px;
        width: 100%;
        justify-content: center;
    }
}

/* 系统兼容性信息美化样式 */
.compatibility-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.compatibility-item {
    display: flex;
    align-items: center;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 30px;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.compatibility-item:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.2);
}

.compatibility-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(0, 240, 255, 0),
        rgba(0, 240, 255, 0.1),
        rgba(0, 240, 255, 0)
    );
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

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

.compatibility-icon {
    margin-right: 0.8rem;
    font-size: 1.2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.compatibility-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.compatibility-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* 热门游戏支持板块样式 */
.supported-games {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(8, 8, 16, 0.9), rgba(8, 8, 16, 0.7)), 
                url('gaming-bg.jpg') center/cover no-repeat fixed;
    position: relative;
}

.supported-games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('circuit-pattern.png');
    opacity: 0.05;
    pointer-events: none;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* 游戏分类标签 */
.games-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.category-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--text-secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover, .category-btn.active {
    background: linear-gradient(45deg, rgba(0, 240, 255, 0.1), rgba(139, 0, 255, 0.1));
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    transform: translateY(-2px);
}

/* 游戏网格 */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.game-item {
    background: rgba(16, 16, 30, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 240, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.8rem 1rem 1.5rem;
    cursor: pointer;
}

.game-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2),
                0 0 15px rgba(0, 240, 255, 0.3);
    border-color: rgba(0, 240, 255, 0.4);
    z-index: 2;
}

.game-item::after {
    content: '已支持';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--darker-bg);
    font-weight: 700;
    text-align: center;
    font-size: 0.8rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.game-item:hover::after {
    transform: translateY(0);
}

.game-item[data-popular="true"] {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.15);
}

.game-item[data-popular="true"]::before {
    content: '热门';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.4);
}

.game-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.platform-icon {
    border-radius: 50%;
}

.game-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.game-item:hover .game-img {
    transform: scale(1.1);
}

.game-name {
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.game-item:hover .game-name {
    color: var(--primary-color);
}

.game-platforms {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.platform {
    font-size: 0.7rem;
    padding: 0.1rem 0.5rem;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 10px;
    color: var(--primary-color);
}

.more-games {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-games i {
    font-size: 2.5rem;
    color: rgba(8, 8, 16, 0.9);
}

.game-more {
    background: rgba(0, 240, 255, 0.05);
}

.extra-games-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--darker-bg);
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    font-size: 0.8rem;
}

/* 游戏功能特性 */
.games-features {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 250px;
    background: rgba(16, 16, 30, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 240, 255, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.8rem;
    background: linear-gradient(45deg, rgba(0, 240, 255, 0.1), rgba(139, 0, 255, 0.1));
    color: var(--primary-color);
}

.feature-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .games-features {
        flex-direction: column;
    }
    
    .feature-box {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .category-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 新闻板块样式 */
.news-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(8, 8, 16, 0.7), rgba(8, 8, 16, 0.9));
    position: relative;
}

.news-list {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.news-item {
    display: flex;
    background: rgba(16, 16, 30, 0.7);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 240, 255, 0.3);
}

.news-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    min-width: 100px;
    border-right: 1px solid rgba(0, 240, 255, 0.1);
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.news-content {
    flex: 1;
    padding: 1.5rem 1.8rem;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.news-header h3 {
    font-size: 1.2rem;
    margin: 0;
    transition: all 0.3s ease;
    flex: 1;
    padding-right: 1rem;
}

.news-item:hover .news-header h3 {
    color: var(--primary-color);
}

.news-label {
    background: var(--primary-color);
    color: var(--darker-bg);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.news-label.highlight {
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
}

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

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.news-category {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.news-category i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.news-link i {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

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

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

.news-view-all {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.view-all-btn:hover {
    background: rgba(0, 240, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.view-all-btn i {
    transition: all 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(3px);
}

/* 成功案例样式 */
.success-cases {
    padding: 5rem 0;
    background: linear-gradient(rgba(8, 8, 16, 0.8), rgba(8, 8, 16, 0.6)), 
                url('pattern-bg.jpg') center/cover no-repeat fixed;
    position: relative;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.case-card {
    background: rgba(16, 16, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 240, 255, 0.2);
    border-color: rgba(0, 240, 255, 0.3);
}

.case-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--darker-bg);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

.case-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, rgba(0, 240, 255, 0.1), rgba(139, 0, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.case-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--text-color);
    line-height: 1.4;
}

.case-description {
    margin-bottom: 1.5rem;
}

.case-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.case-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-value span {
    font-size: 1rem;
    opacity: 0.8;
}

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

.case-solution {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 3px solid var(--secondary-color);
}

.case-solution h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--secondary-color);
}

.case-solution p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.case-link {
    margin-top: auto;
    display: inline-block;
    text-align: center;
    padding: 0.8rem;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.case-link:hover {
    background: linear-gradient(45deg, rgba(0, 240, 255, 0.2), rgba(139, 0, 255, 0.2));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 案例推荐语 */
.cases-testimonial {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(16, 16, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-quote {
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-quote i.fa-quote-left {
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-quote i.fa-quote-right {
    position: absolute;
    bottom: -10px;
    right: -15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 0.3rem;
    color: var(--text-color);
}

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

/* 响应式调整 */
@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }
    
    .news-date {
        flex-direction: row;
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    }
    
    .date-day {
        margin-right: 0.5rem;
    }
    
    .date-month {
        margin-top: 0;
    }
    
    .news-header {
        flex-direction: column;
    }
    
    .news-header h3 {
        padding-right: 0;
        margin-bottom: 1rem;
    }
    
    .news-label {
        align-self: flex-start;
    }
    
    .cases-testimonial {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .news-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}