/* 使用独特前缀避免冲突 */
.game-ad-container {
    max-width: 800px;
    width: 100%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 25px;
    transition: transform 0.3s ease;
}

.game-ad-container:hover {
    transform: translateY(-5px);
}

.game-ad-content {
    text-align: center;
}

.game-ad-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    /* 增加权重 */
    font-weight: 600 !important;
}

.game-ad-description {
    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.game-ad-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.game-ad-button {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.game-ad-purchase {
    background-color: #4a6ee0;
    color: white;
}

.game-ad-download {
    background-color: #34c759;
    color: white;
}

.game-ad-demo {
    background-color: #ff9500;
    color: white;
}

.game-ad-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .game-ad-container {
        padding: 20px;
    }
    
    .game-ad-title {
        font-size: 24px;
    }
    
    .game-ad-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .game-ad-button {
        width: 100%;
        max-width: 300px;
    }
}
