<style>
    #main article { border-bottom: none; }
	body{
		    font: 500 .875em PingFang SC,Lantinghei SC,Microsoft Yahei,Hiragino Sans GB,Microsoft Sans Serif,WenQuanYi Micro Hei,sans;
        background-color: #000; /* 保持黑色背景 */
        margin: 0;
        padding: 0;
        overflow-x: hidden;
	}
  #canvas {
                position: fixed;
                z-index: 9999;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                cursor: auto; /* 改为箭头样式 */
                pointer-events: none;
        }
        
        /* 官网流光栏目样式 */
        .top-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: linear-gradient(90deg, 
                rgba(10, 5, 20, 0.95) 0%, 
                rgba(20, 10, 40, 0.95) 25%, 
                rgba(30, 15, 60, 0.95) 50%, 
                rgba(20, 10, 40, 0.95) 75%, 
                rgba(10, 5, 20, 0.95) 100%);
            border-bottom: 2px solid rgba(0, 160, 255, 0.5);
            box-shadow: 0 0 30px rgba(0, 160, 255, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            margin-top: 20px;
            gap: 20px;
        }
        
        .site-logo {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(45deg, #00a0ff, #ff00fe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(0, 160, 255, 0.5);
            animation: logoGlow 3s ease-in-out infinite alternate;
        }
        
        @keyframes logoGlow {
            0% { text-shadow: 0 0 15px rgba(0, 160, 255, 0.5); }
            100% { text-shadow: 0 0 25px rgba(255, 0, 254, 0.7); }
        }
        
        .slogan {
            color: #fff;
            font-size: 14px;
            opacity: 0.8;
            padding-left: 20px;
            border-left: 2px solid rgba(0, 160, 255, 0.3);
        }
        
        .nav-section {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        .nav-link {
            color: #fff;
            text-decoration: none;
            padding: 8px 20px;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 15px;
            overflow: hidden;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: 0.5s;
        }
        
        .nav-link:hover::before {
            left: 100%;
        }
        
        .nav-link:hover {
            background: rgba(0, 160, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 160, 255, 0.3);
        }
        
        .nav-link.active {
            background: rgba(0, 160, 255, 0.3);
            box-shadow: 0 0 15px rgba(0, 160, 255, 0.5);
        }
        
        .login-section {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .login-btn {
            padding: 8px 25px;
            background: linear-gradient(45deg, #00a0ff, #0088ff);
            border: none;
            border-radius: 20px;
            color: white;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            min-width: 80px;
        }
        
        .login-btn:hover {
            background: linear-gradient(45deg, #0088ff, #0066ff);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 160, 255, 0.4);
        }
        
        .register-btn {
            padding: 8px 25px;
            background: linear-gradient(45deg, #ff00fe, #cc00cc);
            border: none;
            border-radius: 20px;
            color: white;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            min-width: 80px;
        }
        
        .register-btn:hover {
            background: linear-gradient(45deg, #cc00cc, #aa00aa);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 0, 254, 0.4);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
        }
        
        /* 流光效果 */
        .light-bar {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, 
                #00a0ff, 
                #ff00fe, 
                #00a0ff, 
                transparent);
            animation: lightFlow 3s linear infinite;
        }
        
        @keyframes lightFlow {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .nav-section {
                gap: 15px;
            }
            .nav-link {
                padding: 8px 15px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 992px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-section {
                order: 3;
                width: 100%;
                justify-content: center;
                margin-top: 15px;
                flex-wrap: wrap;
                gap: 10px;
            }
            .slogan {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-section {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 5, 20, 0.98);
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            }
            .nav-section.active {
                display: flex;
            }
            .login-section {
                order: 2;
                margin-left: auto;
            }
        }

        .content{
      position: relative;
    z-index: 100;
    width: 100%;
    margin-top: 80px; /* 给顶部栏目留出空间 */
}
.splash{
  position: relative;
  }
  img#qq {
    width: 128px;
    background-size: cover;
    border-radius: 200px;
    box-shadow: 0px 0px 40px rgba(63, 81, 181, 0.72);
    border: 3px solid #00a0ff;
    opacity: 1;
    margin: 0 auto;
	margin-bottom: 20px;
	transition: all 1.0s;  
}
#qq:hover {
    box-shadow: 0 0 10px #fff;
    -webkit-box-shadow: 0 0 19px #fff;
    transform:rotate(360deg);
    -ms-transform:rotate(360deg); 	/* IE 9 */
    -moz-transform:rotate(360deg); 	/* Firefox */
    -webkit-transform:rotate(360deg); /* Safari 和 Chrome */
    -o-transform:rotate(360deg); 	/* Opera */
    filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

/* 游戏外挂说明区域样式 */
.game-hack-info {
    position: relative;
    z-index: 100;
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(10, 5, 20, 0.9); /* 增加透明度让鼠标特效更明显 */
    border-radius: 15px;
    border: 1px solid rgba(0, 160, 255, 0.3);
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 160, 255, 0.2);
}

.game-hack-info h2 {
    color: #00a0ff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    border-bottom: 2px solid rgba(0, 160, 255, 0.5);
    padding-bottom: 15px;
}

.info-section {
    margin-bottom: 25px;
}

.info-section h3 {
    color: #4dc3ff;
    margin-bottom: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-section h3 i {
    color: #ff9900;
}

.info-content {
    background: rgba(15, 10, 25, 0.7); /* 增加透明度 */
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #00a0ff;
    line-height: 1.6;
}

.info-content p {
    margin: 8px 0;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.feature-item {
    background: rgba(20, 15, 35, 0.6); /* 增加透明度 */
    padding: 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item strong {
    color: #ff9900;
    display: block;
    margin-bottom: 5px;
}

.warning-box {
    background: rgba(255, 100, 100, 0.2); /* 增加透明度 */
    border: 1px solid rgba(255, 100, 100, 0.4);
    border-left: 4px solid #ff4444;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.warning-box h4 {
    color: #ff4444;
    margin-bottom: 10px;
}

.tip-box {
    background: rgba(100, 255, 100, 0.2); /* 增加透明度 */
    border: 1px solid rgba(100, 255, 100, 0.4);
    border-left: 4px solid #44ff44;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.tip-box h4 {
    color: #44ff44;
    margin-bottom: 10px;
}

/* 恢复默认鼠标指针 */
* {
    cursor: auto !important;
}

/* 确保所有内容都在canvas之上 */
.jumbotron, .game-hack-info, .container {
    position: relative;
    z-index: 100;
}

/* 主内容区域背景 */
.jumbotron {
    background: rgba(10, 5, 20, 0.85) !important; /* 半透明背景 */
    margin: 20px;
    border-radius: 15px;
    padding: 40px 0;
}

/* 修改鼠标特效画布背景为透明 */
canvas {
    background: transparent !important;
}
</style>
<style>
/* ==================== 通用重置 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden !important;
    height: auto !important;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

/* ==================== 头部高度调整 ==================== */
.top-header {
    height: 60px !important;
    min-height: 60px !important;
    padding: 5px 0 !important;
    background: rgba(15, 23, 42, 0.95) !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    height: 60px !important;
    padding: 0 20px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-logo {
    font-size: 26px !important;
    font-weight: bold;
    color: #00FFFF;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.slogan {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    padding: 8px 16px !important;
    font-size: 14px !important;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00FFFF;
    transform: translateY(-2px);
}

.login-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-btn, .register-btn {
    padding: 8px 20px !important;
    font-size: 14px !important;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.login-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.register-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.light-bar {
    height: 2px !important;
    background: linear-gradient(90deg, #00FFFF, #FF00FE, #00FFFF);
    animation: lightBar 3s infinite linear;
}

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

/* ==================== 主内容区域调整 ==================== */
.content {
    min-height: auto !important;
    padding-top: 15px !important; /* 减少这个值 */
    padding-bottom: 50px !important;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 5px;
    padding-right: 5px;
}

.jumbotron {
    min-height: auto !important;
    overflow: visible !important;
    padding: 20px 0 !important;
}

.jumbotron .container {
    max-width: 100%;
    padding: 0 !important;
}

.jumbotron .splash {
    padding: 0 !important;
}

/* ==================== 视频区域布局（对称设计） ==================== */
.video-section {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 20px 0 30px;
    align-items: stretch;
}

.video-left, .video-right {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-left h2, .video-right h2 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.video-left h2 {
    color: #03FF00;
}

.video-right h2 {
    color: #FF00FE;
}

.video-left h2:after, .video-right h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: currentColor;
}

.video-left p, .video-right p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 14px;
    padding-left: 5px;
}

.video-center {
    flex: 2;
    min-width: 300px;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* 功能标签 */
.feature-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 0;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 10px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.feature-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* ==================== 按钮组布局（对称设计） ==================== */
.button-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 10px 0;
}

.button-section {
    padding: 25px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.button-section h3.section-title {
    color: #00FFFF;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left !important;
    position: relative;
    padding-bottom: 10px;
}

.button-section h3.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #00FFFF;
}

.button-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.button-group .button {
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.button-group .button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00FFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

/* ==================== 脚本列表（一行3款对称设计） ==================== */
.scripts-section {
    margin: 5px 0 !important;
    padding: 5px !important;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-radius: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 2px rgba(0, 0, 0, 0.3);
}

.scripts-section .section-title {
    font-size: 2px !important;
    margin-bottom: 1px !important;
    color: #fff;
    text-align:left !important;
    position: relative;
    padding-bottom: 1px;
}

.scripts-section .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00FFFF, #FF00FE);
}

.section-subtitle {
    font-size: 15px !important;
    margin-bottom: 10px !important;
    color: rgba(255, 255, 255, 0.8);
    text-align: left 
}

.scripts-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    margin-top: 20px !important;
}

.script-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.script-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.script-icon {
    font-size: 28px;
    margin-right: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.script-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.script-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.script-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

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

.info-value {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #4f46e5;
}

.info-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.extract-btn {
    width: 100%;
    padding: 14px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.extract-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.extract-btn:disabled {
    background: linear-gradient(135deg, #475569, #64748b);
    cursor: not-allowed;
    opacity: 0.7;
}

/* ==================== 游戏外挂说明区域（对称设计） ==================== */
.game-hack-info {
    margin: 20px 0 !important;
    padding: 30px !important;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.game-hack-info h2 {
    font-size: 24px !important;
    margin-bottom: 25px !important;
    color: #fff;
    text-align: left
    position: relative;
    padding-bottom: 15px;
}

.game-hack-info h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #FF00FE, #00FFFF);
}

.info-section {
    margin-bottom: 25px !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.info-section h3 {
    font-size: 18px !important;
    margin: 0 0 15px 0 !important;
    color: #00FFFF;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left !important;
}

.info-section h3 i {
    color: #FF00FE;
}

.info-content {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.9);
}

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

.feature-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-item strong {
    display: block;
    color: #03FF00;
    margin-bottom: 5px;
    font-size: 14px;
}

.warning-box, .tip-box {
    padding: 20px !important;
    margin: 25px 0 !important;
    font-size: 14px !important;
    border-radius: 10px;
    border-left: 4px solid;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

.warning-box h4 {
    color: #ef4444;
    margin-bottom: 10px;
}

.tip-box {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
}

.tip-box h4 {
    color: #22c55e;
    margin-bottom: 10px;
}

/* ==================== 弹窗样式 ==================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.modal-title {
    color: #00FFFF;
    text-align: center;
    margin-bottom: 20px;
}

.activation-code {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.code-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.code-text {
    font-size: 24px;
    font-weight: bold;
    color: #03FF00;
    margin-top: 10px;
    letter-spacing: 1px;
}

.modal-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
}

.info-value {
    color: #fff;
    font-weight: 500;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.modal-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-copy {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-close {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==================== 响应式调整 ==================== */
@media (max-width: 1200px) {
    .video-section {
        flex-direction: column;
    }
    
    .video-left, .video-center, .video-right {
        width: 100%;
        min-width: auto;
    }
    
    .scripts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .nav-section {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px) !important;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 30px;
        transition: left 0.3s;
        z-index: 999;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-section.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        margin: 10px 0 !important;
        padding: 15px !important;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-btn {
        display: block !important;
    }
    
    .button-sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-header {
        height: 10px !important;
    }
    
    .header-container {
        padding: 0 15px !important;
    }
    
    .content {
        padding-top: 30px !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .video-section {
        margin: 10px 0 30px;
        gap: 20px;
    }
    
    .video-left, .video-right, .video-center {
        padding: 20px;
    }
    
    .scripts-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .feature-tags {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .game-hack-info,
    .scripts-section,
    .button-section {
        padding: 20px !important;
    }
    
    .modal {
        width: 95%;
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    color: #00FFFF;
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
}
</style>
