/* 内页全新设计样式 - 现代化风格 */

/* 响应式图片样式 */
.feature-hero-image,
.feature-card-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin: 1.5rem auto;
    display: block;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-radius: 2rem;
}

/* 英雄区域保持不变 */
.hero-section {
    background: rgba(45, 124, 20, 0.6);
    padding: 2.5rem 0;
    margin: 1rem 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.hero-section h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.hero-section p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* 全新内容区域设计 */
.content-section {
    background: linear-gradient(135deg, #1a5c0a 0%, #2d7c14 50%, #225911 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

/* 功能卡片网格 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 193, 7, 0.2) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.feature-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Image sizing for feature icons */
.feature-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: inline-block;
}

@media (max-width: 480px) {
    .feature-icon img {
        width: 192px;
        height: 192px;
    }
}

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

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.feature-description {
    font-size: 1rem;
    color: #e9ecef;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffeb3b 0%, #fdd835 100%);
    color: #1a1a1a;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(253, 216, 53, 0.35);
    position: relative;
    overflow: hidden;
}

.feature-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.feature-btn:hover::before {
    left: 100%;
}

.feature-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 35px rgba(253, 216, 53, 0.55);
    color: #1a1a1a;
    text-decoration: none;
}

.btn-icon {
    font-style: normal;
    transition: transform 0.3s ease;
}

.feature-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* 步骤流程设计 */
.steps-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 193, 7, 0.2) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,107,107,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.steps-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Step Image Link */
.step-image-link {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
}

.step-image-link .feature-hero-image {
    transition: transform 0.3s ease;
    display: block;
    width: 100%;
    cursor: pointer;
}

.step-image-link:hover .feature-hero-image {
    transform: scale(1.05);
}

.step-image-link:hover {
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.step-image-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 215, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 15px;
}

.step-image-link:hover::after {
    opacity: 1;
}

.step-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 193, 7, 0.18) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.35);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.step-number {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.9rem;
    color: #e9ecef;
    opacity: 0.8;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-section {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .steps-section {
        padding: 2rem 1rem;
    }
    
    .steps-title {
        font-size: 1.8rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 2rem 0;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-tags {
        gap: 0.3rem;
    }
    
    .feature-tag {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .steps-section {
        padding: 1.5rem 1rem;
    }
    
    .steps-title {
        font-size: 1.6rem;
    }
}

.hero-section .btn {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* 内页网格布局 */
.inner-page-grid {
    margin-top: 2rem;
    gap: 1rem;
}

/* PC端横向显示 */
@media (min-width: 992px) {
    .inner-page-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .inner-page-grid .col-12.col-lg-6 {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        display: flex;
    }
    
    .inner-page-grid .content-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/* 大屏幕横向显示 */
@media (min-width: 1200px) {
    .inner-page-grid {
        gap: 2rem;
    }
    
    .inner-page-grid .col-12.col-lg-6 {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* 超大屏幕横向显示 */
@media (min-width: 1400px) {
    .inner-page-grid {
        gap: 2.5rem;
    }
    
    .inner-page-grid .col-12.col-lg-6 {
        flex: 0 0 calc(50% - 1.25rem);
        max-width: calc(50% - 1.25rem);
    }
}

/* 内页卡片样式 */
.content-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 193, 7, 0.2) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.content-card:hover::before {
    left: 100%;
}

.content-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.content-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.content-card p {
    color: #e9ecef;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.content-card .btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

.content-card .btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: scale(1.05);
}

/* 特色内容区域 */
.featured-content {
    background: rgba(255, 215, 0, 0.15);
    border-radius: 18px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border: 1px solid rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.featured-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.featured-content h2 {
    color: #FFD700;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.featured-content p {
    color: #e9ecef;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* 信息列表样式 */
.info-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.info-list li {
    background: rgba(255, 215, 0, 0.12);
    margin: 0.75rem 0;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    color: #e9ecef;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #FFD700, #FFA500);
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-list li:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(8px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.info-list li:hover::before {
    transform: scaleY(1);
}

/* 步骤指示器 */
.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5rem 0;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.step {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 193, 7, 0.25) 100%);
    border: 2px solid #FFD700;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.step:hover::before {
    transform: scale(1);
}

.step:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    border-color: #FFA500;
    color: #000000;
}

/* 导航菜单当前页面高亮 - 已禁用 */
/* .nav-menu a[href*=".html"] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.25) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
    transform: translateY(-2px);
} */

/* 响应式调整 */
@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 0;
        border-radius: 15px;
        margin: 0.5rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .content-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .highlight-text {
        font-size: 2rem;
    }
    
    .featured-content {
        padding: 1.5rem;
        border-radius: 15px;
        margin: 1.5rem 0;
    }
    
    .featured-content::before {
        border-radius: 17px;
    }
    
    .info-list li {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .step-indicator {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .step {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* 移动端防止图片溢出 */
    body {
        overflow-x: hidden;
    }
    
    section {
        overflow-x: hidden;
    }
    
    section img {
        max-width: 100%;
        height: auto;
    }
    
    .col-12 img,
    .col-lg-6 img {
        max-width: 100%;
        height: auto;
    }
    
    .feature-hero-image,
    .feature-card-image {
        max-width: 100%;
    }
}

/* 小屏幕额外保护 */
@media (max-width: 480px) {
    .feature-hero-image,
    .feature-card-image {
        margin: 0.75rem auto;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* Game Item 游戏卡片样式 */
.game-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-item:hover {
    transform: translateY(-5px);
}

/* Game Item Modern - 现代化游戏卡片样式 */
.game-item-modern {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 193, 7, 0.2) 50%, rgba(255, 152, 0, 0.15) 100%);
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2), 
                0 4px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    margin-bottom: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.game-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.8s ease;
}

.game-item-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.35), 
                0 8px 16px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 215, 0, 0.6);
}

.game-item-modern:hover::before {
    left: 100%;
}

/* 游戏图片链接 */
.game-image-link {
    text-decoration: none;
    display: block;
    position: relative;
}

.game-image-link:hover {
    text-decoration: none;
}

/* 游戏图片容器 */
.game-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 70%;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-image-link:hover .game-image-container {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.game-image-play-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 215, 0, 0.95);
    color: #1a5c0a;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 3;
    white-space: nowrap;
}

.game-image-link:hover .game-image-play-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.game-detail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.game-image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    z-index: 2;
}

.badge-icon {
    font-size: 1.5rem;
}

.game-item-modern:hover .game-detail-image {
    transform: scale(1.1);
}

.game-item-modern:hover .game-image-overlay {
    opacity: 0.5;
}

/* 游戏内容包装器 */
.game-content-wrapper {
    padding-left: 1rem;
}

/* 日期标签 */
.game-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.2);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 215, 0, 0.4);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.date-icon {
    font-size: 1.1rem;
}

.date-text {
    font-weight: 500;
}

.date-text strong {
    color: #FFD700;
    font-weight: 700;
}

/* 游戏详情标题 */
.game-detail-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1.2rem 0;
    color: #FFD700;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4), 0 0 12px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.game-item-modern:hover .game-detail-title {
    color: #FFEB3B;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 235, 59, 0.5);
}

/* 游戏详情描述 */
.game-detail-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 0 2rem 0;
    text-align: justify;
}

/* 游戏信息标签容器 */
.game-info-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* 游戏信息标签 */
.game-info-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 215, 0, 0.25);
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.game-info-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.35);
}

.tag-icon {
    font-size: 1.2rem;
}

.tag-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.tag-value {
    color: #FFD700;
    font-weight: 700;
    font-size: 1rem;
}

/* 不同游戏卡片的颜色主题 */
.content-section .game-item-modern:nth-of-type(1) {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 193, 7, 0.2) 50%, rgba(255, 152, 0, 0.15) 100%);
    border-color: rgba(255, 215, 0, 0.4);
}

.content-section .game-item-modern:nth-of-type(1) .game-detail-title {
    color: #FFD700;
}

.content-section .game-item-modern:nth-of-type(2) {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(0, 188, 212, 0.2) 50%, rgba(3, 169, 244, 0.15) 100%);
    border-color: rgba(33, 150, 243, 0.4);
}

.content-section .game-item-modern:nth-of-type(2) .game-detail-title {
    color: #64B5F6;
}

.content-section .game-item-modern:nth-of-type(2) .game-date-badge,
.content-section .game-item-modern:nth-of-type(2) .game-info-tag {
    background: rgba(33, 150, 243, 0.25);
    border-color: rgba(33, 150, 243, 0.5);
}

.content-section .game-item-modern:nth-of-type(2) .tag-value {
    color: #64B5F6;
}

.content-section .game-item-modern:nth-of-type(3) {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15) 0%, rgba(233, 30, 99, 0.2) 50%, rgba(171, 71, 188, 0.15) 100%);
    border-color: rgba(156, 39, 176, 0.4);
}

.content-section .game-item-modern:nth-of-type(3) .game-detail-title {
    color: #CE93D8;
}

.content-section .game-item-modern:nth-of-type(3) .game-date-badge,
.content-section .game-item-modern:nth-of-type(3) .game-info-tag {
    background: rgba(156, 39, 176, 0.25);
    border-color: rgba(156, 39, 176, 0.5);
}

.content-section .game-item-modern:nth-of-type(3) .tag-value {
    color: #CE93D8;
}

.content-section .game-item-modern:nth-of-type(4) {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 87, 34, 0.2) 50%, rgba(244, 67, 54, 0.15) 100%);
    border-color: rgba(255, 152, 0, 0.4);
}

.content-section .game-item-modern:nth-of-type(4) .game-detail-title {
    color: #FFA726;
}

.content-section .game-item-modern:nth-of-type(4) .game-date-badge,
.content-section .game-item-modern:nth-of-type(4) .game-info-tag {
    background: rgba(255, 152, 0, 0.25);
    border-color: rgba(255, 152, 0, 0.5);
}

.content-section .game-item-modern:nth-of-type(4) .tag-value {
    color: #FFA726;
}

.content-section .game-item-modern:nth-of-type(5) {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(0, 150, 136, 0.2) 50%, rgba(129, 199, 132, 0.15) 100%);
    border-color: rgba(76, 175, 80, 0.4);
}

.content-section .game-item-modern:nth-of-type(5) .game-detail-title {
    color: #66BB6A;
}

.content-section .game-item-modern:nth-of-type(5) .game-date-badge,
.content-section .game-item-modern:nth-of-type(5) .game-info-tag {
    background: rgba(76, 175, 80, 0.25);
    border-color: rgba(76, 175, 80, 0.5);
}

.content-section .game-item-modern:nth-of-type(5) .tag-value {
    color: #66BB6A;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .game-item-modern {
        padding: 1.8rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .game-content-wrapper {
        padding-left: 0;
        margin-top: 1.5rem;
    }
    
    .game-detail-title {
        font-size: 1.8rem !important;
    }
    
    .game-detail-description {
        font-size: 1rem !important;
        line-height: 1.7;
    }
    
    .game-image-container {
        padding-bottom: 75%;
    }
    
    .game-info-tags {
        gap: 0.75rem;
    }
    
    .game-info-tag {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .game-item-modern {
        padding: 1.5rem !important;
        border-radius: 20px;
    }
    
    .game-detail-title {
        font-size: 1.5rem !important;
    }
    
    .game-detail-description {
        font-size: 0.95rem !important;
    }
    
    .game-image-container {
        padding-bottom: 80%;
        border-radius: 15px;
    }
    
    .game-info-tag {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 0;
    }
    
    .tag-icon {
        font-size: 1rem;
    }
}

/* 如果使用CSS选择器自动分配样式（备选方案） */
.content-section .game-item:nth-of-type(1) {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 193, 7, 0.3) 50%, rgba(255, 152, 0, 0.25) 100%) !important;
    border: 2px solid rgba(255, 215, 0, 0.6) !important;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.content-section .game-item:nth-of-type(1) h2 {
    color: #FFD700 !important;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.content-section .game-item:nth-of-type(1) .game-tag {
    background: rgba(255, 215, 0, 0.35) !important;
    color: #FFD700 !important;
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.content-section .game-item:nth-of-type(2) {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.25) 0%, rgba(3, 169, 244, 0.3) 50%, rgba(0, 188, 212, 0.25) 100%) !important;
    border: 2px solid rgba(33, 150, 243, 0.6) !important;
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.content-section .game-item:nth-of-type(2) h2 {
    color: #2196F3 !important;
    text-shadow: 0 2px 8px rgba(33, 150, 243, 0.5);
}

.content-section .game-item:nth-of-type(2) .game-tag {
    background: rgba(33, 150, 243, 0.35) !important;
    color: #64B5F6 !important;
    border: 1px solid rgba(33, 150, 243, 0.5);
}

.content-section .game-item:nth-of-type(3) {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.25) 0%, rgba(233, 30, 99, 0.3) 50%, rgba(171, 71, 188, 0.25) 100%) !important;
    border: 2px solid rgba(156, 39, 176, 0.6) !important;
    box-shadow: 0 8px 24px rgba(156, 39, 176, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.content-section .game-item:nth-of-type(3) h2 {
    color: #CE93D8 !important;
    text-shadow: 0 2px 8px rgba(156, 39, 176, 0.5);
}

.content-section .game-item:nth-of-type(3) .game-tag {
    background: rgba(156, 39, 176, 0.35) !important;
    color: #CE93D8 !important;
    border: 1px solid rgba(156, 39, 176, 0.5);
}

.content-section .game-item:nth-of-type(4) {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.25) 0%, rgba(255, 87, 34, 0.3) 50%, rgba(244, 67, 54, 0.25) 100%) !important;
    border: 2px solid rgba(255, 152, 0, 0.6) !important;
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.content-section .game-item:nth-of-type(4) h2 {
    color: #FFA726 !important;
    text-shadow: 0 2px 8px rgba(255, 152, 0, 0.5);
}

.content-section .game-item:nth-of-type(4) .game-tag {
    background: rgba(255, 152, 0, 0.35) !important;
    color: #FFB74D !important;
    border: 1px solid rgba(255, 152, 0, 0.5);
}

.content-section .game-item:nth-of-type(5) {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.25) 0%, rgba(0, 150, 136, 0.3) 50%, rgba(129, 199, 132, 0.25) 100%) !important;
    border: 2px solid rgba(76, 175, 80, 0.6) !important;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.content-section .game-item:nth-of-type(5) h2 {
    color: #66BB6A !important;
    text-shadow: 0 2px 8px rgba(76, 175, 80, 0.5);
}

.content-section .game-item:nth-of-type(5) .game-tag {
    background: rgba(76, 175, 80, 0.35) !important;
    color: #81C784 !important;
    border: 1px solid rgba(76, 175, 80, 0.5);
}

/* 响应式调整游戏卡片 */
@media (max-width: 768px) {
    .game-item {
        padding: 1.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .game-item h2 {
        font-size: 1.5rem !important;
    }
    
    .game-item p {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .game-item {
        padding: 1.2rem !important;
    }
    
    .game-item h2 {
        font-size: 1.3rem !important;
    }
}

/* Game Card Styles - 5种不同的游戏卡片样式 */
/* 游戏1 - 金色/黄色主题（经典奢华） */
.game-card-1 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 193, 7, 0.3) 50%, rgba(255, 152, 0, 0.25) 100%) !important;
    border: 2px solid rgba(255, 215, 0, 0.6) !important;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.game-card-1::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

.game-card-1 h2 {
    color: #FFD700 !important;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.game-card-1 .game-tag {
    background: rgba(255, 215, 0, 0.35) !important;
    color: #FFD700 !important;
    border: 1px solid rgba(255, 215, 0, 0.5);
}

/* 游戏2 - 蓝色/青色主题（科技未来） */
.game-card-2 {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.25) 0%, rgba(3, 169, 244, 0.3) 50%, rgba(0, 188, 212, 0.25) 100%) !important;
    border: 2px solid rgba(33, 150, 243, 0.6) !important;
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.game-card-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.2), transparent);
    animation: slide 4s infinite;
}

.game-card-2 h2 {
    color: #2196F3 !important;
    text-shadow: 0 2px 8px rgba(33, 150, 243, 0.5);
}

.game-card-2 .game-tag {
    background: rgba(33, 150, 243, 0.35) !important;
    color: #64B5F6 !important;
    border: 1px solid rgba(33, 150, 243, 0.5);
}

/* 游戏3 - 紫色/粉色主题（神秘优雅） */
.game-card-3 {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.25) 0%, rgba(233, 30, 99, 0.3) 50%, rgba(171, 71, 188, 0.25) 100%) !important;
    border: 2px solid rgba(156, 39, 176, 0.6) !important;
    box-shadow: 0 8px 24px rgba(156, 39, 176, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.game-card-3::after {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.game-card-3 h2 {
    color: #CE93D8 !important;
    text-shadow: 0 2px 8px rgba(156, 39, 176, 0.5);
}

.game-card-3 .game-tag {
    background: rgba(156, 39, 176, 0.35) !important;
    color: #CE93D8 !important;
    border: 1px solid rgba(156, 39, 176, 0.5);
}

/* 游戏4 - 橙色/红色主题（热情活力） */
.game-card-4 {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.25) 0%, rgba(255, 87, 34, 0.3) 50%, rgba(244, 67, 54, 0.25) 100%) !important;
    border: 2px solid rgba(255, 152, 0, 0.6) !important;
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.game-card-4::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.game-card-4 h2 {
    color: #FFA726 !important;
    text-shadow: 0 2px 8px rgba(255, 152, 0, 0.5);
}

.game-card-4 .game-tag {
    background: rgba(255, 152, 0, 0.35) !important;
    color: #FFB74D !important;
    border: 1px solid rgba(255, 152, 0, 0.5);
}

/* 游戏5 - 绿色/青色主题（自然清新） */
.game-card-5 {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.25) 0%, rgba(0, 150, 136, 0.3) 50%, rgba(129, 199, 132, 0.25) 100%) !important;
    border: 2px solid rgba(76, 175, 80, 0.6) !important;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.game-card-5::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.6), transparent);
    animation: wave 3s infinite;
}

.game-card-5 h2 {
    color: #66BB6A !important;
    text-shadow: 0 2px 8px rgba(76, 175, 80, 0.5);
}

.game-card-5 .game-tag {
    background: rgba(76, 175, 80, 0.35) !important;
    color: #81C784 !important;
    border: 1px solid rgba(76, 175, 80, 0.5);
}

/* 动画效果 */
@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); opacity: 0.3; }
    50% { transform: rotate(180deg); opacity: 0.6; }
}

@keyframes slide {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { width: 0; height: 0; opacity: 0.5; }
    50% { width: 200px; height: 200px; opacity: 0; }
}

@keyframes wave {
    0%, 100% { transform: translateX(-50%) scaleX(1); }
    50% { transform: translateX(50%) scaleX(1.5); }
}

/* 悬停效果增强 */
.game-card-1:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.game-card-2:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.game-card-3:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.game-card-4:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.game-card-5:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}