/* 广告状态为unfilled则隐藏 */
ins.adsbygoogle[data-ad-status="unfilled"] {
    display: none !important;
}

/* 基础样式 */
body {
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

/* 导航栏样式 */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* 游戏卡片样式 */
.game-card {
    background: #2d2d2d;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.game-thumbnail {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.game-title {
    font-size: 0.9rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 特色游戏区域 */
.featured-games {
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .game-thumbnail {
        height: 120px;
    }
}

.footer-links a {
    transition: opacity 0.3s;
}
.footer-links a:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* 添加在style.css文件中 */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

#shop-btn {
    transition: all 0.3s ease;
}

#shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}