* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #1a1a1a;
    color: #fff;
}

.header {
    background: #0a0a0a;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #23a48f;
    box-shadow: 0 0 20px rgba(35, 164, 143, 0.3);
}

.logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5em;
    color: #23a48f;
    text-shadow: 0 0 10px rgba(35, 164, 143, 0.5),
                 0 0 20px rgba(35, 164, 143, 0.3),
                 0 0 30px rgba(35, 164, 143, 0.2);
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.nav {
    background: #0a0a0a;
    padding: 15px 0;
    border-bottom: 1px solid #23a48f33;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* 移动端汉堡菜单按钮 */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #23a48f;
    font-size: 1.5em;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(35, 164, 143, 0.1);
    transform: scale(1.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.nav a:hover {
    color: #23a48f;
    text-shadow: 0 0 5px rgba(35, 164, 143, 0.3);
    background: rgba(35, 164, 143, 0.1);
}

.breadcrumb {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 20px;
    color: #aaa;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb a {
    color: #23a48f;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb a:hover {
    text-shadow: 0 0 5px rgba(35, 164, 143, 0.3);
}

.breadcrumb i {
    margin: 0 8px;
    font-size: 0.8em;
}

.breadcrumb span {
    color: #aaa;
}

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

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-title {
    font-size: 2.5em;
    color: #23a48f;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(35, 164, 143, 0.5);
}

.article-meta {
    color: #ffffff;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9em;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(35, 164, 143, 0.05);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid rgba(35, 164, 143, 0.1);
    transition: all 0.3s ease;
}

.article-meta span:hover {
    background: rgba(35, 164, 143, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(35, 164, 143, 0.2);
}

.article-meta i {
    color: #23a48f;
    transition: all 0.3s ease;
}

.article-meta span:hover i {
    transform: scale(1.1);
}

.article-content {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #23a48f33;
    box-shadow: 0 0 15px rgba(35, 164, 143, 0.1);
    position: relative;
    overflow: hidden;
}

.article-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(35, 164, 143, 0.5), transparent);
}

.article-content > p:first-of-type::first-letter {
    color: #23a48f;
    float: left;
    font-size: 3em;
    line-height: 0.8;
    padding-right: 10px;
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(35, 164, 143, 0.4);
    font-weight: bold;
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ffffff;
}

.article-content h2 {
    color: #23a48f;
    margin: 30px 0 15px;
    text-shadow: 0 0 5px rgba(35, 164, 143, 0.3);
    position: relative;
    padding-bottom: 10px;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: rgba(35, 164, 143, 0.5);
    border-radius: 2px;
}

.article-content h3 {
    color: #23a48f;
    margin: 25px 0 12px;
    font-size: 1.3em;
    position: relative;
    padding-left: 15px;
}

.article-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background: rgba(35, 164, 143, 0.5);
    border-radius: 3px;
}

.article-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid #23a48f33;
    box-shadow: 0 0 15px rgba(35, 164, 143, 0.1);
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* 表格样式 */
.release-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(35, 164, 143, 0.05);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.release-table th {
    background: linear-gradient(135deg, #23a48f 0%, #1a7a6b 100%);
    color: #ffffff;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(35, 164, 143, 0.3);
}

.release-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(35, 164, 143, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.release-table tr:hover td {
    background: rgba(35, 164, 143, 0.1);
    color: #23a48f;
}

.release-table tr:last-child td {
    border-bottom: none;
}

/* 特殊样式类 */
.highlight-text {
    color: #23a48f;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(35, 164, 143, 0.3);
}

.personal-note {
    font-style: italic;
    color: #23a48f;
    font-size: 1.1em;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(35, 164, 143, 0.05);
    border-left: 4px solid #23a48f;
    border-radius: 5px;
}

.important-notice {
    background: rgba(35, 164, 143, 0.08);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(35, 164, 143, 0.2);
    margin: 20px 0;
}

.important-notice h2 {
    color: #23a48f;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.developer-quote {
    background: rgba(35, 164, 143, 0.05);
    border-left: 4px solid #23a48f;
    padding: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #e0e0e0;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.developer-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3em;
    color: #23a48f;
    opacity: 0.3;
}

.signature {
    text-align: right;
    font-style: italic;
    color: #23a48f;
    margin-top: 30px;
    font-size: 1.1em;
}

.future-plans {
    background: rgba(35, 164, 143, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(35, 164, 143, 0.2);
    margin: 30px 0;
}

.future-plans h3 {
    color: #23a48f;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.final-note {
    background: linear-gradient(135deg, rgba(35, 164, 143, 0.1) 0%, rgba(35, 164, 143, 0.05) 100%);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(35, 164, 143, 0.3);
    margin: 25px 0;
    text-align: center;
    font-weight: 500;
}

.update-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.highlight-item {
    text-align: center;
    padding: 20px;
    background: rgba(35, 164, 143, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(35, 164, 143, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(35, 164, 143, 0.2);
}

.highlight-number {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #23a48f;
    text-shadow: 0 0 10px rgba(35, 164, 143, 0.5);
    margin-bottom: 5px;
}

.highlight-desc {
    color: #e0e0e0;
    font-size: 0.9em;
}

.related-articles {
    margin-top: 60px;
}

.related-title {
    color: #23a48f;
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 10px rgba(35, 164, 143, 0.5);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    background-color: #0f1622;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.related-card-content {
    padding: 25px;
    position: relative;
}

.related-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, #23a48f, transparent);
    border-radius: 0 0 3px 3px;
}

.related-card h3 {
    color: #23a48f;
    margin-bottom: 12px;
    text-shadow: 0 0 5px rgba(35, 164, 143, 0.3);
    font-size: 1.25em;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.related-card:hover h3 {
    color: #2abda5;
    text-shadow: 0 0 8px rgba(35, 164, 143, 0.5);
}

.related-card p {
    color: #e0e0e0;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #23a48f;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    transition: all 0.3s ease;
    background: rgba(35, 164, 143, 0.08);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(35, 164, 143, 0.2);
}

.read-more-text {
    transition: all 0.3s ease;
}

.read-more-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: rgba(35, 164, 143, 0.15);
    box-shadow: 0 3px 10px rgba(35, 164, 143, 0.2);
    transform: translateY(-2px);
}

.read-more:hover .read-more-text {
    margin-right: 3px;
}

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

.read-more:active {
    transform: translateY(0);
    box-shadow: 0 1px 5px rgba(35, 164, 143, 0.15);
}

footer {
    background: linear-gradient(to bottom, #0a0a0a, #141414);
    padding: 60px 20px 30px;
    border-top: 3px solid #23a48f;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 5% 20%, rgba(35, 164, 143, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 95% 85%, rgba(35, 164, 143, 0.03) 0%, transparent 25%);
    opacity: 0.5;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: #23a48f;
    margin-bottom: 25px;
    text-shadow: 0 0 5px rgba(35, 164, 143, 0.3);
    font-size: 1.3em;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #23a48f;
    box-shadow: 0 0 5px rgba(35, 164, 143, 0.5);
}

.footer-section p {
    color: #f0f0f0;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #f0f0f0;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.9;
    padding-left: 0;
    position: relative;
}

.footer-section ul li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    color: #23a48f;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #23a48f;
    text-shadow: 0 0 5px rgba(35, 164, 143, 0.3);
    padding-left: 15px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.contact-info {
    margin-top: 20px;
    color: #f0f0f0;
    font-size: 0.9em;
    opacity: 0.8;
}

.contact-info i {
    color: #23a48f;
    margin-right: 8px;
}

/* 404页面样式 */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('http://yonghengshijie.net/img/bg.webp') center/cover;
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 35%, rgba(35, 164, 143, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(35, 164, 143, 0.1) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.error-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.error-content {
    text-align: left;
}

.error-number {
    font-family: 'Press Start 2P', cursive;
    font-size: 8em;
    color: #23a48f;
    text-shadow: 0 0 20px rgba(35, 164, 143, 0.5);
    margin-bottom: 20px;
    line-height: 1;
}

.error-title {
    font-size: 2.5em;
    color: #23a48f;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(35, 164, 143, 0.5);
}

.error-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
    opacity: 0.9;
}

.error-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #23a48f 0%, #1a7a6b 100%);
    color: #ffffff;
    box-shadow: 0 5px 25px rgba(35, 164, 143, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(35, 164, 143, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #23a48f;
    border-color: #23a48f;
}

.btn-secondary:hover {
    background: rgba(35, 164, 143, 0.1);
    transform: translateY(-3px);
}

.error-suggestions {
    text-align: left;
}

.error-suggestions h3 {
    color: #23a48f;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.error-suggestions ul {
    list-style: none;
}

.error-suggestions li {
    margin-bottom: 10px;
}

.error-suggestions a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

.error-suggestions a:hover {
    color: #23a48f;
    text-shadow: 0 0 5px rgba(35, 164, 143, 0.3);
    padding-left: 10px;
}

.error-visual {
    position: relative;
    height: 400px;
}

.floating-particles {
    position: relative;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(35, 164, 143, 0.3);
    box-shadow: 0 0 20px rgba(35, 164, 143, 0.5);
    animation: float 6s infinite ease-in-out;
}

.particle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.particle-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 60%;
    animation-delay: 2s;
}

.particle-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
}

.particle-5 {
    width: 90px;
    height: 90px;
    top: 10%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(10px) translateX(-10px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translateY(20px) translateX(15px) scale(1.05);
        opacity: 0.5;
    }
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #23a48f;
    font-size: 1.5em;
    transition: all 0.3s;
    text-shadow: 0 0 5px rgba(35, 164, 143, 0.3);
    transform: scale(1);
}

.social-links a:hover {
    color: #1a7a6b;
    text-shadow: 0 0 10px rgba(35, 164, 143, 0.5);
    transform: scale(1.15);
}

.partner-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #23a48f33;
}

.footer-bottom p {
    color: #ffffff;
}

/* 页脚统计信息 */
.footer-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.footer-stats .stat {
    text-align: center;
}

.footer-stats .stat-number {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
    color: #23a48f;
    text-shadow: 0 0 5px rgba(35, 164, 143, 0.3);
}

.footer-stats .stat-label {
    display: block;
    font-size: 0.8em;
    color: #cccccc;
    margin-top: 2px;
}

/* 版本信息 */
.version-info {
    margin-top: 10px;
}

.version-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(35, 164, 143, 0.1);
}

.version-item:last-child {
    border-bottom: none;
}

.version-label {
    color: #cccccc;
    font-size: 0.9em;
}

.version-value {
    color: #23a48f;
    font-weight: 600;
    font-size: 0.9em;
}

/* 页脚底部内容 */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-slogan {
    color: #23a48f;
    font-style: italic;
    font-size: 0.9em;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #23a48f 0%, #1a7a6b 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    box-shadow: 0 5px 25px rgba(35, 164, 143, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 35px rgba(35, 164, 143, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        position: relative;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a0a0a;
        border-top: 1px solid #23a48f33;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 20px 0;
    }
    
    .nav a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        border-bottom: 1px solid #23a48f33;
        transition: all 0.3s ease;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .nav a:hover {
        background: rgba(35, 164, 143, 0.1);
        color: #23a48f;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .article-content {
        padding: 25px;
    }

    .article-content > p:first-of-type::first-letter {
        font-size: 2.5em;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-section {
        padding: 20px 0;
    }
    
    .footer-section h3 {
        font-size: 1.2em;
        margin-bottom: 20px;
    }
    
    .footer-section p {
        font-size: 0.9em;
        line-height: 1.6;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .social-links a {
        padding: 12px;
        font-size: 1.2em;
        border-radius: 50%;
        background: rgba(35, 164, 143, 0.1);
        border: 1px solid rgba(35, 164, 143, 0.3);
        touch-action: manipulation;
    }
    
    .social-links a:active {
        transform: scale(0.9);
    }
    
    .footer-links {
        align-items: center;
        gap: 12px;
    }
    
    .footer-links a {
        padding: 10px 15px;
        border-radius: 20px;
        background: rgba(35, 164, 143, 0.1);
        border: 1px solid rgba(35, 164, 143, 0.3);
        touch-action: manipulation;
        display: block;
        margin: 5px 0;
    }
    
    .footer-links a:active {
        transform: scale(0.95);
    }
    
    /* 页脚移动端适配 */
    .footer-stats {
        gap: 15px;
        justify-content: center;
    }
    
    .footer-stats .stat-number {
        font-size: 1.1em;
    }
    
    .footer-stats .stat-label {
        font-size: 0.75em;
    }
    
    .version-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .version-label {
        font-size: 0.8em;
    }
    
    .version-value {
        font-size: 0.8em;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .footer-slogan {
        font-size: 0.8em;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.8em;
    }
    
    .article-title {
        font-size: 2em;
    }
    
    .article-meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .related-card:last-child {
        padding: 20px 15px;
    }
    
    .related-card:last-child h3 {
        font-size: 1.2em;
    }
    
    .related-card:last-child .read-more {
        padding: 8px 16px;
    }

    /* 404页面移动端适配 */
    .error-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .error-content {
        text-align: center;
    }

    .error-number {
        font-size: 6em;
    }

    .error-title {
        font-size: 2em;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .error-visual {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 0.8em;
        margin: 15px auto 0;
        padding: 0 15px;
        justify-content: center;
        line-height: 1.8;
    }
    
    .breadcrumb i {
        margin: 0 5px;
    }
    
    .article-title {
        font-size: 1.8em;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-content > p:first-of-type::first-letter {
        font-size: 2.2em;
    }
    
    .article-content h2 {
        font-size: 1.4em;
    }
    
    .article-content h3 {
        font-size: 1.2em;
        padding-left: 12px;
    }
    
    .related-title {
        font-size: 1.5em;
    }
    
    .related-articles {
        margin-top: 40px;
    }
    
    footer {
        padding: 40px 15px 20px;
        margin-top: 40px;
    }
    
    .footer-section h3 {
        font-size: 1.2em;
        margin-bottom: 20px;
    }
    
    .footer-section p {
        font-size: 0.9em;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
    }
    
    .footer-section ul li a {
        font-size: 0.9em;
    }
    
    .article-meta {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .article-meta span {
        font-size: 0.85em;
        padding: 4px 8px;
        border-radius: 15px;
    }
    
    .read-more {
        padding: 6px 12px;
        font-size: 0.85em;
        border-radius: 15px;
    }

    .related-grid {
        gap: 15px;
    }
    
    .related-card-content {
        padding: 20px;
    }
    
    .related-card-content::before {
        height: 40px;
    }
    
    .related-card h3 {
        font-size: 1.2em;
    }
    
    .related-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 360px) {
    .article-title {
        font-size: 1.6em;
    }
    
    .article-content {
        padding: 15px;
    }
    
    .article-content > p:first-of-type::first-letter {
        font-size: 2em;
    }
    
    .article-content p {
        font-size: 0.95em;
    }
    
    .article-content h2 {
        font-size: 1.3em;
    }
    
    .article-content h3 {
        font-size: 1.1em;
        padding-left: 10px;
    }
    
    /* 表格移动端适配 */
    .release-table {
        font-size: 0.9em;
    }
    
    .release-table th,
    .release-table td {
        padding: 10px 8px;
    }
    
    /* 特殊样式移动端适配 */
    .update-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .highlight-number {
        font-size: 1.5em;
    }
    
    .important-notice,
    .future-plans,
    .final-note {
        padding: 15px;
    }
    
    .developer-quote {
        padding: 15px;
    }
    
    .personal-note {
        padding: 12px;
        font-size: 1em;
    }
    
    .related-grid {
        gap: 12px;
    }
    
    .related-card-content {
        padding: 15px;
    }
    
    .related-card-content::before {
        height: 30px;
    }
    
    .related-card h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    
    .related-card p {
        margin-bottom: 15px;
        font-size: 0.85em;
    }
    
    footer {
        padding: 30px 12px 15px;
        margin-top: 30px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h3 {
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 0.85em;
    }
    
    .social-links a {
        font-size: 1.3em;
    }
    
    .article-meta {
        gap: 10px;
    }
    
    .article-meta span {
        font-size: 0.8em;
        padding: 3px 6px;
        border-radius: 12px;
    }
    
    .breadcrumb {
        gap: 3px;
    }
    
    .read-more {
        padding: 5px 10px;
        font-size: 0.8em;
        border-radius: 12px;
    }
}

@media (max-width: 320px) {
    .logo {
        font-size: 2em;
    }
    
    .breadcrumb {
        font-size: 0.75em;
    }
    
    .article-title {
        font-size: 1.4em;
    }
    
    .article-content h2 {
        font-size: 1.2em;
    }
    
    .article-content p,
    .article-content li {
        font-size: 0.9em;
        line-height: 1.5;
    }
    
    .related-grid {
        gap: 10px;
    }
    
    .related-card-content {
        padding: 12px;
    }
    
    .related-card h3 {
        font-size: 1em;
        margin-bottom: 8px;
    }
    
    .related-card p {
        font-size: 0.8em;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .footer-section h3 {
        font-size: 1.1em;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 0.8em;
    }
    
    .footer-bottom {
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .footer-bottom p {
        font-size: 0.75em;
    }
    
    .article-meta span {
        font-size: 0.75em;
        padding: 2px 5px;
    }
    
    .read-more {
        padding: 4px 8px;
        font-size: 0.75em;
        border-radius: 10px;
    }
    
    /* 表格超小屏幕适配 */
    .release-table {
        font-size: 0.8em;
    }
    
    .release-table th,
    .release-table td {
        padding: 8px 6px;
    }
    
    /* 特殊样式超小屏幕适配 */
    .update-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .highlight-item {
        padding: 12px;
    }
    
    .highlight-number {
        font-size: 1.3em;
    }
    
    .important-notice,
    .future-plans,
    .final-note {
        padding: 12px;
    }
    
    .developer-quote {
        padding: 12px;
    }
    
    .personal-note {
        padding: 10px;
        font-size: 0.9em;
    }
}

/* 触摸交互优化 */
* {
    -webkit-tap-highlight-color: transparent;
}

button, a, .clickable {
    -webkit-tap-highlight-color: rgba(35, 164, 143, 0.2);
    touch-action: manipulation;
}

/* 防止双击缩放 */
input, textarea, select {
    touch-action: manipulation;
}

/* 移动端滚动优化 */
body {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* 移动端视口优化 */
@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* 防止水平滚动 */
    .container, .article-container, .related-grid {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* 移动端按钮优化 */
    .read-more, .btn-primary, .btn-secondary {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* 移动端文字选择优化 */
    .article-title, .article-content h2, .article-content h3 {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

/* 下载游戏卡片样式 */
.download-card {
    background: linear-gradient(135deg, #0e2a24 0%, #062926 100%);
    border: 2px solid #23a48f;
    position: relative;
    overflow: hidden;
    padding: 25px 20px;
    animation: pulse 2s infinite alternate;
    transform-origin: center;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 15px rgba(35, 164, 143, 0.4);
    }
    100% {
        box-shadow: 0 0 25px rgba(35, 164, 143, 0.7);
    }
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(35, 164, 143, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.download-card::after {
    content: '推荐';
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: #23a48f;
    color: white;
    padding: 5px 30px;
    font-size: 0.8em;
    transform: rotate(45deg);
    font-weight: bold;
    box-shadow: 0 0 10px rgba(35, 164, 143, 0.4);
}

.download-card h3 {
    color: #fff;
    font-size: 1.3em;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(35, 164, 143, 0.6);
}

.download-card p {
    color: #e0f5f1;
    font-size: 1.05em;
}

.download-card .read-more {
    background-color: #23a48f;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(35, 164, 143, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
}

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

.download-card .read-more:hover::before {
    left: 100%;
}

.download-card .read-more:hover {
    background-color: #2abda5;
    box-shadow: 0 0 20px rgba(35, 164, 143, 0.7);
    transform: scale(1.05);
}

.download-card .read-more-text {
    font-weight: bold;
    font-size: 1.1em;
    color: white;
}

.download-card .read-more-icon {
    background-color: #ffffff;
    color: #23a48f;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .download-card {
        padding: 20px 15px;
    }
    
    .download-card h3 {
        font-size: 1.2em;
    }
    
    .download-card .read-more {
        padding: 8px 16px;
    }
} 