:root {
    --primary-color: #ffffff;
    --secondary-color: #00ffff;
    --accent-color: #ff003c;
    --background-color: #0a0a0a;
    --text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 噪点效果叠加 */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1000;
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    backdrop-filter: blur(10px);
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1800px;
    margin: 0 auto;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-link .link-text {
    position: relative;
    z-index: 1;
}

.link-hover-effect {
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transform: skew(-20deg);
    transition: opacity 0.3s ease;
}

.nav-link:hover .link-hover-effect {
    opacity: 0.15;
}

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

.preorder-btn {
    position: relative;
    display: inline-block;
    padding: 0.8rem 2rem;
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    overflow: hidden;
    transition: color 0.3s ease;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: skew(-20deg);
    z-index: 0;
    transition: all 0.3s ease;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.preorder-btn:hover .btn-bg {
    background: var(--primary-color);
    transform: skew(-20deg) scale(1.1);
    box-shadow: 0 0 20px rgba(240, 219, 79, 0.4);
}

.preorder-btn:hover {
    color: var(--background-color);
}

/* 英雄区域样式 */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: url('../images/wasteland-bg.jpg') no-repeat center center;
    background-size: cover;
    animation: backgroundShift 20s ease-in-out infinite;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
    box-shadow: inset 0 0 100px rgba(0, 255, 255, 0.2),
                inset 0 0 50px rgba(255, 0, 100, 0.2);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(255, 255, 255, 0.02) 50%,
        transparent 50%
    );
    background-size: 100% 4px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 2;
}

.hero-video {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    margin-right: 40%;
    text-align: left;
    align-items: flex-start;
    padding-left: 5%;
    padding-top: 20vh;
    background: transparent;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(240, 219, 79, 0.5),
                 0 0 20px rgba(240, 219, 79, 0.3);
    line-height: 1.2;
}

.cyber-text {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    max-width: 600px;
    line-height: 1.5;
}

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

/* 角色容器样式 */
.character-container {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 90vh;
    z-index: 2;
    overflow: hidden;
}

.character-image {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
}

.character-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    filter: contrast(1.1) brightness(1.1);
}

.character-glitch-effect {
    position: absolute;
    top: 0;
    right: 5%;
    width: 100%;
    height: 100%;
    background: url('../images/character.png') no-repeat right bottom;
    background-size: contain;
    opacity: 0;
    filter: brightness(1.5) contrast(1.2) hue-rotate(90deg);
    animation: glitch 0.2s infinite;
    z-index: 1;
}

.character-scanlines {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 0.5%,
        transparent 1%
    );
    pointer-events: none;
}

.character-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 70% 50%,
        rgba(255, 230, 0, 0.1),
        transparent 70%
    );
    mix-blend-mode: screen;
    animation: glow-pulse 4s infinite;
}

@keyframes glitch {
    0% {
        opacity: 0;
        transform: translate(0);
    }
    1% {
        opacity: 0.1;
        transform: translate(-5px, 5px);
    }
    2% {
        opacity: 0;
        transform: translate(5px, -5px);
    }
    3% {
        opacity: 0.1;
        transform: translate(-3px, 2px);
    }
    4% {
        opacity: 0;
        transform: translate(0);
    }
    100% {
        opacity: 0;
    }
}

@keyframes glow-pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes backgroundShift {
    0% {
        background-position: center center;
    }
    50% {
        background-position: center calc(center + 20px);
    }
    100% {
        background-position: center center;
    }
}

/* 斜线背景部分 */
.diagonal-bg {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    transform: skewY(-5deg);
}

.diagonal-bg .content-wrapper {
    transform: skewY(5deg);
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 5%;
}

.diagonal-bg.reverse {
    transform: skewY(5deg);
    background: linear-gradient(225deg, #1a1a1a 0%, #0a0a0a 100%);
}

.diagonal-bg.reverse .content-wrapper {
    transform: skewY(-5deg);
}

/* 删除原画设计部分样式 */
.art-section,
.art-grid,
.art-item,
.art-image,
.art-overlay {
    display: none;
}

/* 媒体区域样式 */
.media-section,
.media-grid,
.media-item,
.media-overlay,
.play-icon {
    display: none;
}

/* 新闻区域样式 */
.news-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 5%;
}

.news-column {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-column:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.news-column .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(240, 219, 79, 0.3);
    position: relative;
    padding-bottom: 0.5rem;
}

.news-column .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        transparent 100%);
    opacity: 0.3;
}

.news-list {
    list-style: none;
    padding: 0;
}

.news-item {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.news-date {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    text-align: left;
}

.news-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-left: 1rem;
}

.news-link::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

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

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

@media (max-width: 1200px) {
    .news-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .news-column {
        padding: 1.5rem;
    }
}

/* 页脚样式 */
.footer {
    background: #0a0a0a;
    padding: 4rem 5%;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-size: 2rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-icon {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
}

/* 赛博朋克按钮样式 */
.cyber-button {
    position: relative;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cyber-button::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 2px solid var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 85% 100%, 0 100%);
    transition: all 0.3s ease;
}

.cyber-button .btn-glitch {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    filter: blur(1px);
    opacity: 0.5;
}

.cyber-button .btn-bg-1,
.cyber-button .btn-bg-2 {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 85% 100%, 0 100%);
    transition: all 0.3s ease;
    z-index: -1;
}

.cyber-button .btn-bg-1 {
    background: linear-gradient(135deg, rgba(255, 0, 60, 0.5), rgba(0, 255, 255, 0.5));
}

.cyber-button .btn-bg-2 {
    background: #000;
    transform: translate(3px, 3px);
}

.cyber-button .btn-text {
    position: relative;
    z-index: 1;
}

.cyber-button:hover {
    transform: translate(-2px, -2px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.cyber-button:hover::before {
    border-color: var(--secondary-color);
}

.cyber-button:hover .btn-glitch {
    display: block;
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.cyber-button:hover .btn-bg-1 {
    transform: translate(-4px, -4px);
}

.cyber-button:hover .btn-bg-2 {
    transform: translate(4px, 4px);
}

/* 主要按钮变体 */
.cyber-button.primary::before {
    border-color: var(--primary-color);
}

.cyber-button.primary .btn-bg-1 {
    background: linear-gradient(135deg, rgba(240, 219, 79, 0.5), rgba(255, 0, 60, 0.5));
}

/* 次要按钮变体 */
.cyber-button.secondary::before {
    border-color: var(--secondary-color);
}

.cyber-button.secondary .btn-bg-1 {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.5), rgba(255, 0, 60, 0.5));
}

@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);
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero-content {
        margin-right: 35%;
        padding-left: 4%;
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin-right: 0;
        padding: 15vh 2rem 0;
        text-align: center;
        align-items: center;
    }
    
    .character-container {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .media-item.large {
        grid-column: auto;
        height: 300px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .navbar {
        height: 60px;
        background: rgba(0, 0, 0, 0.95);
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links li {
        display: block;
        margin: 1rem 0;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .section-content {
        padding-top: 2rem;
    }

    .scroll-indicator {
        bottom: 2rem;
    }
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

/* 删除原有的特效部分样式 */
.features-section,
.feature-grid,
.feature-item,
.feature-icon {
    display: none;
}

/* 添加"更多"按钮和标题栏的样式 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        transparent 100%);
    opacity: 0.3;
}

.more-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(0, 255, 255, 0.05);
}

.more-link:hover {
    color: var(--primary-color);
    border-color: rgba(240, 219, 79, 0.4);
    background: rgba(240, 219, 79, 0.05);
    box-shadow: 0 0 15px rgba(240, 219, 79, 0.2);
}

.more-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.more-link:hover .more-icon {
    transform: translateX(3px);
}

/* 更新原有的标题样式 */
.section-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(240, 219, 79, 0.3);
    margin: 0;
}

@media (max-width: 768px) {
    .more-link {
        padding: 0.15rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* 文章列表页样式 */
.article-list-section {
    padding: 4rem 0;
}

.article-list-section .content-wrapper {
    max-width: 1200px;
    padding: 0 5%;
    margin: 0 auto;
}

.filter-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.category-filter {
    background: rgba(10, 10, 10, 0.7);
    color: var(--text-color);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.category-filter:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.articles-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
    width: 100%;
}

.article-card {
    display: flex;
    flex-direction: column;
 

					
    background: rgba(20, 20, 20, 0.5);
    border-radius: 8px;
											 						  
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
    padding: 1.5rem;
}
.article-list {
    list-style: none;
    display: contents;
}

.article-list-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.article-list-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
}

.article-card {
    display: flex;
    flex-direction: column;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
    padding: 1.5rem;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.3);
}

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.article-list-link {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    padding: 1.5rem;
    height: 100%;
}

.article-list-header {
    display: flex;
    justify-content: space-between;
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.article-list-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.article-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: left;
    width: 100%;
}

.article-excerpt {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: left;
    width: 100%;
}

.article-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    padding-top: 1rem;
    width: 100%;
    text-align: left;
}

.article-date {
    text-align: left;
    width: 100%;
}

.article-image-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.article-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px; /* 可选：圆角 */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* 可选：阴影 */
}

.article-image-caption {
    text-align: center;
    color: #888;
    margin-top: 10px;
    font-style: italic;
}


@media (max-width: 768px) {
    .articles-grid {
        padding: 0 1rem;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.page-link {
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-link.active,
.page-link:hover {
    background: var(--secondary-color);
    color: var(--background-color);
}

.page-link.next {
    background: rgba(0, 255, 255, 0.1);
}

@media (max-width: 1200px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-list-item {
        flex-direction: column;
    }

    .article-thumbnail {
        display: none;
    }
}

@media (max-width: 768px) {
    .filter-controls {
        justify-content: center;
    }

    .pagination {
        flex-wrap: wrap;
    }
}

.article-list-section .section-header::after {
    display: none;
}

/* 删除阅读全文按钮的样式 */
.read-more {
    display: none;
}

/* 文章详情页样式 */
.article-detail-section {
    padding: 4rem 0;
}

.article-header {
    margin-bottom: 2rem;
    text-align: center;
}

.article-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.article-meta .article-category {
    background: rgba(0, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.article-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-image {
    margin: 2rem 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.article-image .image-caption {
    display: block;
    margin-top: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin: 2rem 0;
}

.article-footer {
    margin-top: 2rem;
    text-align: center;
}

.article-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}


.article-list-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.article-list-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.no-articles {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 2rem;
}

.tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--secondary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }

    .article-content {
        padding: 0 1rem;
    }
}

/* 账号找回页面样式 */
.account-recovery-section {
    padding: 4rem 0;
}

.account-recovery-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.account-recovery-form {
    margin-top: 2rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.verification-container {
    display: flex;
    gap: 1rem;
}

.verification-container input {
    flex-grow: 1;
}

.btn {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--background-color);
}

.btn-primary:hover {
    background: rgba(0, 255, 255, 0.8);
}

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

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.2);
}

.account-recovery-tips {
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.cyber-icon {
    margin-right: 0.5rem;
}

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

@media (max-width: 768px) {
    .account-recovery-container {
        max-width: 90%;
        padding: 1.5rem;
    }

    .verification-container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* 账号列表样式 */
.account-list-container {
    margin-bottom: 2rem;
}

.account-list-description {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.account-list {
    list-style-type: none;
    padding: 0;
}

.account-list li {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.account-list li:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.2);
}

.account-list .account-username {
    font-weight: bold;
    color: var(--primary-color);
}

.account-list .no-accounts {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.account-recovery-actions {
    display: flex;
    justify-content: center;
}
