* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft JhengHei", \5FAE\8EDF\6B63\9ED1\9AD4, PMingLiU, \65B0\7D30\660E\9AD4, Arial, "Oswald", Helvetica, sans-serif;
    background-color: #f5f5f5;
    color: #333333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333333;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.mobile-menu-btn svg {
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #0073e6;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0073e6;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* 下拉菜单样式 */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 300px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #333333;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    z-index: 1002;
}

.close-btn:hover {
    background-color: #f0f0f0;
}

.game-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.game-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-icon-item:hover {
    transform: translateY(-5px);
}

.game-icon-item .icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e0e0e0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-icon-item span {
    font-size: 12px;
    color: #333333;
    line-height: 1.2;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 100%;
        padding: 5px;
        position: static !important;
        margin-top: 10px !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        background-color: #ffffff !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 4px !important;
        box-shadow: none !important;
        display: block !important;
    }
    
    .game-icons {
        gap: 15px;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        margin-top: 10px !important;
    }
    
    .game-icon-item {
        width: 70px;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 5px !important;
    }
    
    .game-icon-item .icon {
        width: 45px;
        height: 45px;
        margin-bottom: 6px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 4px !important;
        overflow: hidden !important;
    }
    
    .game-icon-item .icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
    
    .game-icon-item span {
        font-size: 10px;
        color: #000000 !important;
        line-height: 1.2 !important;
    }
    
    .close-btn {
        display: none !important;
    }
    
    .dropdown-toggle::after {
        display: none !important;
    }
    
    /* 确保下拉菜单在移动设备上始终显示 */
    .dropdown {
        position: relative;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .game-icons {
        gap: 10px;
    }
    
    .game-icon-item {
        width: 70px;
    }
    
    .game-icon-item .icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .dropdown-menu {
        position: static;
        margin-top: 10px;
        flex-direction: column;
        gap: 15px;
        padding: 12px;
    }
    
    .platform-filters {
        gap: 6px;
    }
    
    .platform-filters .filter-btn {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .game-card-item {
        min-width: 100px;
        padding: 10px;
    }
    
    .game-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }
    
    .game-info h5 {
        font-size: 12px;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: #0073e6;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #005bb5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 115, 230, 0.3);
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.user-actions {
    display: flex;
    gap: 10px;
}

.action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-icon:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-icon svg {
    transition: transform 0.3s ease;
}

.action-icon:hover svg {
    transform: scale(1.1);
}

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 115, 230, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    z-index: 1;
    min-height: 400px;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    min-height: 400px;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #333333;
}

.hero-text p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    min-height: 300px;
    height: 400px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: #333333;
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #0073e6;
    transform: scale(1.2);
}

.game-showcase {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.games-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    color: #333333;
}

.game-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background-color: #f0f0f0;
    color: #333333;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-1px);
}

.filter-btn.active {
    background-color: #0073e6;
    border-color: #0073e6;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
    gap: 24px;
}

.game-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #0073e6;
}

.game-card-image {
    position: relative;
    overflow: hidden;
    width: 265px;
    height: 345px;
    margin: 0 auto;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-card-image img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.game-card:hover .game-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-link {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 14px;
    padding: 8px 20px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.overlay-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.overlay-btn-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 15px;
}

.overlay-btn {
    background-color: #0073e6;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.overlay-btn:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

.platforms {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.platforms span {
    color: #ffffff;
    font-size: 12px;
    padding: 4px 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.game-card h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 16px 0 8px;
    line-height: 1.4;
    text-align: center;
    color: #333333;
}

.game-card p {
    font-size: 14px;
    color: #666666;
    margin: 0 0 16px;
    text-align: center;
}

.launcher-section {
    background-color: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.launcher-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.launcher-image {
    flex: 1;
    padding-right: 60px;
}

.launcher-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.6s ease;
}

.launcher-image img:hover {
    transform: scale(1.02);
}

.launcher-text {
    flex: 1;
}

.launcher-text h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    color: #333333;
}

.launcher-text p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.footer {
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 60px 0;
}

.footer-content {
    text-align: center;
}

.footer-top {
    margin-bottom: 32px;
}

.language-selector {
    position: relative;
    display: inline-block;
}

.language-dropdown {
    position: relative;
}

.language-current {
    background-color: #f0f0f0;
    color: #333333;
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-current:hover {
    background-color: #e0e0e0;
    border-color: #0073e6;
}

.language-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-dropdown:hover .language-arrow {
    transform: rotate(180deg);
}

.language-list {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 8px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    min-width: 150px;
}

.language-dropdown:hover .language-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 10px 20px;
    color: #333333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    list-style: none;
}

.language-option:hover {
    background-color: rgba(0, 115, 230, 0.1);
    color: #0073e6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #0073e6;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #0073e6;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-bottom .logo {
    font-size: 20px;
    margin-bottom: 8px;
}

.footer-bottom p {
    font-size: 12px;
    color: #666666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .mobile-menu-btn {
        display: block;
        order: 3;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #ffffff;
        border-left: 1px solid #e0e0e0;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1001;
        margin-left: 0;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .header-actions {
        order: 2;
        gap: 10px;
        margin-left: 0;
    }

    .logo {
        order: 1;
    }
    
    .nav a {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav a:hover {
        color: #0073e6;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .dropdown-toggle:hover {
        color: #0073e6;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-carousel {
        width: 100%;
        min-height: 250px;
        margin-bottom: 0;
        flex: none;
    }

    .launcher-content {
        flex-direction: column;
        text-align: center;
    }

    .launcher-image {
        padding-right: 0;
        margin-bottom: 48px;
    }

    .footer-links {
        gap: 16px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
    }

    .game-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }

    .nav {
        width: 200px;
        gap: 15px;
    }

    .nav a {
        font-size: 14px;
    }

    .header-actions {
        order: 2;
        gap: 8px;
        margin-left: 0;
    }

    .btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .action-icon {
        width: 30px;
        height: 30px;
    }

    .logo {
        order: 1;
        font-size: 20px;
    }

    .hero-carousel {
        min-height: 200px;
        margin-bottom: 0;
        flex: none;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .game-showcase {
        padding: 60px 0;
    }

    .games-section h2 {
        font-size: 24px;
    }

    .launcher-section {
        padding: 60px 0;
    }

    .launcher-text h2 {
        font-size: 24px;
    }

    .footer {
        padding: 40px 0;
    }
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 加载动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .game-showcase, .launcher-section, .footer {
    animation: fadeIn 0.8s ease-out forwards;
}

.hero {
    animation-delay: 0.1s;
}

.game-showcase {
    animation-delay: 0.3s;
}

.launcher-section {
    animation-delay: 0.5s;
}

.footer {
    animation-delay: 0.7s;
}

/* 移除hero-tabs相关样式 */
.hero-tabs, .tab, .tab-avatar, .tab-content {
    display: none;
}

/* 移除hero-section相关样式 */
.hero-section {
    display: none;
}

/* About页面样式 */
.about-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 32px;
    color: #333333;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #666666;
}

.about-mission {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.mission-text {
    flex: 1;
    min-width: 300px;
}

.mission-text h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
    color: #333333;
}

.mission-image {
    flex: 1;
    min-width: 300px;
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-team {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
}

.team-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 48px;
    text-align: center;
    color: #333333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 32px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333333;
}

.team-member p {
    font-size: 14px;
    color: #666666;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .about-mission {
        padding: 40px 0;
    }
    
    .mission-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-team {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 24px;
    }
}

/* News页面样式 */
.news-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.news-content {
    max-width: 1200px;
    margin: 0 auto;
}

.news-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-header h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #333333;
}

.news-header p {
    font-size: 16px;
    color: #666666;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.news-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #0073e6;
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-info {
    padding: 24px;
}

.news-date {
    font-size: 14px;
    color: #888888;
    margin-bottom: 12px;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333333;
}

.news-excerpt {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666666;
}

.news-read-more {
    display: inline-block;
    font-size: 14px;
    color: #0073e6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-read-more:hover {
    color: #005bb5;
}

.news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 12px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background-color: #0073e6;
    border-color: #0073e6;
    color: #ffffff;
}

.pagination-btn.active {
    background-color: #0073e6;
    border-color: #0073e6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }
    
    .news-header h2 {
        font-size: 28px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .news-card {
        max-width: 100%;
    }
}

/* Game Detail页面样式 */
.game-detail-header {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 控制阴影图片显示 */
.shadow {
    display: block;
}

@media (max-width: 768px) {
    .shadow {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-background {
        height: 250px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .game-info-section {
        margin-top: -40px;
        padding: 15px 0 40px;
    }
}

.game-info-section {
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,1));
    padding: 20px 0 60px;
    position: relative;
    z-index: 10;
    margin-top: -100px;
    border-bottom: 1px solid #e0e0e0;
}

.game-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
    position: relative;
    z-index: 10;
}

.game-card {
    flex: 0 0 218px;
    background: white;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-50px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.game-card img {
    width: 218px;
    height: 285px;
    border-radius: 4px;
    object-fit: contain;
    transition: none;
}

@media (max-width: 768px) {
    .game-detail-header {
        height: 250px;
    }
    
    .game-card {
        flex: 0 0 270px;
        transform: translateY(0);
        margin: 30px auto 0;
        padding: 0;
        position: relative;
        z-index: 20;
        background: white;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border: 1px solid #e0e0e0;
    }
    
    .game-card img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        max-width: 100% !important;
        max-height: 100% !important;
    }
    
    .game-info-section {
        position: relative;
        z-index: 20;
        margin-top: -250px;
        padding-top: 20px;
    }
    
    .game-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .game-description-container {
        order: 2;
    }
    
    .download-container {
        order: 3;
    }
}

.game-description-container {
    flex: 1;
    min-width: 300px;
    padding: 20px 0;
}

.game-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333333;
}

.game-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666666;
}

.setting-section {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0073e6;
    border: 1px solid #e0e0e0;
}

.setting-section h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333333;
}

.setting-section ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.setting-section li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #666666;
}

.setting-section li::before {
    content: "•";
    color: #0073e6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.level-rewards li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.level-rewards li:last-child {
    border-bottom: none;
}

.level-rewards strong {
    color: #0073e6;
    margin-right: 10px;
}

.event-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.event-title {
    font-size: 20px;
    font-weight: bold;
    color: #0073e6;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073e6;
}

.event-content {
    color: #666666;
}

.event-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.event-reward,
.event-condition,
.event-notice {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #0073e6;
    border: 1px solid #e0e0e0;
}

.event-reward h4,
.event-condition h4,
.event-notice h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.reward-value {
    font-size: 18px;
    font-weight: bold;
    color: #ffd700;
    text-align: center;
    margin-top: 10px;
}

.event-condition ol,
.event-notice ol {
    padding-left: 20px;
    margin: 10px 0;
}

.event-condition li,
.event-notice li {
    margin-bottom: 8px;
    line-height: 1.4;
    color: #666666;
}

.event-notice li {
    padding-bottom: 5px;
}

.welfare-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.welfare-title {
    font-size: 18px;
    font-weight: bold;
    color: #0073e6;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073e6;
}

.daily-welfare {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #0073e6;
    border: 1px solid #e0e0e0;
}

.daily-welfare ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.daily-welfare li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #666666;
}

.daily-welfare li::before {
    content: "•";
    color: #0073e6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.redemption-guide {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #0073e6;
    border: 1px solid #e0e0e0;
}

.redemption-guide p {
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.redemption-codes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.code-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.code-card:hover {
    border-color: #0073e6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 115, 230, 0.1);
}

.code-title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.code-card ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.code-card li {
    padding: 4px 0;
    padding-left: 15px;
    position: relative;
    color: #666666;
    font-size: 13px;
}

.code-card li::before {
    content: "•";
    color: #0073e6;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 10px;
}

@media (max-width: 768px) {
    .redemption-codes {
        grid-template-columns: 1fr;
    }
    
    .welfare-section {
        padding: 15px;
    }
    
    .welfare-title {
        font-size: 16px;
    }
}

.installation-section {
    margin-top: 20px;
}

.register-section {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.platform-install {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.warning-section {
    background-color: rgba(255, 165, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid rgba(255, 165, 0, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.install-title {
    font-size: 16px;
    font-weight: bold;
    color: #0073e6;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.register-steps p {
    margin-bottom: 10px;
    color: #666666;
    line-height: 1.5;
}

.warning-box {
    background-color: rgba(255, 165, 0, 0.1);
    border-radius: 6px;
    padding: 12px;
    margin-top: 15px;
    border-left: 4px solid #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.warning-box p {
    margin: 0;
    color: #ff8c00;
    font-weight: bold;
}

.install-steps {
    padding-left: 25px;
    margin: 0;
}

.install-steps li {
    margin-bottom: 10px;
    color: #666666;
    line-height: 1.5;
}

.warning-list {
    padding-left: 20px;
    margin: 0;
}

.warning-list li {
    margin-bottom: 8px;
    color: #ff8c00;
    line-height: 1.5;
}

.install-link {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.install-link:hover {
    color: #005bb5;
    text-decoration: underline;
}

.register-image {
    width: 50%;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .installation-section {
        padding: 15px;
    }
    
    .register-section,
    .platform-install,
    .warning-section {
        padding: 15px;
    }
    
    .install-title {
        font-size: 14px;
    }
    
    .install-steps {
        padding-left: 20px;
    }
}

.download-container {
    flex: 0 0 200px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .download-container {
        align-items: center;
        flex: 1;
        margin-top: 20px;
    }
}

.btn-game {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
    background-color: #0073e6;
    color: #ffffff;
}

.btn-game:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

.platforms {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.platforms span {
    color: #333333;
    font-size: 12px;
    padding: 4px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .platforms {
        justify-content: center;
    }
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333333;
    font-size: 12px;
    text-decoration: none;
    padding: 4px 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.social-link:hover {
    background-color: #e0e0e0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(0, 191, 255, 0.1);
}

.game-tabs {
    background-color: #ffffff;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: sticky;
    top: 70px;
    z-index: 999;
    border-bottom: 1px solid #e0e0e0;
}

.tabs-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333333;
    text-align: center;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background-color: #f0f0f0;
    color: #333333;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.tab-btn:hover {
    background-color: #e0e0e0;
    color: #333333;
}

.tab-btn.active {
    background-color: #0073e6;
    color: #ffffff;
    border-color: #0073e6;
}

.tab-content {
    display: block;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.tab-content.active {
    animation: fadeIn 0.5s ease;
}

.media-grid-container {
    position: relative;
}

.media-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.media-grid-header h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.media-nav {
    display: flex;
    gap: 10px;
}

.media-nav-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    background-color: #f0f0f0;
    color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
}

.media-nav-btn:hover {
    background-color: #0073e6;
    border-color: #0073e6;
    color: #ffffff;
    transform: scale(1.1);
}

.media-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 32px;
}

.main-media {
    flex: 2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.main-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.main-media:hover img {
    transform: scale(1.02);
}

.media-grid-small {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.small-media-item {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.small-media-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.small-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.small-media-item:hover img {
    transform: scale(1.05);
}

/* 图片放大模态框 */
.image-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-overflow-scrolling: touch;
}

/* 在移动设备上隐藏图片放大模态框 */
@media (max-width: 768px) {
    .image-modal {
        display: none !important;
    }
    
    /* 同时禁用媒体项目的点击事件 */
    .media-item {
        pointer-events: none;
        cursor: default;
    }
}

.modal-content {
    position: relative;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #333333;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #0073e6;
}

.modal-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.modal-nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #e0e0e0;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.modal-nav-btn:hover {
    background-color: #0073e6;
    border-color: #0073e6;
    color: #ffffff;
    transform: scale(1.1);
}

#modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    transition: all 0.3s ease;
    width: 100% !important;
    height: auto !important;
}

/* 移动端模态框样式 */
@media (max-width: 768px) {
    .modal-content {
        margin: 0;
        padding: 10px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        font-size: 30px;
        position: absolute;
        z-index: 100;
    }
    
    .modal-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        padding: 0 10px;
        z-index: 10;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
        background-color: rgba(0, 0, 0, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.3);
        z-index: 100;
    }
    
    #modal-image {
        max-width: 100% !important;
        max-height: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    /* 防止移动端触摸事件冲突 */
    .media-item {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* 确保模态框在移动端全屏显示 */
    .image-modal {
        position: fixed;
        z-index: 99999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.95);
        -webkit-overflow-scrolling: touch;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* 小屏幕移动设备 */
@media (max-width: 480px) {
    .modal-content {
        padding: 5px;
    }
    
    #modal-image {
        max-width: 100% !important;
        max-height: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .modal-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.screenshot-item {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.screenshot-item img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .media-grid {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-media {
        flex: none;
        width: 100%;
    }
    
    .main-media img {
        width: 100% !important;
        height: auto !important;
    }
    
    .media-grid-small {
        flex: none;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
        gap: 5px;
    }
    
    .small-media-item {
        aspect-ratio: 1;
    }
    
    .small-media-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

.screenshots-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.screenshots-carousel .carousel-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.screenshots-carousel .carousel-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.screenshots-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.screenshots-carousel .carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.screenshots-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshots-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: #333333;
    border: 1px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshots-carousel .carousel-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.screenshots-carousel .carousel-btn.prev {
    left: 15px;
}

.screenshots-carousel .carousel-btn.next {
    right: 15px;
}

.screenshots-carousel .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.screenshots-carousel .carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.screenshots-carousel .carousel-indicators .indicator.active {
    background-color: #00bfff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .screenshots-carousel .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .screenshots-carousel .carousel-btn.prev {
        left: 10px;
    }
    
    .screenshots-carousel .carousel-btn.next {
        right: 10px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.feature-item {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #0073e6;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: rgba(0, 115, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #333333;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.requirement-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.requirement-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 24px;
    color: #0073e6;
}

.requirement-list {
    list-style: none;
}

.requirement-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666666;
}

.requirement-list li:last-child {
    border-bottom: none;
}

.requirement-list .label {
    font-weight: 500;
    margin-right: 8px;
    color: #333333;
}

.info-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.info-left {
    flex: 0 0 200px;
    min-width: 150px;
}

.info-left h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073e6;
}

.info-right {
    flex: 1;
}

.game-info-list {
    list-style: none;
    margin-bottom: 32px;
}

.game-info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-info-list li:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: #333333;
}

.info-value {
    color: #666666;
}

@media (max-width: 768px) {
    .info-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .info-left {
        flex: none;
        width: 100%;
    }
    
    .info-left h3 {
        font-size: 20px;
    }
}

.related-games {
    background-color: #f5f5f5;
    padding: 80px 0;
    border-top: 1px solid #e0e0e0;
}

.related-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.related-game-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.related-game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #0073e6;
}

.related-game-image {
    height: 150px;
    overflow: hidden;
}

.related-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-game-info {
    padding: 16px;
}

.related-game-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333333;
}

.related-game-genre {
    font-size: 12px;
    color: #666666;
}

@media (max-width: 768px) {
    .game-tabs {
        display: none;
    }
    
    .game-header-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 0 15px;
        gap: 15px;
    }
    
    .game-card {
        flex: 0 0 270px;
        transform: translateY(0);
        margin: 30px auto 0;
    }
    
    .game-card img {
        width: 100% !important;
        height: auto !important;
    }
    
    .game-description-container {
        min-width: 100%;
        padding: 10px 0;
    }
    
    .game-description {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .download-container {
        align-items: center;
        flex: 1;
        margin-top: 10px;
        width: 100%;
        max-width: 200px;
    }
    
    .btn-game {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .platforms {
        justify-content: center;
    }
    
    .game-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .game-actions {
        justify-content: center;
    }
    
    .game-media,
    .game-features,
    .game-screenshots,
    .system-requirements,
    .related-games {
        padding: 30px 0;
    }
    
    .features-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tab-content {
        padding: 20px 15px;
    }
    
    .media-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .media-nav {
        align-self: flex-end;
    }
    
    /* 调整社交链接的布局 */
    .social-links {
        justify-content: center;
        margin-top: 10px;
    }
    
    .social-link {
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* News Show页面样式 */
.news-header {
    background-color: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.news-header-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-category {
    display: inline-block;
    padding: 4px 12px;
    background-color: #0073e6;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 16px;
}

.news-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
    color: #333333;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    color: #666666;
    font-size: 14px;
}

.news-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-meta-icon {
    width: 16px;
    height: 16px;
    fill: #666666;
}

.news-content {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.news-content-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-cover {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.news-cover img {
    width: 100%;
    height: auto;
}

.news-body {
    color: #666666;
    line-height: 1.8;
    font-size: 16px;
}

.news-body p {
    margin-bottom: 24px;
}

.news-body h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 40px 0 24px;
    color: #333333;
}

.news-body h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 32px 0 16px;
    color: #333333;
}

.news-body ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.news-body li {
    margin-bottom: 8px;
    color: #666666;
}

.news-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-share {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.share-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #333333;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.share-btn:hover {
    background-color: #0073e6;
    color: #ffffff;
    border-color: #0073e6;
}

.related-news {
    background-color: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #e0e0e0;
}

.related-news-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333333;
    text-align: center;
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.related-news-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.related-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #0073e6;
}

.related-news-image {
    height: 180px;
    overflow: hidden;
}

.related-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-news-info {
    padding: 20px;
}

.related-news-date {
    font-size: 12px;
    color: #888888;
    margin-bottom: 12px;
}

.related-news-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333333;
    line-height: 1.4;
}

.related-news-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

@media (max-width: 768px) {
    .news-header {
        padding: 40px 0;
    }
    
    .news-title {
        font-size: 24px;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .news-content {
        padding: 60px 0;
    }
    
    .related-news {
        padding: 60px 0;
    }
    
    .related-news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}