/* 黑客帝国风格主题 */

/* 全局样式重置 */
* {
    box-sizing: border-box;
}

body {
    background: #000000;
    color: #00ff41;
    font-family: 'Courier New', monospace;
    overflow-x: hidden;
}

/* 矩阵雨背景动画 */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, #000000 0%, #001100 100%);
}

.matrix-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 65, 0.1) 0%, transparent 50%);
    animation: matrixPulse 4s ease-in-out infinite alternate;
}

@keyframes matrixPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* 导航栏样式 */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    border-bottom: 2px solid #00ff41;
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    filter: brightness(0) invert(1) sepia(1) hue-rotate(90deg) saturate(2);
}

.navbar-nav > li > a {
    color: #00ff41 !important;
    text-shadow: 0 0 10px #00ff41;
    transition: all 0.3s ease;
}

.navbar-nav > li > a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 20px #00ff41, 0 0 30px #00ff41;
    background: rgba(0, 255, 65, 0.1) !important;
}

/* 主横幅样式 */
.jumbotron {
    background: linear-gradient(135deg, #000000 0%, #001100 50%, #000000 100%) !important;
    border: 2px solid #00ff41;
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.3);
    position: relative;
}

.jumbotron::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 65, 0.03) 2px,
            rgba(0, 255, 65, 0.03) 4px
        );
    pointer-events: none;
}

.jumbotron h1 {
    color: #00ff41;
    text-shadow: 0 0 20px #00ff41;
    font-family: 'Courier New', monospace;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.jumbotron .lead {
    color: #ffffff;
    text-shadow: 0 0 10px #00ff41;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 20px #00ff41; }
    100% { text-shadow: 0 0 30px #00ff41, 0 0 40px #00ff41; }
}

/* 三角形样式 - 保持几何形状 */
.up-triangle {
    border-bottom-color: #00ff41 !important;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.5));
}

.down-triangle {
    border-top-color: #00ff41 !important;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.5));
}

.up-triangle:hover, .down-triangle:hover {
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.8));
    transform: scale(1.05);
}

.triangles .info {
    color: #00ff41 !important;
    text-shadow: 0 0 10px #00ff41;
}

/* 章节标题 */
h2 {
    color: #00ff41 !important;
    text-shadow: 0 0 15px #00ff41;
    font-family: 'Courier New', monospace;
    border-bottom: 2px solid #00ff41;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h3, h4 {
    color: #ffffff !important;
    text-shadow: 0 0 10px #00ff41;
}

/* 段落文字 */
p, .lead {
    color: #cccccc !important;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

/* 按钮样式 */
.btn {
    background: linear-gradient(135deg, #001100, #003300) !important;
    border: 2px solid #00ff41 !important;
    color: #00ff41 !important;
    text-shadow: 0 0 10px #00ff41;
    transition: all 0.3s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #003300, #005500) !important;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* 卡片样式 */
.portfolio-block {
    background: rgba(0, 17, 0, 0.8) !important;
    border: 2px solid #00ff41 !important;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3) !important;
}

.portfolio-block:hover {
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6) !important;
    transform: translateY(-10px) !important;
}

.portfolio-caption {
    background: rgba(0, 0, 0, 0.9) !important;
    border-top: 2px solid #00ff41;
}

/* 特性框样式 */
.feature-box {
    background: rgba(0, 17, 0, 0.6);
    border: 1px solid #00ff41;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
    transform: translateY(-5px);
}

.feature-box-icon {
    color: #00ff41 !important;
    text-shadow: 0 0 15px #00ff41;
}

/* 价格表样式 */
.pricing-circle {
    background: linear-gradient(135deg, #001100, #003300) !important;
    border: 3px solid #00ff41 !important;
    color: #00ff41 !important;
    text-shadow: 0 0 10px #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

/* 客户项目样式 */
.client-item {
    background: rgba(0, 17, 0, 0.6);
    border: 1px solid #00ff41;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
    transition: all 0.3s ease;
}

.client-item:hover {
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
    transform: scale(1.05);
}

/* 表单样式 */
.form-control {
    background: rgba(0, 17, 0, 0.8) !important;
    border: 2px solid #00ff41 !important;
    color: #00ff41 !important;
    font-family: 'Courier New', monospace;
}

.form-control:focus {
    background: rgba(0, 34, 0, 0.9) !important;
    border-color: #00ff41 !important;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5) !important;
    color: #ffffff !important;
}

.form-control::placeholder {
    color: #666666 !important;
}

/* 联系部分 */
.contact {
    background: linear-gradient(135deg, #000000 0%, #001100 100%) !important;
    border-top: 2px solid #00ff41;
}

/* 页脚样式 */
footer {
    background: #000000 !important;
    border-top: 2px solid #00ff41;
    color: #00ff41 !important;
}

footer a {
    color: #00ff41 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px #00ff41;
}

/* 图片滤镜 */
img {
    filter: brightness(0.8) contrast(1.2) hue-rotate(90deg);
    transition: all 0.3s ease;
}

img:hover {
    filter: brightness(1) contrast(1.3) hue-rotate(90deg);
}

/* 六边形图标样式 */
.hexicon {
    position: relative;
    overflow: hidden;
    border: 2px solid #00ff41;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.hexicon:hover {
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.6);
}

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

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00ff41, #003300);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffffff, #00ff41);
}

/* 数字雨效果 */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .jumbotron {
        padding: 30px 15px !important;
        min-height: auto !important;
    }
    
    .jumbotron h1 {
        font-size: 2rem !important;
        margin-bottom: 15px;
    }
    
    .jumbotron .lead {
        font-size: 1rem !important;
        margin-bottom: 20px;
    }
    
    /* 三角形在移动端的优化 */
    .triangles {
        margin-top: 20px !important;
    }
    
    .up-triangle, .down-triangle {
        float: none !important;
        margin: 10px auto !important;
        display: block;
    }
    
    .up-triangle {
        border-left: 80px solid transparent !important;
        border-right: 80px solid transparent !important;
        border-bottom: 120px solid #00ff41 !important;
    }
    
    .down-triangle {
        border-left: 80px solid transparent !important;
        border-right: 80px solid transparent !important;
        border-top: 120px solid #00ff41 !important;
    }
    
    .triangles .info {
        font-size: 0.9rem !important;
        padding: 5px !important;
        width: 160px !important;
        margin-left: -80px !important;
    }
    
    .triangles .info i {
        font-size: 1.2rem !important;
        margin-bottom: 5px;
    }
    
    .feature-box {
        margin-bottom: 15px;
        padding: 15px !important;
    }
    
    .portfolio-block {
        margin-bottom: 20px;
    }
    
    /* 导航栏移动端优化 */
    .navbar-nav {
        background: rgba(0, 0, 0, 0.95) !important;
        border-radius: 5px;
        margin-top: 10px;
    }
    
    .navbar-nav > li > a {
        padding: 10px 15px !important;
        border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    }
    
    /* 六边形图标移动端优化 */
    .hexicon {
        margin-bottom: 15px;
    }
    
    .hexicon img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .jumbotron h1 {
        font-size: 1.5rem !important;
    }
    
    .jumbotron .lead {
        font-size: 0.9rem !important;
    }
    
    .up-triangle {
        border-left: 60px solid transparent !important;
        border-right: 60px solid transparent !important;
        border-bottom: 90px solid #00ff41 !important;
    }
    
    .down-triangle {
        border-left: 60px solid transparent !important;
        border-right: 60px solid transparent !important;
        border-top: 90px solid #00ff41 !important;
    }
    
    .triangles .info {
        font-size: 0.8rem !important;
        width: 120px !important;
        margin-left: -60px !important;
    }
    
    .triangles .info i {
        font-size: 1rem !important;
    }
    
    /* 矩阵雨在小屏幕上的优化 */
    .matrix-bg::before {
        opacity: 0.3 !important;
    }
}

/* 我们的故事模块科幻风格 */
.slider {
    background: linear-gradient(135deg, rgba(0, 20, 0, 0.9), rgba(0, 40, 0, 0.8)) !important;
    border: 1px solid rgba(0, 255, 65, 0.3);
    position: relative;
    overflow: hidden;
}

.slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.slider .container {
    position: relative;
    z-index: 2;
}

.slider h2 {
    color: #00ff41 !important;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    font-family: 'Courier New', monospace !important;
    font-weight: bold;
    margin-bottom: 20px;
}

.slider p {
    color: #a0ffa0 !important;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.feature-box {
    background: rgba(0, 0, 0, 0.7) !important;
    border: 1px solid rgba(0, 255, 65, 0.3) !important;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 65, 0.3), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.feature-box-icon {
    background: rgba(0, 255, 65, 0.1) !important;
    border: 2px solid rgba(0, 255, 65, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-box-icon {
    background: rgba(0, 255, 65, 0.2) !important;
    border-color: rgba(0, 255, 65, 0.8);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

.feature-box-icon i {
    color: #00ff41 !important;
    font-size: 14px !important;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.feature-box h4 {
    color: #00ff41 !important;
    font-family: 'Courier New', monospace !important;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
    margin-bottom: 10px;
}

.feature-box p {
    color: #a0ffa0 !important;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 透明经济模块科幻风格 */
.about {
    background: linear-gradient(135deg, rgba(0, 20, 0, 0.9), rgba(0, 40, 0, 0.8)) !important;
    border: 1px solid rgba(0, 255, 65, 0.3);
    position: relative;
    overflow: hidden;
}

/* 统一section.gray的背景风格 */
section.gray {
    background: linear-gradient(135deg, #000000 0%, #001100 50%, #000000 100%) !important;
    border: 2px solid #00ff41;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
    position: relative;
    overflow: hidden;
}

section.gray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 65, 0.03) 2px,
            rgba(0, 255, 65, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

section.gray h3 {
    color: #00ff41 !important;
    text-shadow: 0 0 10px #00ff41;
    position: relative;
    z-index: 2;
}

section.gray p {
    color: #00ff41 !important;
    position: relative;
    z-index: 2;
}

/* 语言切换按钮样式 */
#languageToggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, #00ff41, #00cc33);
    border: 2px solid #00ff41;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 60px;
    text-align: center;
    white-space: nowrap;
}

#languageToggle:hover {
    background: linear-gradient(135deg, #00cc33, #00ff41);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
    transform: translateY(-2px);
}

#languageToggle:active {
    transform: translateY(0);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

/* 响应式设计 */
@media (max-width: 768px) {
    #languageToggle {
        position: static !important;
        top: auto !important;
        right: auto !important;
        padding: 5px 10px;
        font-size: 10px;
        min-width: 45px;
        border-radius: 15px;
        margin: 5px;
        display: inline-block;
    }
    
    .navbar-right {
        float: none !important;
        margin-right: 0 !important;
    }
    
    .language-toggle {
        text-align: center;
        padding: 5px 0;
    }
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 65, 0.05) 50%, transparent 100%);
    animation: scanLine 3s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.about .container {
    position: relative;
    z-index: 2;
}

.about h3.title {
    color: #00ff41 !important;
    font-family: 'Courier New', monospace !important;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    margin-bottom: 25px;
}

.about h3.title span {
    color: #40ff40 !important;
    text-shadow: 0 0 15px rgba(64, 255, 64, 0.7);
}

.client-item {
    background: rgba(0, 0, 0, 0.7) !important;
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

.client-item:hover::before {
    left: 100%;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 65, 0.2);
    border-color: rgba(0, 255, 65, 0.6);
}

.client-item img {
    border: 2px solid rgba(0, 255, 65, 0.3) !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.client-item:hover img {
    border-color: rgba(0, 255, 65, 0.8) !important;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.client-item p {
    color: #a0ffa0 !important;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    margin-top: 10px;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

/* 客户评价科幻风格 */
.testimonials {
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid rgba(0, 255, 65, 0.4);
    border-radius: 8px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at center, rgba(0, 255, 65, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials h3.title {
    color: #00ff41 !important;
    font-family: 'Courier New', monospace !important;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    margin-bottom: 20px;
}

.testimonials h3.title span {
    color: #40ff40 !important;
    text-shadow: 0 0 15px rgba(64, 255, 64, 0.7);
}

.testimonial {
    background: rgba(0, 20, 0, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 6px;
    padding: 20px;
    position: relative;
}

.testimonial p {
    color: #a0ffa0 !important;
    font-family: 'Courier New', monospace;
    font-style: italic;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.testimonial-image img {
    border: 2px solid rgba(0, 255, 65, 0.5) !important;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.testimonial-author-info {
    color: #00ff41 !important;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

/* 可承接业务模块科幻风格 */
.pricing {
    background: linear-gradient(135deg, rgba(0, 20, 0, 0.9), rgba(0, 40, 0, 0.8)) !important;
    border: 1px solid rgba(0, 255, 65, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 255, 65, 0.03) 100px
        );
    pointer-events: none;
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing h2 {
    color: #00ff41 !important;
    font-family: 'Courier New', monospace !important;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
    margin-bottom: 20px;
}

.pricing p {
    color: #a0ffa0 !important;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.pricing .panel {
    background: rgba(0, 0, 0, 0.8) !important;
    border: 2px solid rgba(0, 255, 65, 0.4) !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing .panel::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(0, 255, 65, 0.2), 
        rgba(0, 255, 65, 0.1), 
        rgba(0, 255, 65, 0.2)
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing .panel:hover::before {
    opacity: 1;
}

.pricing .panel:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 255, 65, 0.3);
    border-color: rgba(0, 255, 65, 0.8) !important;
}

.pricing .panel-heading {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.2), rgba(0, 255, 65, 0.1)) !important;
    border-bottom: 1px solid rgba(0, 255, 65, 0.3) !important;
    border-radius: 6px 6px 0 0 !important;
}

.pricing .panel-heading h3 {
    color: #00ff41 !important;
    font-family: 'Courier New', monospace !important;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    margin: 0;
}

.pricing .panel-body {
    background: rgba(0, 20, 0, 0.5) !important;
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
}

.pricing-circle {
    width: 120px !important;
    height: 120px !important;
    border: 3px solid rgba(0, 255, 65, 0.6) !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.1), rgba(0, 0, 0, 0.8)) !important;
    color: #00ff41 !important;
    font-family: 'Courier New', monospace !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 20px auto !important;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.pricing .panel:hover .pricing-circle {
    border-color: rgba(0, 255, 65, 1) !important;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
    transform: scale(1.1);
}

.pricing .btn {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.8), rgba(0, 200, 50, 0.8)) !important;
    border: 2px solid rgba(0, 255, 65, 0.6) !important;
    color: #000 !important;
    font-family: 'Courier New', monospace !important;
    font-weight: bold !important;
    text-shadow: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.pricing .btn:hover::before {
    left: 100%;
}

.pricing .btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 65, 1), rgba(0, 200, 50, 1)) !important;
    border-color: rgba(0, 255, 65, 1) !important;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

.pricing .list-group-item {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(0, 255, 65, 0.2) !important;
    color: #a0ffa0 !important;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.pricing .list-group-item:hover {
    background: rgba(0, 255, 65, 0.1) !important;
    border-color: rgba(0, 255, 65, 0.4) !important;
}

.pricing .list-group-item i {
    color: #00ff41 !important;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.pricing .list-group-item i.text-danger,
.pricing .list-group-item i.text-info,
.pricing .list-group-item i.text-success,
.pricing .list-group-item i.text-warning {
    color: #00ff41 !important;
}

/* 加载动画 */
.loading-matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', monospace;
    color: #00ff41;
    font-size: 2rem;
    text-shadow: 0 0 20px #00ff41;
}

.loading-matrix.fade-out {
    opacity: 0;
    transition: opacity 1s ease-out;
    pointer-events: none;
}