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

/* 防止Vue未渲染时内容闪现 */
[v-cloak] {
    display: none;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #13131a;
    --bg-card: #1a1a24;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-blue: #6366f1;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0f2e 50%, #0f0a1a 100%);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s ease;
}

.navbar.scrolled .nav-container {
    padding: 0.6rem 3rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: transform 0.3s;
    object-fit: cover;
    object-position: center;
    scale: 1.5;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
}

/* 按钮样式 */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: white;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-secondary:hover {
    border-color: var(--accent-purple);
    background: rgba(168, 85, 247, 0.1);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* 首页英雄区 */
.hero-section {
    min-height: 200vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 30rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    width: 100%;
    padding-top: 10vh;
}

.hero-below {
    text-align: center;
    z-index: 1;
    padding-top: 4rem;
}

.logo-container {
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-icon-image {
    width: 150px;
    height: auto;
    animation: fadeInUp 1s ease-out;
    margin-bottom: -2rem;
}

.hero-title-image {
    width: 450px;
    height: auto;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    margin-bottom: -5rem;
}

.hero-subtitle-image {
    width: 350px;
    height: auto;
    opacity: 0.7;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 24px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
}

.fish-icon {
    font-size: 3rem;
    font-weight: bold;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    letter-spacing: 0.2em;
    font-weight: 300;
}

.slogan {
    font-size: 1.75rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 5rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.scroll-indicator {
    animation: fadeInUp 1s ease-out 0.9s backwards;
    margin-top: 6rem;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
}

.mouse-icon::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* 通用区块样式 */
.page-section {
    min-height: 100vh;
    padding: 8rem 3rem 4rem;
}

.home-page section {
    padding: 4rem 3rem;
}

.home-page .hero-section {
    min-height: 100vh;
    padding: 6rem 2rem 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--accent-purple);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 游戏作品页面 */
.games-section {
    max-width: 1400px;
    margin: 0 auto;
}

/* 首页游戏预览 */
.home-games-preview {
    max-width: 1400px;
    margin: 0 auto;
}

.preview-game-large {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.preview-game-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: white;
    border-color: transparent;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
}

.game-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    position: relative;
    overflow: hidden;
}

.game-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.tag {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tag-dev {
    background: rgba(251, 191, 36, 0.9);
    color: #000;
}

.tag-genre {
    background: rgba(168, 85, 247, 0.9);
    color: white;
}

.game-title-overlay {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    color: white;
}

.game-category {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.game-title-overlay h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.game-subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
}

.game-info {
    padding: 1.5rem;
}

.game-name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.game-subtitle-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.game-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.game-platform {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.section-footer {
    text-align: center;
}

.link-more {
    color: var(--accent-purple);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s;
}

.link-more:hover {
    color: var(--accent-pink);
}

/* 关于我们页面 */
.about-section {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-paragraph {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-section {
    margin-bottom: 6rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.philosophy-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-players::before { content: '👥'; }
.icon-open::before { content: '💡'; }
.icon-innovation::before { content: '🎮'; }

.philosophy-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.philosophy-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.community-section {
    margin-bottom: 4rem;
}

.community-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.community-card {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.community-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.2);
}

.community-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.icon-bilibili-community {
    background: rgba(0, 174, 236, 0.15);
}

.community-card:hover .icon-bilibili-community {
    background: rgba(0, 174, 236, 0.3);
}

.icon-bilibili-community::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('icon-bilibili.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.icon-weibo-community {
    background: rgba(255, 140, 0, 0.15);
}

.community-card:hover .icon-weibo-community {
    background: rgba(255, 140, 0, 0.3);
}

.icon-weibo-community::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('icon-weibo.png');
    background-size: 75%;
    background-position: center;
    background-repeat: no-repeat;
}

.icon-email-community {
    background: rgba(168, 85, 247, 0.15);
}

.community-card:hover .icon-email-community {
    background: rgba(168, 85, 247, 0.3);
}

.icon-email-community::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('icon-email.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.community-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.community-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* 新闻动态页面 */
.news-section {
    max-width: 1400px;
    margin: 0 auto;
}

.empty-state {
    text-align: center;
    padding: 6rem 2rem;
    color: var(--text-secondary);
    font-size: 1.25rem;
}

/* 联系我们页面 */
.contact-section {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s;
}

.icon-bilibili {
    background: rgba(0, 174, 236, 0.2);
}

.contact-card:hover .icon-bilibili {
    background: linear-gradient(135deg, #00A0E9, #00B5E5);
}

.icon-bilibili::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('icon-bilibili.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.icon-weibo {
    background: rgba(255, 140, 0, 0.2);
}

.contact-card:hover .icon-weibo {
    background: linear-gradient(135deg, #E6162D, #FF8C00);
}

.icon-weibo::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('icon-weibo.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.icon-email {
    background: rgba(168, 85, 247, 0.2);
}

.contact-card:hover .icon-email {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
}

.icon-email::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('icon-email.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* 页脚 */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.footer-name {
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.25rem;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    transform: translateY(-3px);
}

.icon-bilibili-small::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('icon-bilibili.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.icon-weibo-small::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('icon-weibo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.icon-email-small::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('icon-email.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-column a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.75rem;
}

.footer-beian {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.beian-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.beian-link:hover {
    color: var(--accent-purple);
}

.beian-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.beian-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1.5rem 2rem;
    }

    .about-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        grid-template-columns: 1fr;
    }

    .screenshot-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* 游戏详情页面 */
.game-detail-page {
    min-height: 100vh;
    padding-top: 80px;
}

.game-detail-hero {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.back-button {
    position: absolute;
    top: 2rem;
    left: 3rem;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(-5px);
}

.game-detail-header {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.game-detail-tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.game-detail-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.game-detail-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.game-detail-platform {
    display: flex;
    gap: 1rem;
}

.platform-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.game-detail-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.game-detail-section {
    margin-bottom: 4rem;
}

.detail-section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.detail-section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: var(--accent-purple);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.screenshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.screenshot-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.screenshot-large {
    grid-column: 1 / -1;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.screenshot-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.screenshot-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* 复制提示 */
.copy-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Vue transition 动画 */
.notification-enter-active {
    animation: slideDown 0.3s ease-out;
}

.notification-leave-active {
    animation: slideUp 0.3s ease-in;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

/* 新闻列表 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.news-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-content {
    padding: 2rem;
}

.news-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.news-summary {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.news-read-more {
    color: var(--accent-purple);
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-card:hover .news-read-more {
    color: var(--accent-pink);
}

/* 新闻详情页 */
.news-detail-page {
    min-height: 100vh;
    padding: 10rem 2rem 4rem;
    position: relative;
}

.news-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.news-detail-page .back-button {
    color: white;
    background: rgba(168, 85, 247, 0.8);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: fit-content;
    position: fixed;
    top: 120px;
    left: calc((100vw - 1400px) / 2);
    z-index: 100;
}

.news-detail-page .back-button:hover {
    background: rgba(236, 72, 153, 0.8);
    transform: translateX(-5px);
}

.news-detail-header {
    text-align: left;
    margin-bottom: 3rem;
}

.news-detail-category {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.news-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
}

.news-detail-meta {
    color: var(--text-secondary);
    font-size: 1rem;
}

.news-detail-cover {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
}

.news-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
}

.news-detail-body {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.news-detail-body h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.news-detail-body p {
    margin-bottom: 1.5rem;
}

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

    .news-detail-title {
        font-size: 1.8rem;
    }

    .news-detail-cover {
        height: 250px;
    }
}
