* {
    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;
}

.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;
}

.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;
}

.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;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .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;
    }

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

    .social-links {
        justify-content: center;
    }
    
    .partner-links {
        grid-template-columns: 1fr;
    }
    
    .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;
    }
}

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

/* 下载游戏卡片样式 */
.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;
    }
} 