/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* section 通用样式 */
section {
    border-radius: 12px;
    margin: 2rem 0;
    overflow: hidden;
}

/* 赛博朋克风格字体 */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Rajdhani', 'Orbitron', sans-serif;
    line-height: 1.6;
    color: #00ffea;
    background-color: #0a0a1a;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 234, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 140, 0.1) 0%, transparent 20%),
        linear-gradient(to bottom, rgba(10, 10, 26, 0.8), rgba(10, 10, 26, 0.95));
    overflow-x: hidden;
}

body.loaded {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #00ffea;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: #00d9c9;
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.8);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    background-color: rgba(26, 26, 46, 0.95);
    color: #00ffea;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 255, 234, 0.2);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 255, 234, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: #00ffea;
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.logo h1:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.9);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #00ffea;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00ffea;
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: #00ffea;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #00ffea;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    transform: rotate(90deg);
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.9);
}

/* 英雄区 */
.hero {
    background: linear-gradient(rgba(10, 10, 26, 0.8), rgba(10, 10, 26, 0.9)), url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=cyberpunk%20game%20development%20studio%20with%20neon%20lights%20and%20futuristic%20computers&image_size=landscape_16_9');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #00ffea;
    padding: 10rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(0, 255, 234, 0.1), rgba(255, 0, 140, 0.1)),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 255, 234, 0.05) 50px, rgba(0, 255, 234, 0.05) 51px);
    animation: pulse 3s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(10, 10, 26, 1), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 30px rgba(0, 255, 234, 0.8);
    animation: fadeInUp 1s ease-in-out;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-in-out 0.3s both;
    color: #b3ffff;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.5);
}

/* 新增动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: rgba(0, 255, 234, 0.1);
    color: #00ffea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid #00ffea;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 255, 234, 0.3);
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 234, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: rgba(0, 255, 234, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 255, 234, 0.5);
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 255, 234, 0.3);
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid #ff008c;
    color: #ff008c;
    box-shadow: 0 4px 15px rgba(255, 0, 140, 0.2);
}

.btn.secondary:hover {
    background-color: rgba(255, 0, 140, 0.2);
    color: #ff008c;
    box-shadow: 0 6px 20px rgba(255, 0, 140, 0.4);
    text-shadow: 0 0 10px rgba(255, 0, 140, 0.7);
}

.btn.secondary::before {
    background: linear-gradient(90deg, transparent, rgba(255, 0, 140, 0.3), transparent);
}

.btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 30px;
}

/* 公司简介预览 */
.about-preview {
    padding: 6rem 0;
    background-color: rgba(26, 26, 46, 0.8);
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(0, 255, 234, 0.3);
    border-bottom: 1px solid rgba(0, 255, 234, 0.3);
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 255, 234, 0.05) 50px, rgba(0, 255, 234, 0.05) 51px);
}

.about-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.7);
    position: relative;
    z-index: 1;
}

.about-preview p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #b3ffff;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.5);
    position: relative;
    z-index: 1;
}

/* 游戏产品预览 */
.games-preview {
    padding: 6rem 0;
    background-color: rgba(10, 10, 26, 0.9);
    position: relative;
}

.games-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 234, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 140, 0.05) 0%, transparent 20%);
}

.games-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.7);
    position: relative;
    z-index: 1;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.game-card {
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 234, 0.2);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 255, 234, 0.3);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00ffea, #ff008c);
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 255, 234, 0.3);
    border-color: rgba(0, 255, 234, 0.6);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: saturate(1.2) contrast(1.1);
}

.game-card:hover img {
    transform: scale(1.05);
    filter: saturate(1.5) contrast(1.2);
}

.game-card h3 {
    padding: 1.5rem;
    padding-bottom: 0;
    font-size: 1.5rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.game-card p {
    padding: 1.5rem;
    padding-top: 0.5rem;
    color: #b3ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

.game-card .btn {
    margin: 0 1.5rem 1.5rem;
}

/* 新闻动态预览 */
.news-preview {
    padding: 6rem 0;
    background-color: rgba(26, 26, 46, 0.8);
    position: relative;
    border-top: 1px solid rgba(0, 255, 234, 0.3);
    border-bottom: 1px solid rgba(0, 255, 234, 0.3);
}

.news-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 255, 234, 0.05) 50px, rgba(0, 255, 234, 0.05) 51px);
}

.news-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.7);
    position: relative;
    z-index: 1;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.news-card {
    background-color: rgba(10, 10, 26, 0.8);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 255, 234, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 234, 0.3);
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00ffea, #ff008c);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.news-card:hover::before {
    transform: scaleY(1);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 255, 234, 0.3);
    border-color: rgba(0, 255, 234, 0.6);
}

.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
    transition: color 0.3s ease;
}

.news-card:hover h3 {
    color: #00ffea;
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.9);
}

.news-date {
    color: #ff008c;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(255, 0, 140, 0.7);
}

.news-card p {
    color: #b3ffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

/* 玩家评价 */
.testimonials {
    padding: 6rem 0;
    background-color: rgba(26, 26, 46, 0.8);
    position: relative;
    border-top: 1px solid rgba(0, 255, 234, 0.3);
    border-bottom: 1px solid rgba(0, 255, 234, 0.3);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 255, 234, 0.05) 50px, rgba(0, 255, 234, 0.05) 51px);
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.7);
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: rgba(10, 10, 26, 0.8);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 255, 234, 0.2);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 255, 234, 0.3);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00ffea, #ff008c);
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 255, 234, 0.3);
    border-color: rgba(0, 255, 234, 0.6);
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: #ff008c;
    text-shadow: 0 0 10px rgba(255, 0, 140, 0.7);
}

.testimonial-rating i {
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.testimonial-card p {
    color: #b3ffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00ffea;
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.testimonial-author h4 {
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
    margin-bottom: 0.2rem;
}

.testimonial-role {
    color: #ff008c;
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(255, 0, 140, 0.7);
}

/* 评论表单和互动元素 */
.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 234, 0.3);
}

.testimonial-date {
    color: #00ffea;
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.7);
}

.testimonial-actions {
    display: flex;
    gap: 1rem;
}

.testimonial-like, .testimonial-reply {
    background: transparent;
    border: 1px solid rgba(0, 255, 234, 0.5);
    color: #00ffea;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.testimonial-like:hover, .testimonial-reply:hover {
    background: rgba(0, 255, 234, 0.2);
    border-color: #00ffea;
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
    transform: translateY(-2px);
}

.testimonial-like i, .testimonial-reply i {
    margin-right: 0.2rem;
}

/* 评论表单 */
.testimonial-form {
    margin-top: 4rem;
    background-color: rgba(10, 10, 26, 0.8);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 255, 234, 0.2);
    border: 1px solid rgba(0, 255, 234, 0.3);
    position: relative;
}

.testimonial-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00ffea, #ff008c);
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.testimonial-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.7);
    font-size: 1rem;
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 255, 234, 0.5);
    border-radius: 8px;
    color: #b3ffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffea;
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
    background-color: rgba(26, 26, 46, 0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* 评分星星 */
.rating-stars {
    display: flex;
    gap: 0.5rem;
}

.rating-star {
    font-size: 1.5rem;
    color: rgba(0, 255, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-star:hover,
.rating-star.active {
    color: #00ffea;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
    transform: scale(1.1);
}

/* 表情选择器 */
.emoji-picker {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.emoji-btn {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 255, 234, 0.5);
    border-radius: 8px;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.emoji-btn:hover {
    background: rgba(0, 255, 234, 0.2);
    border-color: #00ffea;
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
    transform: scale(1.1);
}

/* 合作伙伴 */
.partners {
    padding: 6rem 0;
    background-color: rgba(10, 10, 26, 0.9);
    position: relative;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 234, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 140, 0.05) 0%, transparent 20%);
}

.partners h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.7);
    position: relative;
    z-index: 1;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 234, 0.3);
    box-shadow: 0 4px 15px rgba(0, 255, 234, 0.2);
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 255, 234, 0.3);
    border-color: rgba(0, 255, 234, 0.6);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: saturate(1.2) contrast(1.1);
}

/* 页脚 */
.footer {
    background-color: rgba(10, 10, 26, 0.95);
    color: #00ffea;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 255, 234, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00ffea, #ff008c, #00ffea);
    animation: gradientMove 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 234, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 140, 0.05) 0%, transparent 20%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
    letter-spacing: 2px;
}

.footer-logo p {
    color: #b3ffff;
    transition: color 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

.footer-logo:hover p {
    color: #00ffea;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    padding-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.5);
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00ffea, #ff008c);
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
    transition: width 0.3s ease;
}

.footer-links h4:hover::after,
.footer-contact h4:hover::after,
.footer-social h4:hover::after {
    width: 80px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #b3ffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

.footer-links ul li a:hover {
    color: #00ffea;
    padding-left: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff008c;
    text-shadow: 0 0 10px rgba(255, 0, 140, 0.7);
}

.footer-links ul li a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-contact p {
    color: #b3ffff;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

.footer-contact p:hover {
    color: #00ffea;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.footer-contact p i {
    transition: transform 0.3s ease;
    color: #ff008c;
    text-shadow: 0 0 10px rgba(255, 0, 140, 0.7);
}

.footer-contact p:hover i {
    transform: scale(1.2) rotate(10deg);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(26, 26, 46, 0.8);
    color: #00ffea;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 234, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.3);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 234, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background-color: rgba(0, 255, 234, 0.1);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 255, 234, 0.5);
    border-color: rgba(0, 255, 234, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 234, 0.3);
    padding-top: 2rem;
    text-align: center;
    color: #b3ffff;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

.footer-bottom p {
    transition: color 0.3s ease;
}

.footer-bottom:hover p {
    color: #00ffea;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

/* 动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 46, 0.98);
        padding: 1.5rem 0;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 20px rgba(0, 255, 234, 0.3);
        animation: slideDown 0.3s ease;
        border-top: 1px solid rgba(0, 255, 234, 0.3);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
        transition: transform 0.3s ease;
    }

    .mobile-menu:hover {
        transform: rotate(90deg);
    }

    .hero {
        padding: 8rem 0;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-preview h2,
    .games-preview h2,
    .news-preview h2 {
        font-size: 2rem;
    }

    .about-content,
    .mission-vision .container,
    .game-details,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-content {
        padding-left: 0;
        border-left: none;
        margin-top: 0.5rem;
    }

    .game-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .about-preview h2,
    .games-preview h2,
    .news-preview h2 {
        font-size: 1.8rem;
    }

    .game-card,
    .news-card,
    .job-item {
        padding: 1.5rem;
    }
}

/* 关于我们页面 */
.about-page {
    padding: 4rem 0;
    background-color: rgba(10, 10, 26, 0.9);
    position: relative;
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 234, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 140, 0.05) 0%, transparent 20%);
}

.about-page h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.7);
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
}

.about-text p {
    margin-bottom: 1rem;
    color: #b3ffff;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 255, 234, 0.3);
    border: 1px solid rgba(0, 255, 234, 0.3);
    filter: saturate(1.2) contrast(1.1);
}

.mission-vision {
    background-color: rgba(26, 26, 46, 0.8);
    padding: 4rem 0;
    margin-bottom: 4rem;
    position: relative;
    border-top: 1px solid rgba(0, 255, 234, 0.3);
    border-bottom: 1px solid rgba(0, 255, 234, 0.3);
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 255, 234, 0.05) 50px, rgba(0, 255, 234, 0.05) 51px);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.mission,
.vision {
    background-color: rgba(10, 10, 26, 0.8);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 255, 234, 0.2);
    border: 1px solid rgba(0, 255, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.mission::before,
.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00ffea, #ff008c);
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.mission h3,
.vision h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.mission p,
.vision p {
    color: #b3ffff;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

.timeline {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.timeline h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-date {
    width: 150px;
    font-weight: 600;
    color: #ff008c;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(255, 0, 140, 0.7);
}

.timeline-content {
    flex: 1;
    padding-left: 2rem;
    border-left: 2px solid #00ffea;
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.3);
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.timeline-content p {
    color: #b3ffff;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

/* 游戏产品页面 */
.games-page {
    padding: 4rem 0;
    background-color: rgba(10, 10, 26, 0.9);
    position: relative;
}

.games-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 234, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 140, 0.05) 0%, transparent 20%);
}

.games-page h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.7);
    position: relative;
    z-index: 1;
}

.game-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 234, 0.3);
    border: 1px solid rgba(0, 255, 234, 0.3);
    position: relative;
    z-index: 1;
}

.game-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00ffea, #ff008c);
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
}

.game-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.1);
}

.game-details-content {
    padding: 2rem;
}

.game-details-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
}

.game-details-content .game-status {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: rgba(0, 255, 234, 0.1);
    color: #00ffea;
    border: 1px solid #00ffea;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.3);
}

.game-details-content p {
    margin-bottom: 1.5rem;
    color: #b3ffff;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

.game-features {
    margin-bottom: 2rem;
}

.game-features h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.game-features ul {
    list-style: none;
}

.game-features ul li {
    margin-bottom: 0.5rem;
    color: #b3ffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

.game-features ul li i {
    color: #ff008c;
    text-shadow: 0 0 10px rgba(255, 0, 140, 0.7);
}

.game-links {
    display: flex;
    gap: 1rem;
}

/* 新闻动态页面 */
.news-page {
    padding: 4rem 0;
    background-color: rgba(10, 10, 26, 0.9);
    position: relative;
}

.news-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 234, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 140, 0.05) 0%, transparent 20%);
}

.news-page h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.7);
    position: relative;
    z-index: 1;
}

.news-item {
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 255, 234, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 255, 234, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00ffea, #ff008c);
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 234, 0.3);
    border-color: rgba(0, 255, 234, 0.6);
}

.news-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
}

.news-item p {
    color: #b3ffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

.news-item .news-date {
    color: #ff008c;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(255, 0, 140, 0.7);
}

/* 团队介绍页面 */
.team-page {
    padding: 4rem 0;
    background-color: rgba(10, 10, 26, 0.9);
    position: relative;
}

.team-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 234, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 140, 0.05) 0%, transparent 20%);
}

.team-page h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.7);
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.team-member {
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 234, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 255, 234, 0.3);
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00ffea, #ff008c);
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 234, 0.3);
    border-color: rgba(0, 255, 234, 0.6);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.1);
}

.team-member-content {
    padding: 1.5rem;
}

.team-member-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.team-member-content .position {
    color: #ff008c;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(255, 0, 140, 0.7);
}

.team-member-content p {
    color: #b3ffff;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

/* 联系我们页面 */
.contact-page {
    padding: 4rem 0;
    background-color: rgba(10, 10, 26, 0.9);
    position: relative;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 234, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 140, 0.05) 0%, transparent 20%);
}

.contact-page h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.7);
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    color: #ff008c;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    text-shadow: 0 0 10px rgba(255, 0, 140, 0.7);
}

.contact-info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.contact-info-item p {
    color: #b3ffff;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00ffea;
    font-weight: 500;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0, 255, 234, 0.3);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(26, 26, 46, 0.8);
    color: #00ffea;
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffea;
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.5);
    background-color: rgba(26, 26, 46, 0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* 招聘信息 */
.jobs-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 255, 234, 0.3);
    position: relative;
    z-index: 1;
}

.jobs-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.7);
}

.job-item {
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 255, 234, 0.2);
    border: 1px solid rgba(0, 255, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.job-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00ffea, #ff008c);
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.job-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #00ffea;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.job-item .job-department {
    color: #ff008c;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(255, 0, 140, 0.7);
}

.job-item p {
    color: #b3ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

.job-item .btn {
    margin-top: 1rem;
}