* {
    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: #f8f9fa;
    color: #333333;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* 亮色主题 */
body {
    background-color: #f8f9fa;
    color: #333333;
}

body .header {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

body .nav a {
    color: #495057;
}

body .nav a:hover {
    color: #0073e6;
}

body .action-icon {
    background-color: #e9ecef;
    transition: all 0.3s ease;
}

body .action-icon:hover {
    background-color: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

body .action-icon svg {
    stroke: #495057;
}

body .hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

body .hero::before {
    background: radial-gradient(circle at 50% 50%, rgba(0, 115, 230, 0.1) 0%, transparent 70%);
}

body .hero-text h1 {
    color: #212529;
}

body .hero-text p {
    color: #6c757d;
}

body .game-showcase {
    background-color: #f8f9fa;
}

body .games-section h2 {
    color: #212529;
}

body .filter-btn {
    background-color: #ffffff;
    color: #495057;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

body .filter-btn:hover {
    background-color: #f8f9fa;
    border-color: #0073e6;
    transform: translateY(-1px);
}

body .filter-btn.active {
    background-color: #0073e6;
    border-color: #0073e6;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 115, 230, 0.2);
}

body .game-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

body .game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #0073e6;
}

body .game-card h3 {
    color: #212529;
}

body .game-card p {
    color: #6c757d;
}

body .launcher-section {
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

body .launcher-text h2 {
    color: #212529;
}

body .launcher-text p {
    color: #6c757d;
}

body .footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

body .language-current {
    background-color: #ffffff;
    color: #495057;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

body .language-current:hover {
    background-color: #f8f9fa;
    border-color: #0073e6;
}

body .language-list {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
}

body .language-option {
    color: #495057;
}

body .language-option:hover {
    background-color: rgba(0, 115, 230, 0.1);
    color: #0073e6;
}

body .footer-links a {
    color: #212529;
}

body .footer-links a:hover {
    color: #0073e6;
}

body .footer-bottom p {
    color: #333333;
}

/* 移动端导航条亮色主题样式 */
body .mobile-menu-btn {
    color: #495057;
}

body .mobile-menu-btn svg {
    stroke: #495057 !important;
    fill: none !important;
}

body .nav {
    background-color: #ffffff;
    border-left: 1px solid #e9ecef;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
}

body .nav a {
    color: #495057;
}

body .nav a:hover {
    color: #0073e6;
}

body .dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

body .game-icon-item span {
    color: #495057;
}

/* 按钮样式优化 */
body .btn-primary {
    background-color: #0073e6;
    color: #ffffff;
    transition: all 0.3s ease;
}

body .btn-primary:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 230, 0.3);
}

body .btn-secondary {
    background-color: #ffffff;
    color: #495057;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

body .btn-secondary:hover {
    background-color: #f8f9fa;
    border-color: #0073e6;
    color: #0073e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 游戏卡片悬停效果优化 */
body .game-overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8));
}

body .overlay-link {
    color: #0073e6;
    border: 1px solid #0073e6;
}

body .overlay-link:hover {
    background-color: rgba(0, 115, 230, 0.1);
}

/* 亮色主题下的按钮颜色 */
body .overlay-btn-info {
    background-color: #15bece;
    color: #ffffff;
}

body .overlay-btn-info:hover {
    background-color: #12a6b5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 190, 206, 0.3);
}

body .overlay-btn-success {
    background-color: #67c23a;
    color: #ffffff;
}

body .overlay-btn-success:hover {
    background-color: #529b2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 194, 58, 0.3);
}

body .overlay-btn-warning {
    background-color: #e6a23c;
    color: #ffffff;
}

body .overlay-btn-warning:hover {
    background-color: #d18d30;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 162, 60, 0.3);
}

body .overlay-btn-orange {
    background-color: #fba421;
    color: #ffffff;
}

body .overlay-btn-orange:hover {
    background-color: #e9941a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 164, 33, 0.3);
}

/* 平台标签样式优化 */
body .platforms span {
    color: #495057;
    background-color: rgba(0, 0, 0, 0.05);
}

/* 平滑过渡效果 */
body * {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* 主题图标样式 */
.theme-icon {
    transition: transform 0.3s ease;
}

body .theme-icon {
    transform: rotate(180deg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #495057;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.mobile-menu-btn svg {
    stroke: #495057 !important;
    fill: none !important;
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%) !important;
}

body .mobile-menu-btn svg {
    stroke: #495057 !important;
    fill: none !important;
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%) !important;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    .mobile-menu-btn svg {
        stroke: #495057 !important;
        fill: none !important;
        filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%) !important;
    }
    body .mobile-menu-btn svg {
        stroke: #495057 !important;
        fill: none !important;
        filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%) !important;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #212529;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #495057;
    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 #dee2e6;
    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: #495057;
    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: rgba(0, 0, 0, 0.05);
}

.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: #f8f9fa;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
}

.game-icon-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-icon-item span {
    font-size: 12px;
    color: #495057;
    line-height: 1.2;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 100px;
        padding: 15px;
    }
    
    .game-icons {
        gap: 15px;
    }
    
    .game-icon-item {
        width: 80px;
    }
    
    .game-icon-item .icon {
        width: 50px;
        height: 50px;
        margin-bottom: 6px;
    }
    
    .game-icon-item span {
        font-size: 11px;
    }
}

@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;
        margin-left: 20px;
        padding: 12px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: none;
    }
    
    .dropdown-menu .game-icons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
    }
    
    .dropdown-menu.active {
        display: flex;
        flex-direction: column;
    }
    
    .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: #ffffff;
    color: #495057;
    border: 1px solid #dee2e6;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    border-color: #0073e6;
    color: #0073e6;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px 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: #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-icon:hover {
    background-color: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.action-icon svg {
    stroke: #495057;
    transition: transform 0.3s ease;
}

.action-icon:hover svg {
    transform: scale(1.1);
}

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 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.1) 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.1);
    min-height: 400px;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #212529;
}

.hero-text p {
    font-size: 16px;
    color: #6c757d;
    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(0, 0, 0, 0.5);
    color: white;
    border: none;
    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(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.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: 40px 0;
    background-color: #f8f9fa;
}

.games-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    color: #212529;
}

.game-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background-color: #ffffff;
    color: #495057;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #f8f9fa;
    border-color: #0073e6;
    transform: translateY(-1px);
}

.filter-btn.active {
    background-color: #0073e6;
    border-color: #0073e6;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 115, 230, 0.2);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
    gap: 24px;
}

.game-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #dee2e6;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
}

.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: 100%;
    height: 0;
    padding-bottom: 100%;
    margin: 0 auto;
}

.game-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    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: 5px;
}

.game-card:hover .game-overlay,
.game-card:active .game-overlay {
    opacity: 1;
    visibility: visible;
}

/* 移动设备触摸支持 */
@media (max-width: 768px) {
    .game-card {
        cursor: pointer;
    }
    
    .game-card:active .game-overlay {
        opacity: 1;
        visibility: visible;
    }
}

.overlay-link {
    color: #0073e6;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 14px;
    padding: 2px 5px;
    border: 1px solid #0073e6;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.overlay-link:hover {
    background-color: rgba(0, 115, 230, 0.1);
}

.overlay-btn-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 15px;
}

.overlay-btn {
    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-info {
    background-color: #15bece;
}

.overlay-btn-info:hover {
    background-color: #12a6b5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 190, 206, 0.3);
}

.overlay-btn-success {
    background-color: #67c23a;
}

.overlay-btn-success:hover {
    background-color: #529b2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 194, 58, 0.3);
}

.overlay-btn-warning {
    background-color: #e6a23c;
}

.overlay-btn-warning:hover {
    background-color: #d18d30;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 162, 60, 0.3);
}

.overlay-btn-orange {
    background-color: #fba421;
}

.overlay-btn-orange:hover {
    background-color: #e9941a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 164, 33, 0.3);
}

.platforms {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.platforms span {
    color: #495057;
    font-size: 12px;
    padding: 4px 8px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.game-card h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 8px 0 0px;
    line-height: 1.4;
    text-align: center;
    color: #212529;
}

.game-card p {
    font-size: 14px;
    font-weight: bold;
    margin: 8px 0 8px;
    line-height: 1.4;
    text-align: center;
    color: #212529;
}

.launcher-section {
    background-color: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.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.1);
    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: #212529;
}

.launcher-text p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 32px;
    line-height: 1.6;
}

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    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: #ffffff;
    color: #212529;
    border: 1px solid #dee2e6;
    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: #f8f9fa;
    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 #dee2e6;
    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,
.language-list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 10px 20px;
    color: #212529;
    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: #212529;
    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: #333333;
    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: 250px;
        height: 100vh;
        background-color: #ffffff;
        border-left: 1px solid #e9ecef;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1001;
        margin-left: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
    }

    .nav.active {
        right: 0;
    }

    .header-actions {
        order: 2;
        gap: 10px;
        margin-left: 0;
    }

    .logo {
        order: 1;
    }

    .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;
}

/* gameItem-links 样式 */
.gameItem-links {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.gameItem-links a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #ccc;
    color: #333333;
    background-color: #ffffff;
}

.gameItem-links a:hover {
    background: #c31919;
    color: #fff;
    border: 1px solid #c31919;
}

.gameItem-links a:active {
    background: #a81616;
    transform: translateY(1px);
}

/* 移动设备响应式样式 */
@media (max-width: 768px) {
    .gameItem-links {
        gap: 8px;
    }
    
    .gameItem-links a {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .game-card p {
        font-size: 12px;
    }
}

/* 加载动画 */
@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: #f8f9fa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 32px;
    color: #212529;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #6c757d;
}

.about-mission {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.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: #212529;
}

.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-values {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.about-values .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 48px;
    text-align: center !important;
    color: #212529;
    width: 100%;
    display: block;
}

.about-values h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 48px;
    text-align: center;
    color: #212529;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 32px;
}

.value-item {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: 1px solid #e9ecef;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.value-item h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #0073e6;
}

.value-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
}

.about-team {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
}

.team-content h1,
.team-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 48px;
    text-align: center;
    color: #212529;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 32px;
    justify-content: center;
}

.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: #212529;
}

.team-member p {
    font-size: 14px;
    color: #6c757d;
}

.about-contact {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
}

.about-contact .container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-contact h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
    color: #212529;
}

.contact-content {
    text-align: center;
}

.contact-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 48px;
    color: #6c757d;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 32px;
    justify-content: center;
}

.contact-item {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-item h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #0073e6;
}

.contact-item p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
}

@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-values {
        padding: 60px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .value-item {
        padding: 24px;
    }
    
    .about-team {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 24px;
    }
    
    .about-contact {
        padding: 60px 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-item {
        padding: 24px;
    }
}

/* News页面样式 */
.news-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.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: #212529;
}

.news-header p {
    font-size: 16px;
    color: #6c757d;
}

.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.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.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: #212529;
}

.news-excerpt {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #6c757d;
}

.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 #dee2e6;
    color: #6c757d;
    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;
}

.header-background {
    width: 100%;
    height: 400px;
    position: relative;
    z-index: 1;
}

.header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info-section {
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,1));
    padding: 20px 0 60px;
}

.game-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.game-card {
    flex: 0 0 180px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-40px);
    border: 1px solid #e9ecef;
}

.game-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.game-description-container {
    flex: 1;
    min-width: 300px;
    padding: 20px 0;
}

.game-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #212529;
}

.game-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #6c757d;
}

.download-container {
    flex: 0 0 200px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.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);
    box-shadow: 0 4px 12px rgba(0, 115, 230, 0.3);
}

.platforms {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.platforms span {
    color: #495057;
    font-size: 12px;
    padding: 4px 12px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #495057;
    font-size: 12px;
    text-decoration: none;
    padding: 4px 8px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(0, 115, 230, 0.1);
    color: #0073e6;
    transform: translateY(-1px);
}

.btn-secondary:hover {
    background-color: rgba(0, 115, 230, 0.1);
}

.game-tabs {
    background-color: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #e9ecef;
}

.tabs-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #212529;
    text-align: center;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background-color: #ffffff;
    color: #495057;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover {
    background-color: #f8f9fa;
    border-color: #0073e6;
    color: #0073e6;
}

.tab-btn.active {
    background-color: #0073e6;
    color: #ffffff;
    border-color: #0073e6;
}

.tab-content {
    display: none;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.media-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
}

.media-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.screenshot-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.screenshot-item img {
    width: 100%;
    height: auto;
}

.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.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.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: #212529;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
}

.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.05);
    border: 1px solid #e9ecef;
}

.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 #e9ecef;
    color: #6c757d;
}

.requirement-list li:last-child {
    border-bottom: none;
}

.requirement-list .label {
    font-weight: 500;
    margin-right: 8px;
}

.game-info-list {
    list-style: none;
    margin-bottom: 32px;
}

.game-info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-info-list li:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: #212529;
}

.info-value {
    color: #6c757d;
}

.related-games {
    background-color: #f8f9fa;
    padding: 80px 0;
    border-top: 1px solid #e9ecef;
}

.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.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.related-game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.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: #212529;
}

.related-game-genre {
    font-size: 12px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .game-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .game-logo {
        flex: 0 0 200px;
    }
    
    .game-title {
        font-size: 28px;
    }
    
    .game-actions {
        justify-content: center;
    }
    
    .game-media,
    .game-features,
    .game-screenshots,
    .system-requirements,
    .related-games {
        padding: 60px 0;
    }
    
    .features-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

/* News Show页面样式 */
.news-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

.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: #212529;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    color: #6c757d;
    font-size: 14px;
}

.news-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-meta-icon {
    width: 16px;
    height: 16px;
    fill: #6c757d;
}

.news-content {
    background-color: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.news-content-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.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: #333333;
    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: #212529;
}

.news-body h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 32px 0 16px;
    color: #212529;
}

.news-body ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.news-body li {
    margin-bottom: 8px;
}

.news-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.news-share {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
}

.share-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #212529;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.share-btn:hover {
    background-color: #0073e6;
    color: #ffffff;
    border-color: #0073e6;
}

.related-news {
    background-color: #f8f9fa;
    padding: 80px 0;
    border-top: 1px solid #e9ecef;
}

.related-news-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #212529;
    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.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.related-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.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: #212529;
    line-height: 1.4;
}

.related-news-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
}

@media (max-width: 768px) {
    .news-header {
        padding: 10px 0;
    }
    
    .news-title {
        font-size: 24px;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .news-content {
        padding: 10px 0;
    }
    
    .related-news {
        padding: 60px 0;
    }
    
    .related-news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}