/* 基础重置和变量 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF4500;
    --secondary-color: #FFD700;
    --accent-color: #DC143C;
    --dark-bg: #1A1A1A;
    --darker-bg: #0D0D0D;
    --text-light: #FFFFFF;
    --text-gray: #CCCCCC;
    --explosion-gradient: linear-gradient(45deg, #FF4500, #FFD700, #DC143C);
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px; /* 为固定导航栏留出空间 */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 粒子背景 */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D1B1B 50%, #1A1A1A 100%);
}

/* 导航栏样式 */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    margin: 0;
    color: #ff4500;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #ddd;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #ff4500;
    background: rgba(255, 69, 0, 0.1);
}

/* 主要区域布局调整 */
body {
    padding-top: 80px; /* 为固定导航栏留出空间 */
}

.game-section {
    padding: 60px 0;
}

.game-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin: 20px 0;
    text-align: center;
}

.game-rating {
    text-align: center;
    margin: 20px 0;
}

.stars {
    font-size: 1.5rem;
    margin-right: 10px;
}

.rating-text {
    color: #ddd;
    font-size: 1rem;
}

/* Fury Wars选项区域 */
.fury-wars-options {
    margin-top: 20px;
    text-align: center;
    background: rgba(255, 69, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(255, 69, 0, 0.3);
}

.fury-wars-options h3 {
    color: #ff4500;
    margin-bottom: 15px;
}

.options-buttons {
    margin: 20px 0;
}

.seo-note {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 15px;
    font-style: italic;
}

/* 评测区域样式 */
.review-section {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05), rgba(255, 107, 53, 0.05));
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ff4500;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff4500, #ff6b35);
    border-radius: 2px;
}

.review-overview {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.review-overview h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.review-scores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.score-item {
    background: rgba(255, 69, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 69, 0, 0.2);
}

.score-item h4 {
    color: #ff4500;
    margin-bottom: 10px;
}

.score {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
    margin: 10px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.highlight-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 69, 0, 0.2);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 69, 0, 0.5);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.highlight-item h4 {
    color: #ff4500;
    margin-bottom: 15px;
    text-align: center;
}

/* 攻略指南样式 */
.guides-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.8);
}

.guide-category {
    margin-bottom: 50px;
    background: rgba(255, 69, 0, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 69, 0, 0.2);
}

.guide-category h3 {
    color: #ff4500;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.guide-item {
    background: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 4px solid #ff4500;
}

.guide-item h4 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.guide-item ul {
    list-style: none;
    padding: 0;
}

.guide-item li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.guide-item li::before {
    content: "🎯";
    position: absolute;
    left: 0;
    top: 0;
}

.advanced-tactics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tactic-item {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.tactic-item h4 {
    color: #ff4500;
    margin-bottom: 15px;
}

/* 武器分析样式 */
.weapons-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.03), rgba(255, 107, 53, 0.03));
}

.weapons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.weapon-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.weapon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--rarity-color);
}

.weapon-card.legendary {
    --rarity-color: linear-gradient(90deg, #ff8c00, #ffa500);
    border: 1px solid rgba(255, 140, 0, 0.5);
}

.weapon-card.epic {
    --rarity-color: linear-gradient(90deg, #9370db, #ba55d3);
    border: 1px solid rgba(147, 112, 219, 0.5);
}

.weapon-card.rare {
    --rarity-color: linear-gradient(90deg, #1e90ff, #00bfff);
    border: 1px solid rgba(30, 144, 255, 0.5);
}

.weapon-card.common {
    --rarity-color: linear-gradient(90deg, #32cd32, #90ee90);
    border: 1px solid rgba(50, 205, 50, 0.5);
}

.weapon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.weapon-header {
    text-align: center;
    margin-bottom: 20px;
}

.weapon-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.weapon-header h3 {
    color: #ff4500;
    margin-bottom: 10px;
}

.weapon-rarity {
    background: var(--rarity-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.weapon-stats {
    margin: 20px 0;
}

.stat-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.stat-bar span {
    width: 60px;
    font-size: 0.9rem;
    color: #ccc;
}

.bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-left: 10px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--rarity-color);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.weapon-description {
    font-size: 0.9rem;
    line-height: 1.6;
}

.weapon-description p {
    margin-bottom: 8px;
}

.weapon-tips {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.weapon-tips h3 {
    color: #ff4500;
    text-align: center;
    margin-bottom: 30px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tip-item {
    background: rgba(255, 69, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 69, 0, 0.2);
}

.tip-item h4 {
    color: #ff6b35;
    margin-bottom: 10px;
}

/* 角色介绍样式 */
.characters-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.9);
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.character-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid var(--class-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.character-card.tank {
    --class-color: #4169e1;
}

.character-card.dps {
    --class-color: #ff4500;
}

.character-card.support {
    --class-color: #32cd32;
}

.character-card.assassin {
    --class-color: #8a2be2;
}

.character-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.character-portrait {
    text-align: center;
    margin-bottom: 20px;
}

.character-avatar {
    font-size: 4rem;
    margin-bottom: 10px;
    display: block;
}

.character-class {
    background: var(--class-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
}

.character-info h3 {
    color: var(--class-color);
    text-align: center;
    margin-bottom: 20px;
}

.character-stats {
    margin: 20px 0;
}

.stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.stat-value {
    color: var(--class-color);
}

.character-abilities {
    margin-top: 20px;
}

.character-abilities h4 {
    color: #ff6b35;
    margin: 15px 0 10px 0;
}

.character-abilities ul {
    list-style: none;
    padding: 0;
}

.character-abilities li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.character-abilities li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--class-color);
}

.team-composition {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.team-composition h3 {
    color: #ff4500;
    text-align: center;
    margin-bottom: 30px;
}

.composition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.comp-item {
    background: rgba(255, 69, 0, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 69, 0, 0.2);
}

.comp-item h4 {
    color: #ff4500;
    margin-bottom: 15px;
}

.comp-item p {
    margin-bottom: 10px;
}

/* 游戏包装器 */
.game-wrapper {
    display: flex;
    flex-direction: row; /* 水平排列游戏区域和侧边栏 */
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 40px; /* 添加底部间距，为下方的游戏信息面板留空间 */
}

/* 主游戏区域 */
.main-game-area {
    flex: 0 0 auto;
}

/* 游戏容器 */
.game-container {
    flex: 0 0 auto;
    width: 900px; /* 确保游戏容器宽度 */
}

.game-iframe-wrapper {
    position: relative;
    width: 900px; /* 直接设置为游戏推荐宽度 */
    height: 542px; /* 设置为游戏推荐高度 */
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.3);
}

.game-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 游戏加载动画 */
.game-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    z-index: 10;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 69, 0, 0.3);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 游戏加载错误样式 */
.loading-error {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.loading-error h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.loading-error p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.loading-error ul {
    text-align: left;
    color: var(--text-gray);
    margin: 15px 0;
    padding-left: 20px;
}

.loading-error li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.error-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.error-actions .btn,
.error-actions .control-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.error-actions .btn:hover,
.error-actions .control-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.error-actions .btn-secondary {
    border-color: var(--text-gray);
    color: var(--text-gray);
}

.error-actions .btn-secondary:hover {
    background: var(--text-gray);
    color: var(--dark-bg);
}

/* 游戏信息面板 - 现在在游戏下方 */
.game-info {
    width: 100%; /* 占满容器宽度 */
    max-width: 1200px; /* 限制最大宽度 */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px; /* 恢复原来的内边距 */
    border: 2px solid rgba(255, 69, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 20px; /* 添加顶部间距 */
}

/* 游戏描述 */
.game-description {
    margin-bottom: 25px; /* 恢复原来的间距 */
    padding-bottom: 20px; /* 恢复原来的内边距 */
    border-bottom: 1px solid rgba(255, 69, 0, 0.3);
}

.game-description h2 {
    color: var(--secondary-color);
    margin-bottom: 15px; /* 恢复原来的间距 */
    font-size: 1.5rem; /* 恢复原来的字体大小 */
}

.game-description p {
    color: var(--text-gray);
    font-size: 0.9rem; /* 恢复原来的字体大小 */
    line-height: 1.6; /* 恢复原来的行高 */
    text-align: justify;
}

.game-info h2 {
    color: var(--secondary-color);
    margin-bottom: 20px; /* 恢复原来的间距 */
    font-size: 1.5rem; /* 恢复原来的字体大小 */
}

.game-info h3 {
    color: var(--secondary-color);
    margin-bottom: 15px; /* 恢复原来的间距 */
    font-size: 1.2rem; /* 恢复原来的字体大小 */
}

/* 控制说明网格 */
.controls-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 恢复两列布局 */
    gap: 10px; /* 恢复原来的间距 */
    margin-bottom: 25px; /* 恢复原来的间距 */
}

.control-item {
    display: flex;
    align-items: center;
    gap: 10px; /* 恢复原来的间距 */
    padding: 8px; /* 恢复原来的内边距 */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px; /* 恢复原来的圆角 */
}

.control-item .key {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4px 8px; /* 恢复原来的内边距 */
    border-radius: 4px;
    font-size: 0.8rem; /* 恢复原来的字体大小 */
    font-weight: bold;
    min-width: 45px; /* 恢复原来的最小宽度 */
    text-align: center;
}

.control-item .desc {
    color: var(--text-gray);
    font-size: 0.9rem; /* 恢复原来的字体大小 */
}

/* 游戏信息面板内的特色功能列表 */
.features-list {
    margin-bottom: 20px; /* 减少底部间距 */
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px; /* 减少间距 */
    padding: 12px; /* 减少内边距 */
    margin-bottom: 12px; /* 减少底部间距 */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px; /* 稍微减小圆角 */
    border: 1px solid rgba(255, 69, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 69, 0, 0.4);
    transform: translateX(3px); /* 减少移动距离 */
}

.feature-item .feature-icon {
    font-size: 1.5rem; /* 减小图标大小 */
    flex-shrink: 0;
    width: 40px; /* 减少宽度 */
    text-align: center;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    color: var(--secondary-color);
    margin-bottom: 6px; /* 减少底部间距 */
    font-size: 1rem; /* 稍微减小字体 */
}

.feature-content p {
    color: var(--text-gray);
    font-size: 0.8rem; /* 减小字体 */
    line-height: 1.3; /* 减小行高 */
    margin: 0;
}

/* 游戏技巧 */
.game-tips {
    margin-bottom: 20px;
}

.game-tips ul {
    list-style: none;
    padding: 0;
}

.game-tips li {
    color: var(--text-gray);
    font-size: 0.9rem; /* 恢复原来的字体大小 */
    margin-bottom: 8px; /* 恢复原来的间距 */
    padding-left: 15px; /* 恢复原来的左内边距 */
    position: relative;
}

.game-tips li:before {
    content: "🔥";
    position: absolute;
    left: 0;
    top: 0;
}

/* 游戏操作按钮 */
.game-actions {
    text-align: center;
}

.game-actions .btn {
    padding: 12px 30px; /* 恢复原来的内边距 */
    font-size: 1.1rem; /* 恢复原来的字体大小 */
}

/* 按钮样式 */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--explosion-gradient);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
}

/* 其他区域的section-title样式 */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

/* 页脚样式 */
.main-footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 60px 0 20px 0;
    border-top: 3px solid #ff4500;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ff4500;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff4500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 69, 0, 0.3);
    padding-top: 20px;
    text-align: center;
    color: #aaa;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* 推荐游戏侧边栏 */
.recommended-games-sidebar {
    flex: 0 0 auto;
    width: 250px; /* 设置侧边栏宽度 */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(255, 69, 0, 0.3);
    backdrop-filter: blur(10px);
    max-height: 542px; /* 限制最大高度与游戏框一致 */
    overflow-y: auto; /* 内容过多时滚动 */
}

.recommended-games-sidebar h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: center;
}

.recommended-games-sidebar .game-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recommended-games-sidebar .game-thumbnail {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.recommended-games-sidebar .game-thumbnail:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 3px 15px rgba(255, 69, 0, 0.3);
}

.recommended-games-sidebar .game-thumb-bg {
    width: 100%;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* 添加备用的渐变背景 */
    background-color: #333;
}

/* 为不同游戏添加特定的背景图片和备用渐变色 */
.game-thumbnail:nth-child(1) .game-thumb-bg {
    background-image: url('../images/fury-wars.webp'), linear-gradient(135deg, #ff4500, #ff6b35);
}

.game-thumbnail:nth-child(2) .game-thumb-bg {
    background-image: url('../images/fortzone-battle-royale.webp'), linear-gradient(135deg, #4a90e2, #7b68ee);
}

.game-thumbnail:nth-child(3) .game-thumb-bg {
    background-image: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.game-thumbnail:nth-child(4) .game-thumb-bg {
    background-image: url('../images/stick-war-ii-order-empire.jpg'), linear-gradient(135deg, #4ecdc4, #44a08d);
}

.game-thumbnail:nth-child(5) .game-thumb-bg {
    background-image: url('../images/dude-theft-wars.webp'), linear-gradient(135deg, #feca57, #ff9ff3);
}

.game-thumbnail:nth-child(6) .game-thumb-bg {
    background-image: linear-gradient(135deg, #a8e6cf, #7fcdcd);
}

.recommended-games-sidebar .game-thumb-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 10px;
    color: white;
    text-align: center;
}

.recommended-games-sidebar .game-thumb-overlay h4 {
    margin: 0 0 3px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.recommended-games-sidebar .game-genre {
    font-size: 0.75rem;
    color: var(--secondary-color);
    background: rgba(255, 215, 0, 0.2);
    padding: 2px 6px;
    border-radius: 8px;
    display: inline-block;
}

/* 移除原来的推荐游戏样式，因为现在在侧边栏 */
.recommended-games {
    display: none; /* 隐藏原来的推荐游戏部分 */
}

/* 核心控制样式 */
.essential-controls {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(255, 69, 0, 0.3);
}

.essential-controls h3 {
    color: #ff4500;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.controls-grid.essential {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    justify-items: center;
}

.control-item.highlight {
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    border: 2px solid #ffd700;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
}

.control-item.highlight .key {
    background: rgba(255, 255, 255, 0.9);
    color: #ff4500;
    font-weight: bold;
}

.control-item.highlight .desc {
    color: white;
    font-weight: bold;
}

/* 完整控制指南样式 */
.full-controls {
    margin-top: 30px;
}

.full-controls h3 {
    color: #ffd700;
    margin-bottom: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .game-title-area {
        margin-bottom: 30px;
        padding: 20px 15px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .title-decoration {
        gap: 15px;
    }
    
    .title-icon {
        font-size: 2rem;
    }
    
    .game-subtitle {
        font-size: 1.1rem;
        margin: 10px 0 20px 0;
    }
    
    .title-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .game-wrapper {
        flex-direction: column; /* 移动端改为垂直排列 */
        align-items: center;
        gap: 20px;
    }
    
    .recommended-games-sidebar {
        width: 100%; /* 移动端占满宽度 */
        max-width: 100%;
        max-height: none; /* 移动端不限制高度 */
        order: 2; /* 让侧边栏在游戏下方 */
    }
    
    .main-game-area {
        order: 1; /* 让游戏区域在上方 */
        width: 100%; /* 移动端占满宽度 */
    }
    
    .game-container {
        width: 100%; /* 移动端占满宽度 */
    }
    
    .game-iframe-wrapper {
        max-width: 100%;
        height: 350px;
    }
    
    .recommended-games-sidebar .game-thumbnails {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .recommended-games-sidebar .game-thumbnail {
        flex: 1;
        min-width: 150px;
    }
    
    .recommended-games-sidebar .game-thumb-bg {
        height: 60px;
    }
    
    .controls-grid {
        grid-template-columns: 1fr; /* 移动端单列显示 */
    }

    .nav-menu {
        display: none; /* 简化移动端导航 */
    }
    
    .nav-brand h1 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .weapons-grid,
    .characters-grid {
        grid-template-columns: 1fr;
    }
    
    .review-scores {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid,
    .tips-grid,
    .composition-grid {
        grid-template-columns: 1fr;
    }
    
    .advanced-tactics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .game-title-area {
        margin-bottom: 20px;
        padding: 15px 10px;
    }
    
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .title-decoration {
        gap: 10px;
    }
    
    .title-icon {
        font-size: 1.5rem;
    }
    
    .game-subtitle {
        font-size: 1rem;
        margin: 8px 0 15px 0;
    }
    
    .stat-item {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .game-wrapper {
        gap: 15px;
    }
    
    .game-info {
        padding: 15px;
        width: 100%;
    }
    
    .game-container {
        width: 100%;
    }
    
    .game-iframe-wrapper {
        height: 250px;
    }
    
    .recommended-games-sidebar .game-thumbnails {
        flex-direction: column;
    }
    
    .recommended-games-sidebar .game-thumbnail {
        min-width: auto;
    }
    
    .recommended-games-sidebar .game-thumb-bg {
        height: 50px;
    }
}

/* Videos Section Styles */
.videos-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 50%, #1a1a1a 100%);
}

.videos-content {
    margin-top: 40px;
}

.videos-intro {
    text-align: center;
    margin-bottom: 50px;
}

.videos-intro h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.videos-intro p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.video-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a2a3a 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.video-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-icon {
    font-size: 4rem;
    opacity: 0.3;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.video-info {
    padding: 25px;
}

.video-info h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: bold;
}

.video-description {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.video-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-channel,
.video-views {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.video-actions .btn {
    flex: 1;
    min-width: 120px;
    padding: 10px 15px;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.video-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-color);
}

.videos-tips {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.videos-tips h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
}

.videos-tips .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.videos-tips .tip-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.videos-tips .tip-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.videos-tips .tip-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.videos-tips .tip-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Video section responsive design */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-card {
        margin: 0 10px;
    }
    
    .video-thumbnail {
        height: 160px;
    }
    
    .video-icon {
        font-size: 3rem;
    }
    
    .play-button {
        font-size: 2.5rem;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-info h4 {
        font-size: 1.2rem;
    }
    
    .video-actions {
        flex-direction: column;
    }
    
    .video-actions .btn {
        flex: none;
        min-width: auto;
    }
    
    .videos-tips {
        margin: 0 10px;
        padding: 20px;
    }
    
    .videos-tips .tips-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .videos-intro h3 {
        font-size: 1.5rem;
    }
    
    .videos-intro p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .video-thumbnail {
        height: 140px;
    }
    
    .video-icon {
        font-size: 2.5rem;
    }
    
    .play-button {
        font-size: 2rem;
    }
    
    .video-info h4 {
        font-size: 1.1rem;
    }
    
    .video-description {
        font-size: 0.9rem;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 8px;
    }
    
    .videos-tips h3 {
        font-size: 1.4rem;
    }
}

/* 游戏截图区域样式 */
.screenshots-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D1B1B 25%, #1A1A1A 50%, #1B2D1B 75%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
}

.screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.screenshots-content {
    position: relative;
    z-index: 1;
}

.screenshots-intro {
    text-align: center;
    margin-bottom: 50px;
}

.screenshots-intro h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.screenshots-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.screenshot-item {
    background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 69, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(255, 69, 0, 0.2);
}

.screenshot-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.screenshot-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.screenshot-item:hover .screenshot-wrapper img {
    transform: scale(1.1);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.8), rgba(255, 215, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.screenshot-text {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.screenshot-info {
    padding: 25px;
}

.screenshot-info h4 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.screenshot-info p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.screenshots-tips {
    background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.screenshots-tips h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.screenshots-tips .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.screenshots-tips .tip-item {
    background: linear-gradient(135deg, #333333 0%, #2A2A2A 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

.screenshots-tips .tip-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshots-tips .tip-item:hover::before {
    opacity: 1;
}

.screenshots-tips .tip-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.screenshots-tips .tip-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* 截图放大模态框 */
.screenshot-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.screenshot-modal.active {
    opacity: 1;
    visibility: visible;
}

.screenshot-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: #1A1A1A;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.screenshot-modal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.screenshot-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.screenshot-modal-close:hover {
    background: rgba(255, 69, 0, 0.8);
    transform: rotate(90deg);
}

.screenshot-modal-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(45, 45, 45, 0.9));
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.screenshot-modal-info h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.screenshot-modal-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .screenshots-section {
        padding: 60px 0;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .screenshot-item {
        margin: 0 10px;
    }
    
    .screenshot-wrapper {
        height: 200px;
    }
    
    .screenshot-icon {
        font-size: 2.5rem;
    }
    
    .screenshot-text {
        font-size: 1rem;
    }
    
    .screenshot-info {
        padding: 20px;
    }
    
    .screenshot-info h4 {
        font-size: 1.2rem;
    }
    
    .screenshots-tips {
        padding: 25px;
        margin: 0 10px;
    }
    
    .screenshots-tips h3 {
        font-size: 1.6rem;
    }
    
    .screenshots-tips .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .screenshots-tips .tip-item {
        padding: 20px;
    }
    
    .screenshots-tips .tip-item h4 {
        font-size: 1.1rem;
    }
    
    .screenshot-modal-content {
        max-width: 95vw;
        max-height: 95vh;
        padding: 10px;
    }
    
    .screenshot-modal-close {
        font-size: 1.5rem;
    }
    
    .screenshot-modal-info {
        position: static;
        margin-top: 15px;
    }
} 

/* ===== Video Preview & Modal Styles ===== */

/* Enhanced Video Thumbnail with Preview Image */
.video-thumbnail {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .preview-image {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.play-button {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    background: rgba(255, 69, 0, 0.8);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card:hover .play-button {
    transform: scale(1.2);
    background: rgba(255, 140, 0, 0.9);
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.video-modal-content {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a2a3a 100%);
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 90%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 100%);
}

.video-modal-header h3 {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.5rem;
}

.video-modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255, 69, 0, 0.2);
    color: var(--primary-color);
}

.video-modal-body {
    padding: 0;
}

.video-player-container {
    width: 100%;
    height: 500px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-player-container iframe,
.video-player-container video {
    width: 100%;
    height: 100%;
    border: none;
}

.video-loading {
    color: var(--text-light);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-loading::before {
    content: "⏳";
    animation: videoSpin 1s linear infinite;
}

@keyframes videoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile Responsive Video Styles */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        max-height: 95%;
    }
    
    .video-modal-header {
        padding: 15px 20px;
    }
    
    .video-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .video-player-container {
        height: 300px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .video-duration {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-actions {
        flex-direction: column;
    }
    
    .video-actions .btn {
        min-width: auto;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .video-thumbnail {
        height: 180px;
    }
    
    .video-player-container {
        height: 250px;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-info h4 {
        font-size: 1.1rem;
    }
}

/* ===== Video Preview & Modal Styles (End) ===== */ 