/* Global Style Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-pink: #ff2a6d;
    --neon-blue: #05d9e8;
    --neon-purple: #d300c5;
    --dark-bg: #050a14;
    --darker-bg: #030710;
    --panel-bg: rgba(5, 10, 20, 0.8);
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(5, 217, 232, 0.1) 0%, transparent 70%),
        linear-gradient(to right, var(--darker-bg), var(--dark-bg), var(--darker-bg));
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(5, 10, 20, 0.9) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5, 10, 20, 0.9) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar Styles */
#neonNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(3, 7, 16, 0.8);
    backdrop-filter: blur(10px);
}

#neonNav.scrolled {
    background-color: rgba(3, 7, 16, 0.95);
    box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo .neon-text {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
}

.nav-link:hover {
    color: var(--neon-blue);
}

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

.nav-link.active {
    color: var(--neon-blue);
}

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

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--neon-blue);
    position: relative;
    transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--neon-blue);
    transition: all 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

/* 霓虹文字效果 */
.neon-text {
    color: var(--neon-blue);
    text-shadow: 
        0 0 3px var(--neon-blue),
        0 0 6px var(--neon-blue),
        0 0 10px var(--neon-blue),
        0 0 15px var(--neon-blue);
    position: relative;
    display: inline-block;
}

.neon-text[data-text]::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--neon-pink);
    text-shadow: 
        0 0 3px var(--neon-pink),
        0 0 6px var(--neon-pink),
        0 0 10px var(--neon-pink),
        0 0 15px var(--neon-pink);
    z-index: -1;
    opacity: 0.8;
    animation: glitch 3s infinite;
}

/* 故障效果动画 */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.glitch-text {
    animation: glitch 2s infinite;
}

/* 游戏卡片文本样式 */
.game-card .game-category {
    font-size: 0.9rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.5rem 0;
    text-shadow: 0 0 5px #00ffff;
}

.game-card .game-release {
    font-size: 0.85rem;
    color: #ff00ff;
    margin: 0;
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

/* 英雄区域样式 */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(5, 217, 232, 0.2) 50px, transparent 51px),
        repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(211, 0, 197, 0.2) 50px, transparent 51px),
        linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    background-size: 100% 100%, 100% 100%, 100% 100%;
    background-position: 0 0;
    animation: 
        gridPulse 5s ease-in-out infinite,
        gridFloat 25s ease-in-out infinite;
    z-index: 1;
    box-shadow: inset 0 0 100px rgba(5, 217, 232, 0.1);
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

@keyframes gridFloat {
    0% { background-position: 0 0; transform: perspective(500px) rotateX(0deg) translateY(0); }
    25% { background-position: -10px -10px; transform: perspective(500px) rotateX(0.5deg) translateY(-5px); }
    50% { background-position: 0 0; transform: perspective(500px) rotateX(0deg) translateY(0); }
    75% { background-position: 10px 10px; transform: perspective(500px) rotateX(-0.5deg) translateY(5px); }
    100% { background-position: 0 0; transform: perspective(500px) rotateX(0deg) translateY(0); }
}

/* 霓虹按钮 */
.neon-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.neon-button:hover {
    background-color: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 
        0 0 10px var(--neon-blue),
        0 0 20px var(--neon-blue),
        0 0 40px var(--neon-blue);
}

.neon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 217, 232, 0.4), transparent);
    transition: left 0.5s ease;
}

.neon-button:hover::before {
    left: 100%;
}

/* 全息效果 */
.hologram {
    position: relative;
    border: 1px solid var(--neon-blue);
    background: var(--panel-bg);
    backdrop-filter: blur(5px);
    box-shadow: 
        0 0 10px var(--neon-blue),
        inset 0 0 10px var(--neon-blue);
    overflow: hidden;
}

.hologram::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.hologram::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

/* 游戏区域样式 */
.games-section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    position: relative;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--panel-bg);
    border: 1px solid rgba(5, 217, 232, 0.3);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--neon-blue), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 0 20px var(--neon-blue),
        0 0 40px rgba(5, 217, 232, 0.3);
    border-color: var(--neon-blue);
}

.game-card:hover::before {
    opacity: 0.2;
}

.game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-image {
    transform: scale(1.05);
}

.game-card-content {
    padding: 20px;
}

.game-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
}

.game-card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 赛博任务墙样式 */
.missions-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
    position: relative;
}

.missions-panel {
    padding: 30px;
    border-radius: 5px;
}

.missions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-item {
    padding: 20px;
    background: rgba(3, 7, 16, 0.6);
    border-left: 3px solid var(--neon-purple);
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateX(10px);
    border-left-color: var(--neon-blue);
}

.mission-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--neon-purple);
    font-family: 'Orbitron', sans-serif;
}

.mission-date {
    font-size: 0.9rem;
    color: var(--neon-blue);
    margin-bottom: 10px;
}

.mission-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* 页脚样式 */
footer {
    padding: 50px 0;
    background-color: var(--darker-bg);
    position: relative;
    border-top: 1px solid var(--neon-blue);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.footer-info p {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 20px;
}

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

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

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1;
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 7, 16, 0.9);
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.5s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    border-radius: 5px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--neon-pink);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    transform: rotate(90deg) scale(1.2);
    color: var(--neon-blue);
}

.game-detail {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.game-detail-left {
    flex: 1;
    max-width: 400px;
}

.game-detail-img {
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(5, 217, 232, 0.3);
}

.game-detail-right {
    flex: 2;
}

.game-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
}

.game-detail-desc {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* 数据上传站样式 */
.upload-section {
    padding: 100px 0;
}

.upload-panel {
    padding: 40px;
    border-radius: 5px;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 1.1rem;
    color: var(--neon-blue);
    font-weight: 600;
}

.form-group input[type="file"] {
    padding: 10px;
    background: var(--panel-bg);
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
    color: var(--text-primary);
}

.form-group textarea {
    padding: 15px;
    background: var(--panel-bg);
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    min-height: 200px;
    resize: vertical;
}

.form-group input[type="submit"] {
    padding: 15px;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="submit"]:hover {
    background-color: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--neon-blue);
}

/* 数据可视化区域 */
.data-visualization {
    margin-top: 50px;
    padding: 30px;
    border-radius: 5px;
    position: relative;
}

.chart-container {
    position: relative;
    height: 400px;
    width: 100%;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--darker-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(5, 217, 232, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 2000;
    }
    
    .game-detail {
        flex-direction: column;
    }
    
    .game-detail-left {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* 加载动画 */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 1.5s infinite;
}

/* 扫描线效果 */
@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.scan-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, transparent, rgba(5, 217, 232, 0.3), transparent);
    animation: scan 3s linear infinite;
    pointer-events: none;
    z-index: 10;
}

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

/* 故障艺术过渡效果 */
@keyframes glitchTransition {
    0% { 
        transform: translate(0) skew(0); 
        opacity: 1;
    }
    20% { 
        transform: translate(-5px, 5px) skew(-5deg); 
        opacity: 0.8;
    }
    40% { 
        transform: translate(5px, -5px) skew(5deg); 
        opacity: 0.9;
    }
    60% { 
        transform: translate(-3px, 3px) skew(-3deg); 
        opacity: 0.85;
    }
    80% { 
        transform: translate(3px, -3px) skew(3deg); 
        opacity: 0.9;
    }
    100% { 
        transform: translate(0) skew(0); 
        opacity: 1;
    }
}

.glitch-transition {
    animation: glitchTransition 0.5s ease;
}

/* 游戏档案库页面样式 */
.games-archive-section {
    padding: 100px 0;
}

.games-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.game-selector-item {
    padding: 10px 20px;
    background: var(--panel-bg);
    border: 1px solid var(--neon-blue);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.game-selector-item:hover,
.game-selector-item.active {
    background-color: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--neon-blue);
}

.game-archive-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .game-archive-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.game-lore {
    padding: 30px;
    border-radius: 5px;
    position: relative;
}

.game-lore h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--neon-pink);
    font-family: 'Orbitron', sans-serif;
}

.game-lore p {
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.game-characters {
    padding: 30px;
    border-radius: 5px;
    position: relative;
}

.game-characters h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--neon-purple);
    font-family: 'Orbitron', sans-serif;
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.character-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 5px;
}

.character-item:hover {
    background: rgba(5, 217, 232, 0.1);
    transform: translateY(-5px);
}

.character-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--neon-purple);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.character-item:hover img {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}

.character-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* 数据上传站页面样式 */
.upload-section {
    padding: 100px 0;
}

.upload-panel {
    padding: 40px;
    border-radius: 5px;
    position: relative;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 1.1rem;
    color: var(--neon-blue);
    font-weight: 600;
}

.upload-dropzone {
    border: 2px dashed var(--neon-blue);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    background: rgba(5, 217, 232, 0.05);
}

.upload-dropzone:hover,
.upload-dropzone.active {
    background: rgba(5, 217, 232, 0.1);
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
}

.upload-dropzone p {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.upload-dropzone input[type="file"] {
    display: none;
}

.upload-btn {
    padding: 15px;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.upload-btn:hover {
    background-color: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--neon-blue);
}

.data-visualization {
    margin-top: 50px;
    padding: 30px;
    border-radius: 5px;
    position: relative;
}

.chart-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 16px;
    background: var(--panel-bg);
    border: 1px solid var(--neon-blue);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 10px var(--neon-blue);
}

.chart-container {
    position: relative;
    height: 400px;
    width: 100%;
    margin-bottom: 30px;
}

.data-summary {
    background: rgba(3, 7, 16, 0.6);
    padding: 20px;
    border-radius: 5px;
    border-left: 3px solid var(--neon-purple);
}

.data-summary h4 {
    font-size: 1.2rem;
    color: var(--neon-purple);
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.data-summary ul {
    list-style: none;
}

.data-summary li {
    padding: 5px 0;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(5, 217, 232, 0.1);
}

.sample-data {
    margin-top: 50px;
    padding: 30px;
    border-radius: 5px;
    background: rgba(3, 7, 16, 0.6);
}

.sample-data h3 {
    font-size: 1.5rem;
    color: var(--neon-pink);
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.sample-data pre {
    background: rgba(3, 7, 16, 0.8);
    padding: 20px;
    border-radius: 5px;
    border: 1px solid var(--neon-blue);
    overflow-x: auto;
    color: var(--text-secondary);
    font-family: monospace;
    font-size: 0.9rem;
}

/* Content Section Styles */
.content-section {
    padding: 150px 0 100px;
    position: relative;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.content-panel {
    background: var(--panel-bg);
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.content-header {
    border-bottom: 1px solid rgba(5, 217, 232, 0.3);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.content-subtitle {
    font-size: 1.2rem;
    color: var(--neon-pink);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.status-active {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}

.content-heading {
    font-size: 1.5rem;
    color: var(--neon-purple);
    margin: 30px 0 20px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-paragraph {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.content-paragraph.highlight {
    background: rgba(211, 0, 197, 0.1);
    border-left: 3px solid var(--neon-purple);
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 0 5px 5px 0;
}

.content-paragraph.highlight strong {
    color: var(--neon-pink);
    font-weight: 600;
}

.content-list {
    list-style: none;
    margin: 20px 0 30px 20px;
}

.list-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.6;
}

.list-item::before {
    content: '⟩';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-size: 1.2rem;
}

/* Contact Page Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.contact-card {
    background: rgba(3, 7, 16, 0.6);
    border: 1px solid rgba(5, 217, 232, 0.3);
    border-radius: 5px;
    padding: 30px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
    border-color: var(--neon-blue);
}

.contact-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info {
    color: var(--neon-pink);
    font-size: 1.1rem;
}

.contact-info strong {
    color: var(--text-primary);
    margin-right: 10px;
}

.response-times,
.communication-protocols,
.system-status {
    margin-top: 40px;
}

/* Footer Links Styles */
.footer-links {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--neon-blue);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .content-panel {
        padding: 30px 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer Partners Styles */
.footer-partners {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(5, 217, 232, 0.2);
}

.partners-title {
    font-size: 1.2rem;
    color: var(--neon-pink);
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.partner-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
}

.partner-link:hover {
    color: var(--neon-pink);
}

.partner-link:hover::after {
    width: 100%;
}

/* Responsive Styles for Partners */
@media (max-width: 768px) {
    .footer-partners {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .partners-links {
        gap: 15px;
    }
    
    .partner-link {
        font-size: 0.9rem;
    }
}